Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
098567ce
Commit
098567ce
authored
Feb 20, 2014
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed phpdoc errors and updated properties
parent
72145098
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
39 additions
and
7 deletions
+39
-7
build
build/build
+7
-0
Mail.php
extensions/debug/models/search/Mail.php
+3
-0
ConfigPanel.php
extensions/debug/panels/ConfigPanel.php
+2
-0
DbPanel.php
extensions/debug/panels/DbPanel.php
+2
-0
MailPanel.php
extensions/debug/panels/MailPanel.php
+5
-0
DebugAction.php
extensions/elasticsearch/DebugAction.php
+11
-5
Generator.php
extensions/gii/generators/crud/Generator.php
+3
-0
ViewRenderer.php
extensions/twig/ViewRenderer.php
+2
-0
QueryBuilder.php
framework/db/oci/QueryBuilder.php
+2
-0
Controller.php
framework/web/Controller.php
+0
-2
ActiveField.php
framework/widgets/ActiveField.php
+2
-0
No files found.
build/build
View file @
098567ce
...
...
@@ -14,6 +14,13 @@ defined('STDOUT') or define('STDOUT', fopen('php://stdout', 'w'));
define
(
'YII_DEBUG'
,
true
);
$vendor
=
__DIR__
.
'/../vendor/autoload.php'
;
if
(
file_exists
(
$vendor
))
{
require
(
$vendor
);
}
else
{
echo
"composer autoloader could not be found.
\n
You should run `composer install` in repo root directory.
\n
"
;
exit
(
1
);
}
require
(
__DIR__
.
'/../framework/Yii.php'
);
$application
=
new
yii\console\Application
([
...
...
extensions/debug/models/search/Mail.php
View file @
098567ce
...
...
@@ -7,6 +7,9 @@ use yii\debug\components\search\Filter;
/**
* Mail represents the model behind the search form about current send emails.
*
* @author Mark Jebri <mark.github@yandex.ru>
* @since 2.0
*/
class
Mail
extends
Base
{
...
...
extensions/debug/panels/ConfigPanel.php
View file @
098567ce
...
...
@@ -13,6 +13,8 @@ use yii\debug\Panel;
/**
* Debugger panel that collects and displays application configuration and environment.
*
* @property array $extensions This property is read-only.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
...
...
extensions/debug/panels/DbPanel.php
View file @
098567ce
...
...
@@ -15,6 +15,8 @@ use yii\debug\models\search\Db;
/**
* Debugger panel that collects and displays database queries performed.
*
* @property array $profileLogs This property is read-only.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
...
...
extensions/debug/panels/MailPanel.php
View file @
098567ce
...
...
@@ -11,6 +11,11 @@ use yii\helpers\FileHelper;
/**
* Debugger panel that collects and displays the generated emails.
*
* @property array $messages Messages. This property is read-only.
*
* @author Mark Jebri <mark.github@yandex.ru>
* @since 2.0
*/
class
MailPanel
extends
Panel
{
...
...
extensions/elasticsearch/DebugAction.php
View file @
098567ce
<?php
/**
* @author Carsten Brandt <mail@cebe.cc>
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace
yii\elasticsearch
;
use
yii\base\Action
;
use
yii\base\NotSupportedException
;
use
yii\debug\Panel
;
use
yii\helpers\ArrayHelper
;
use
yii\web\HttpException
;
use
Yii
;
use
yii\web\Response
;
use
Yii
;
/**
* Debug Action is used by [[DebugPanel]] to perform elasticsearch queries using ajax.
*
* @author Carsten Brandt <mail@cebe.cc>
* @since 2.0
*/
class
DebugAction
extends
Action
{
/**
...
...
@@ -73,4 +80,4 @@ class DebugAction extends Action
'result'
=>
$result
,
];
}
}
\ No newline at end of file
}
extensions/gii/generators/crud/Generator.php
View file @
098567ce
...
...
@@ -17,8 +17,11 @@ use yii\web\Controller;
/**
*
* @property array $columnNames Model column names. This property is read-only.
* @property string $controllerID The controller ID (without the module ID prefix). This property is
* read-only.
* @property array $searchAttributes Searchable attributes. This property is read-only.
* @property boolean|\yii\db\TableSchema $tableSchema This property is read-only.
* @property string $viewPath The action view file path. This property is read-only.
*
* @author Qiang Xue <qiang.xue@gmail.com>
...
...
extensions/twig/ViewRenderer.php
View file @
098567ce
...
...
@@ -17,6 +17,8 @@ use yii\helpers\Html;
/**
* TwigViewRenderer allows you to use Twig templates in views.
*
* @property array $lexerOptions @see self::$lexerOptions. This property is write-only.
*
* @author Alexander Makarov <sam@rmcreative.ru>
* @since 2.0
*/
...
...
framework/db/oci/QueryBuilder.php
View file @
098567ce
...
...
@@ -12,6 +12,8 @@ use yii\base\InvalidParamException;
/**
* QueryBuilder is the query builder for Oracle databases.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class
QueryBuilder
extends
\yii\db\QueryBuilder
{
...
...
framework/web/Controller.php
View file @
098567ce
...
...
@@ -16,8 +16,6 @@ use yii\helpers\Html;
*
* @property string $canonicalUrl The canonical URL of the currently requested page. This property is
* read-only.
* @property View $view The view object that can be used to render views or view files. This property is
* read-only.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
...
...
framework/widgets/ActiveField.php
View file @
098567ce
...
...
@@ -14,6 +14,8 @@ use yii\base\Model;
use
yii\web\JsExpression
;
/**
* ActiveField represents a form input field within an [[ActiveForm]].
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment