db\ActiveQuery onCondition()

onCondition() public method Sets the ON condition for a relational query. The condition will be used in the ON part when yii\db\ActiveQuery::joinWith() is called. Otherwise, the condition will be used in the WHERE part of a query. Use this method to specify additional conditions when declaring a relation in the yii\db\ActiveRecord class: public function getActiveUsers() { return $this->hasMany(User::className(), ['id' => 'user_id']) ->onCondition(['active' =>

authclient\signature\PlainText generateSignature()

generateSignature() public method Generates OAuth request signature. public string generateSignature ( $baseString, $key )$baseString string Signature base string. $key string Signature key. return string Signature string.

db\ColumnSchemaBuilder comment()

comment() public method (available since version 2.0.8) Specifies the comment for column. public $this comment ( $comment )$comment string The comment

caching\ChainedDependency generateDependencyData()

generateDependencyData() protected method Generates the data needed to determine if dependency has been changed. This method does nothing in this class. protected mixed generateDependencyData ( $cache )$cache yii\caching\Cache The cache component that is currently evaluating this dependency return mixed The data needed to determine if dependency has been changed.

data\DataProviderInterface prepare()

prepare() public abstract method Prepares the data models and keys. This method will prepare the data models and keys that can be retrieved via getModels() and getKeys(). This method will be implicitly called by getModels() and getKeys() if it has not been called before. public abstract void prepare ( $forcePrepare = false )$forcePrepare boolean Whether to force data preparation even if it has been done before.

mongodb\file\Download $resource

$resource public read-only property File stream resource. public resource getResource ( )

debug\models\search\Timeline search()

search() public method Returns data provider with filled models. Filter applied if needed. public yii\debug\components\TimelineDataProvider search ( $params, $panel )$params array $params an array of parameter values indexed by parameter names $panel \yii\debug\models\search\TimeLinePanel

console\controllers\MessageController $except

$except public property List of patterns that specify which files/directories should NOT be processed. If empty or not set, all files/directories will be processed. See helpers/FileHelper::findFiles() description for pattern matching rules. If a file/directory matches both a pattern in "only" and "except", it will NOT be processed. public array $except = ['.svn', '.git', '.gitignore', '.gitkeep', '.hgignore', '.hgkeep', '/messages', '/BaseYii.php']

redis\Connection $socketClientFlags

$socketClientFlags public property (available since version 2.0.5) Bitmask field which may be set to any combination of connection flags passed to stream_socket_client(). Currently the select of connection flags is limited to STREAM_CLIENT_CONNECT (default), STREAM_CLIENT_ASYNC_CONNECT and STREAM_CLIENT_PERSISTENT. See also http://php.net/manual/en/function.stream-socket-client.php. public integer $socketClientFlags = STREAM_CLIENT_CONNECT

widgets\ActiveForm run()

run() public method Runs the widget. This registers the necessary JavaScript code and renders the form close tag. public void run ( )throws yii\base\InvalidCallException if beginField() and endField() calls are not matching.