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}"

elasticsearch\ActiveRecord find()

find() public static method Creates an \yii\elasticsearch\ActiveQueryInterface instance for query purpose. The returned \yii\elasticsearch\ActiveQueryInterface instance can be further customized by calling methods defined in \yii\elasticsearch\ActiveQueryInterface before one() or all() is called to return populated ActiveRecord instances. For example, // find the customer whose ID is 1 $customer = Customer::find()->where(['id' => 1])->one(); // find all active customers and order

mongodb\Connection setDefaultDatabaseName()

setDefaultDatabaseName() public method Sets default database name. public void setDefaultDatabaseName ( $name )$name string Default database name.

captcha\CaptchaValidator init()

init() public method Initializes the object. This method is invoked at the end of the constructor after the object is initialized with the given configuration. public void init ( )

mongodb\Query addOptions()

addOptions() public method Adds additional cursor options. See also options(). public $this addOptions ( $options )$options array Cursor options in format: optionName => optionValue return $this The query object itself

web\Session getTimeout()

getTimeout() public method public integer getTimeout ( )return integer The number of seconds after which data will be seen as 'garbage' and cleaned up. The default value is 1440 seconds (or the value of "session.gc_maxlifetime" set in php.ini).

authclient\OpenId getReturnUrl()

getReturnUrl() public method public string getReturnUrl ( )return string Authentication return URL.

mongodb\Database getCollection()

getCollection() public method Returns the Mongo collection with the given name. public yii\mongodb\Collection getCollection ( $name, $refresh = false )$name string Collection name $refresh boolean Whether to reload the collection instance even if it is found in the cache. return yii\mongodb\Collection Mongo collection instance.

web\Request $queryString

$queryString public read-only property Part of the request URL that is after the question mark public string getQueryString ( )

elasticsearch\ActiveRecord mget()

mget() public static method Gets a list of records by its primary keys. public static array mget ( array $primaryKeys, $options = [] )$primaryKeys array An array of primaryKey values $options array Options given in this parameter are passed to elasticsearch as request URI parameters. Please refer to the elasticsearch documentation for more details on these options. return array The record instances, or empty array if nothing was found