base\Module getInstance()

getInstance() public static method Returns the currently requested instance of this module class. If the module class is not currently requested, null will be returned. This method is provided so that you access the module instance from anywhere within the module. public static static|null getInstance ( )return static|null The currently requested instance of this module class, or null if the module class is not requested.

filters\auth\CompositeAuth $authMethods

$authMethods public property The supported authentication methods. This property should take a list of supported authentication methods, each represented by an authentication class or configuration. If this property is empty, no authentication will be performed. Note that an auth method class must implement the yii\filters\auth\AuthInterface interface. public array $authMethods = []

base\Module __construct()

__construct() public method Constructor. public void __construct ( $id, $parent = null, $config = [] )$id string The ID of this module. $parent yii\base\Module The parent module (if any). $config array Name-value pairs that will be used to initialize the object properties.

helpers\BaseInflector $transliteration

$transliteration public static property Fallback map for transliteration used by transliterate() when intl isn't available. public static array $transliteration = ['À' => 'A', 'Á' => 'A', 'Â' => 'A', 'Ã' => 'A', 'Ä' => 'A', 'Å' => 'A', 'Æ' => 'AE', 'Ç' => 'C', 'È' => 'E', 'É' => 'E', 'Ê' => 'E', 'Ë' => 'E', 'Ì' => 'I', 'Í' => 'I', 'Î' => 'I', 'Ï' => 'I', 'Ð' => 'D', 'Ñ' => 'N', 'Ò' => 'O', 'Ó' => 'O', 'Ô' => 'O', 'Õ' => 'O',

faker\FixtureController actionGenerate()

actionGenerate() public method Generates fixtures and fill them with Faker data. For example, //generate fixtures in russian language yii fixture/generate user --count=5 --language=ru_RU //generate several fixtures yii fixture/generate user profile team public void actionGenerate ( )throws yii\base\InvalidParamException throws yii\console\Exception

db\QueryBuilder buildSimpleCondition()

buildSimpleCondition() public method Creates an SQL expressions like "column" operator value. public string buildSimpleCondition ( $operator, $operands, &$params )$operator string The operator to use. Anything could be used e.g. >, <=, etc. $operands array Contains two column names. $params array The binding parameters to be populated return string The generated SQL expression throws yii\base\InvalidParamException if wrong number of operands have been given.

base\Object hasProperty()

hasProperty() public method Returns a value indicating whether a property is defined. A property is defined if: the class has a getter or setter method associated with the specified name (in this case, property name is case-insensitive); the class has a member variable with the specified name (when $checkVars is true); See also: canGetProperty() canSetProperty() public boolean hasProperty ( $name, $checkVars = true )$name string The property name $checkVars boolean Whether to treat mem

base\View renderDynamic()

renderDynamic() public method Renders dynamic content returned by the given PHP statements. This method is mainly used together with content caching (fragment caching and page caching) when some portions of the content (called dynamic content) should not be cached. The dynamic content must be returned by some PHP statements. public string renderDynamic ( $statements )$statements string The PHP statements for generating the dynamic content. return string The placeholder of the dynamic c

db\Migration alterColumn()

alterColumn() public method Builds and executes a SQL statement for changing the definition of a column. public void alterColumn ( $table, $column, $type )$table string The table whose column is to be changed. The table name will be properly quoted by the method. $column string The name of the column to be changed. The name will be properly quoted by the method. $type string The new column type. The yii\db\QueryBuilder::getColumnType() method will be invoked to convert abstract colum

bootstrap\Carousel renderItems()

renderItems() public method Renders carousel items as specified on $items. public string renderItems ( )return string The rendering result