BaseYii $classMap

$classMap public static property Class map used by the Yii autoloading mechanism. The array keys are the class names (without leading backslashes), and the array values are the corresponding class file paths (or path aliases). This property mainly affects how autoload() works. See also autoload(). public static array $classMap = []

filters\AccessControl beforeAction()

beforeAction() public method This method is invoked right before an action is to be executed (after all possible filters.) You may override this method to do last-minute preparation for the action. public boolean beforeAction ( $action )$action yii\base\Action The action to be executed. return boolean Whether the action should continue to be executed.

bootstrap\Tabs $navType

$navType public property Specifies the Bootstrap tab styling. public string $navType = 'nav-tabs'

mongodb\gii\model\Generator stickyAttributes()

stickyAttributes() public method Returns the list of sticky attributes. A sticky attribute will remember its value and will initialize the attribute with this value when the generator is restarted. public array stickyAttributes ( )return array List of sticky attributes

base\Object hasMethod()

hasMethod() public method Returns a value indicating whether a method is defined. The default implementation is a call to php function method_exists(). You may override this method when you implemented the php magic method __call(). public boolean hasMethod ( $name )$name string The method name return boolean Whether the method is defined

db\Schema loadTableSchema()

loadTableSchema() protected abstract method Loads the metadata for the specified table. protected abstract null|yii\db\TableSchema loadTableSchema ( $name )$name string Table name return null|yii\db\TableSchema DBMS-dependent table metadata, null if the table does not exist.

db\sqlite\QueryBuilder dropPrimaryKey()

dropPrimaryKey() public method Builds a SQL statement for removing a primary key constraint to an existing table. public string dropPrimaryKey ( $name, $table )$name string The name of the primary key constraint to be removed. $table string The table that the primary key constraint will be removed from. return string The SQL statement for removing a primary key constraint from an existing table. throws yii\base\NotSupportedException this is not supported by SQLite

db\ActiveRelationTrait $inverseOf

$inverseOf public property The name of the relation that is the inverse of this relation. For example, an order has a customer, which means the inverse of the "customer" relation is the "orders", and the inverse of the "orders" relation is the "customer". If this property is set, the primary record(s) will be referenced through the specified relation. For example, $customer->orders[0]->customer and $customer will be the same object, and accessing the customer of an order will not trig

sphinx\ColumnSchema $name

$name public property Name of this column (without quotes). public string $name = null

caching\ZendDataCache deleteValue()

deleteValue() protected method Deletes a value with the specified key from cache This is the implementation of the method declared in the parent class. protected boolean deleteValue ( $key )$key string The key of the value to be deleted return boolean If no error happens during deletion