grid\GridView $options

$options public property The HTML attributes for the container tag of the grid view. The "tag" element specifies the tag name of the container element and defaults to "div". See also yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. public array $options = ['class' => 'grid-view']

widgets\ActiveForm $validationDelay

$validationDelay public property Number of milliseconds that the validation should be delayed when the user types in the field and $validateOnType is set true. If yii\widgets\ActiveField::$validationDelay is set, its value will take precedence for that input field. public integer $validationDelay = 500

db\mssql\PDO lastInsertId()

lastInsertId() public method Returns value of the last inserted ID. public integer lastInsertId ( $sequence = null )$sequence string|null The sequence name. Defaults to null. return integer Last inserted ID value.

console\controllers\MessageController actionConfigTemplate()

actionConfigTemplate() public method Creates a configuration file template for the "extract" command. The created configuration file contains detailed instructions on how to customize it to fit for your needs. After customization, you may use this configuration file with the "extract" command. public integer actionConfigTemplate ( $filePath )$filePath string Output file name or alias. return integer CLI exit code throws yii\console\Exception on failure.

widgets\Menu $route

$route public property The route used to determine if a menu item is active or not. If not set, it will use the route of the current request. See also: $params isItemActive() public string $route = null

gii\Generator formView()

formView() public method Returns the view file for the input form of the generator. The default implementation will return the "form.php" file under the directory that contains the generator class file. public string formView ( )return string The view file for the input form of the generator.

mongodb\file\Cursor setTypeMap()

setTypeMap() public method Sets a type map to use for BSON unserialization. public void setTypeMap ( $typemap )$typemap array Type map.

caching\FileCache exists()

exists() public method Checks whether a specified key exists in the cache. This can be faster than getting the value from the cache if the data is big. Note that this method does not check whether the dependency associated with the cached data, if there is any, has changed. So a call to get() may return false while exists returns true. public boolean exists ( $key )$key mixed A key identifying the cached value. This can be a simple string or a complex data structure consisting of factors

mongodb\console\controllers\MigrateController removeMigrationHistory()

removeMigrationHistory() protected method Removes existing migration from the history. protected void removeMigrationHistory ( $version )$version string Migration version name.

mongodb\file\Collection insertUploads()

insertUploads() public method Creates new file in GridFS collection from uploaded file. Additional attributes can be added file document using $metadata. public mixed insertUploads ( $name, $metadata = [], $options = [] )$name string Name of the uploaded file to store. This should correspond to the file field's name attribute in the HTML form. $metadata array Other metadata fields to include in the file document. $options array List of options in format: optionName => optionValue