base\NotSupportedException getName()

getName() public method public string getName ( )return string The user-friendly name of this exception

base\Behavior attach()

attach() public method Attaches the behavior object to the component. The default implementation will set the $owner property and attach event handlers as declared in events(). Make sure you call the parent implementation if you override this method. public void attach ( $owner )$owner yii\base\Component The component that this behavior is to be attached to.

mongodb\file\Collection delete()

delete() public method Deletes the file with given _id. public boolean delete ( $id )$id mixed _id of the file to find. return boolean Whether the operation was successful. throws yii\mongodb\Exception on failure.

base\Model offsetSet()

offsetSet() public method Sets the element at the specified offset. This method is required by the SPL interface ArrayAccess. It is implicitly called when you use something like $model[$offset] = $item;. public void offsetSet ( $offset, $item )$offset integer The offset to set element $item mixed The element value

grid\GridView $rowOptions

$rowOptions public property The HTML attributes for the table body rows. This can be either an array specifying the common HTML attributes for all body rows, or an anonymous function that returns an array of the HTML attributes. The anonymous function will be called once for every data model returned by $dataProvider. It should have the following signature: function ($model, $key, $index, $grid) $model: the current data model being rendered $key: the key value associated with the current

mongodb\Command getReadPreference()

getReadPreference() public method Returns read preference for this command. public \MongoDB\Driver\ReadPreference getReadPreference ( )return \MongoDB\Driver\ReadPreference Read preference.

di\Container resolveCallableDependencies()

resolveCallableDependencies() public method (available since version 2.0.7) Resolve dependencies for a function. This method can be used to implement similar functionality as provided by invoke() in other components. public array resolveCallableDependencies ( callable $callback, $params = [] )$callback callable Callable to be invoked. $params array The array of parameters for the function, can be either numeric or associative. return array The resolved dependencies. throws yii\base\

gii\CodeFile getType()

getType() public method public string getType ( )return string The code file extension (e.g. php, txt)

sphinx\Command createIndex()

createIndex() public method Creates a SQL command for creating a new index. public $this createIndex ( $name, $table, $columns, $unique = false )$name string The name of the index. The name will be properly quoted by the method. $table string The table that the new index will be created for. The table name will be properly quoted by the method. $columns string|array The column(s) that should be included in the index. If there are multiple columns, please separate them by commas. Th

widgets\ActiveForm validate()

validate() public static method Validates one or several models and returns an error message array indexed by the attribute IDs. This is a helper method that simplifies the way of writing AJAX validation code. For example, you may use the following code in a controller action to respond to an AJAX validation request: $model = new Post; $model->load(Yii::$app->request->post()); if (Yii::$app->request->isAjax) { Yii::$app->response->format = Response::FORMAT_JSON;