data\BaseDataProvider $sort

$sort public property The sorting object. If this is false, it means the sorting is disabled. public yii\data\Sort|boolean getSort ( )public void setSort ( $value )

mongodb\Cache getValue()

getValue() protected method Retrieves a value from cache with a specified key. This method should be implemented by child classes to retrieve the data from specific cache storage. protected string|boolean getValue ( $key )$key string A unique key identifying the cached value return string|boolean The value stored in cache, false if the value is not in the cache or expired.

db\BaseActiveRecord $isNewRecord

$isNewRecord public property Whether the record is new and should be inserted when calling save(). public boolean getIsNewRecord ( )public void setIsNewRecord ( $value )

widgets\ActiveField $template

$template public property The template that is used to arrange the label, the input field, the error message and the hint text. The following tokens will be replaced when render() is called: {label}, {input}, {error} and {hint}. public string $template = "{label}\n{input}\n{hint}\n{error}"

db\Transaction $isolationLevel

$isolationLevel public write-only property The transaction isolation level to use for this transaction. This can be one of READ_UNCOMMITTED, READ_COMMITTED, REPEATABLE_READ and SERIALIZABLE but also a string containing DBMS specific syntax to be used after SET TRANSACTION ISOLATION LEVEL. public void setIsolationLevel ( $level )

debug\models\search\Log $level

$level public property Ip attribute input search value public string $level = null

BaseYii beginProfile()

beginProfile() public static method Marks the beginning of a code block for profiling. This has to be matched with a call to endProfile() with the same category name. The begin- and end- calls must also be properly nested. For example, \Yii::beginProfile('block1'); // some code to be profiled \Yii::beginProfile('block2'); // some other code to be profiled \Yii::endProfile('block2'); \Yii::endProfile('block1'); See also endProfile(). public static void beginProfile ( $token, $

elasticsearch\Query from()

from() public method Sets the index and type to retrieve documents from. See also http://www.elastic.co/guide/en/elasticsearch/reference/current/search-search.html#search-multi-index-type. public $this from ( $index, $type = null )$index string|array The index to retrieve data from. This can be a string representing a single index or a an array of multiple indexes. If this is null it means that all indexes are being queried. $type string|array The type to retrieve data from. This c

base\Model offsetGet()

offsetGet() public method Returns the element at the specified offset. This method is required by the SPL interface ArrayAccess. It is implicitly called when you use something like $value = $model[$offset];. public mixed offsetGet ( $offset )$offset mixed The offset to retrieve element. return mixed The element at the offset, null if no element is found at the offset

db\DataReader getIsClosed()

getIsClosed() public method Whether the reader is closed or not. public boolean getIsClosed ( )return boolean Whether the reader is closed or not.