sphinx\Query createCommand()

createCommand() public method Creates a Sphinx command that can be used to execute this query. public yii\sphinx\Command createCommand ( $db = null )$db yii\sphinx\Connection The Sphinx connection used to generate the SQL statement. If this parameter is not given, the sphinx application component will be used. return yii\sphinx\Command The created Sphinx command instance.

authclient\OpenId getTrustRoot()

getTrustRoot() public method public string getTrustRoot ( )return string Client trust root (realm).

gii\generators\crud\Generator getTableSchema()

getTableSchema() public method Returns table schema for current model class or false if it is not an active record public boolean|yii\db\TableSchema getTableSchema ( )

caching\MemCache setValues()

setValues() protected method Stores multiple key-value pairs in cache. protected array setValues ( $data, $duration )$data array Array where key corresponds to cache key while value is the value stored $duration integer The number of seconds in which the cached values will expire. 0 means never expire. return array Array of failed keys. Always empty in case of using memcached.

elasticsearch\ActiveRecord getPrimaryKey()

getPrimaryKey() public method Returns the primary key value(s). public mixed getPrimaryKey ( $asArray = false )$asArray boolean Whether to return the primary key value as an array. If true, the return value will be an array with column names as keys and column values as values. Note that for composite primary keys, an array will always be returned regardless of this parameter value. return mixed The primary key value. An array (column name => column value) is returned if the primary

mongodb\console\controllers\MigrateController createMigration()

createMigration() protected method Creates a new migration instance. protected yii\mongodb\Migration createMigration ( $class )$class string The migration class name return yii\mongodb\Migration The migration instance

db\pgsql\Schema findViewNames()

findViewNames() protected method (available since version 2.0.9) Returns all views names in the database. protected array findViewNames ( $schema = '' )$schema string The schema of the views. Defaults to empty string, meaning the current or default schema. return array All views names in the database. The names have NO schema name prefix.

base\Component __call()

__call() public method Calls the named method which is not a class method. This method will check if any attached behavior has the named method and will execute it if available. Do not call this method directly as it is a PHP magic method that will be implicitly called when an unknown method is being invoked. public mixed __call ( $name, $params )$name string The method name $params array Method parameters return mixed The method return value throws yii\base\UnknownMethodException

web\Request getIsAjax()

getIsAjax() public method Returns whether this is an AJAX (XMLHttpRequest) request. Note that jQuery doesn't set the header in case of cross domain requests: https://stackoverflow.com/questions/8163703/cross-domain-ajax-doesnt-send-x-requested-with-header public boolean getIsAjax ( )return boolean Whether this is an AJAX (XMLHttpRequest) request.

redis\Connection $hostname

$hostname public property The hostname or ip address to use for connecting to the redis server. Defaults to 'localhost'. If $unixSocket is specified, hostname and port will be ignored. public string $hostname = 'localhost'