-
-
Notifications
You must be signed in to change notification settings - Fork 6.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
80 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -93,7 +93,7 @@ class BaseYii | |
*/ | ||
public static function getVersion() | ||
{ | ||
return '2.0.13-dev'; | ||
return '2.0.13'; | ||
} | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,6 +40,9 @@ | |
* ], | ||
* ]); | ||
* | ||
* @property string $listPrefix List prefix. This property is write-only. | ||
* @property int $screenWidth Screen width. This property is write-only. | ||
* | ||
* @author Daniel Gomez Pan <[email protected]> | ||
* @since 2.0.13 | ||
*/ | ||
|
@@ -102,6 +105,7 @@ class Table extends Widget | |
*/ | ||
private $_listPrefix = '• '; | ||
|
||
|
||
/** | ||
* Set table headers. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -110,11 +110,13 @@ | |
* | ||
* @see ActiveDataFilter | ||
* | ||
* @property mixed $filter filter value. | ||
* @property Model $searchModel model to be used for filter attributes validation. | ||
* @property array $searchAttributeTypes search attribute type map. | ||
* @property array $errorMessages list of error messages responding to invalid filter structure, | ||
* in format: `[errorKey => message]`. Please refer to [[setErrorMessages()]] for details. | ||
* @property array $errorMessages Error messages in format `[errorKey => message]`. Note that the type of this | ||
* property differs in getter and setter. See [[getErrorMessages()]] and [[setErrorMessages()]] for details. | ||
* @property mixed $filter Raw filter value. | ||
* @property array $searchAttributeTypes Search attribute type map. Note that the type of this property | ||
* differs in getter and setter. See [[getSearchAttributeTypes()]] and [[setSearchAttributeTypes()]] for details. | ||
* @property Model $searchModel Model instance. Note that the type of this property differs in getter and | ||
* setter. See [[getSearchModel()]] and [[setSearchModel()]] for details. | ||
* | ||
* @author Paul Klimov <[email protected]> | ||
* @since 2.0.13 | ||
|
@@ -160,8 +162,8 @@ class DataFilter extends Model | |
* ``` | ||
* | ||
* > Note: while specifying filter controls take actual data exchange format, which your API uses, in mind. | ||
* Make sure each specified control keyword is valid for the format. For example, in XML tag name can start | ||
* only with a letter character, thus controls like `>`, '=' or `$gt` will break the XML schema. | ||
* > Make sure each specified control keyword is valid for the format. For example, in XML tag name can start | ||
* > only with a letter character, thus controls like `>`, '=' or `$gt` will break the XML schema. | ||
*/ | ||
public $filterControls = [ | ||
'and' => 'AND', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,8 +66,6 @@ | |
* marks a relation as inverse of another relation and [[onCondition()]] which adds a condition that | ||
* is to be added to relational query join condition. | ||
* | ||
* @property string[] $tablesUsedInFrom Table names indexed by aliases. This property is read-only. | ||
* | ||
* @author Qiang Xue <[email protected]> | ||
* @author Carsten Brandt <[email protected]> | ||
* @since 2.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,7 +48,7 @@ | |
* For more details and usage information on Command, see the [guide article on Database Access Objects](guide:db-dao). | ||
* | ||
* @property string $rawSql The raw SQL with parameter values inserted into the corresponding placeholders in | ||
* [[sql]]. This property is read-only. | ||
* [[sql]]. | ||
* @property string $sql The SQL statement to be executed. | ||
* | ||
* @author Qiang Xue <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,6 +40,8 @@ | |
* | ||
* A more detailed usage guide on how to work with Query can be found in the [guide article on Query Builder](guide:db-query-builder). | ||
* | ||
* @property string[] $tablesUsedInFrom Table names indexed by aliases. This property is read-only. | ||
* | ||
* @author Qiang Xue <[email protected]> | ||
* @author Carsten Brandt <[email protected]> | ||
* @since 2.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,6 +67,7 @@ class Schema extends \yii\db\Schema | |
'enum' => self::TYPE_STRING, | ||
]; | ||
|
||
|
||
/** | ||
* @inheritDoc | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,7 @@ class AjaxFilter extends ActionFilter | |
*/ | ||
public $request; | ||
|
||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
|
Oops, something went wrong.