base\Controller $defaultAction

$defaultAction public property The ID of the action that is used when the action ID is not specified in the request. Defaults to 'index'. public string $defaultAction = 'index'

debug\models\search\Timeline attributeLabels()

attributeLabels() public method Returns the attribute labels. Attribute labels are mainly used for display purpose. For example, given an attribute firstName, we can declare a label First Name which is more user-friendly and can be displayed to end users. By default an attribute label is generated using generateAttributeLabel(). This method allows you to explicitly specify attribute labels. Note, in order to inherit labels defined in the parent class, a child class needs to merge the parent

bootstrap\Nav isItemActive()

isItemActive() protected method Checks whether a menu item is active. This is done by checking if $route and $params match that specified in the url option of the menu item. When the url option of a menu item is specified in terms of an array, its first element is treated as the route for the item and the rest of the elements are the associated parameters. Only when its route and parameters match $route and $params, respectively, will a menu item be considered active. protected boolean is

web\HeaderCollection getCount()

getCount() public method Returns the number of headers in the collection. public integer getCount ( )return integer The number of headers in the collection.

web\Request $enableCsrfValidation

$enableCsrfValidation public property Whether to enable CSRF (Cross-Site Request Forgery) validation. Defaults to true. When CSRF validation is enabled, forms submitted to an Yii Web application must be originated from the same application. If not, a 400 HTTP exception will be raised. Note, this feature requires that the user client accepts cookie. Also, to use this feature, forms submitted via POST method must contain a hidden input whose name is specified by $csrfParam. You may use yii\he

bootstrap\Dropdown init()

init() public method Initializes the widget. If you override this method, make sure you call the parent implementation first. public void init ( )

gii\generators\crud\Generator $indexWidgetType

$indexWidgetType public property public $indexWidgetType = 'grid'

helpers\ReplaceArrayValue $value

$value public property Value used as replacement. public mixed $value = null

db\QueryTrait andFilterWhere()

andFilterWhere() public method Adds an additional WHERE condition to the existing one but ignores empty operands. The new condition and the existing one will be joined using the 'AND' operator. This method is similar to andWhere(). The main difference is that this method will remove empty query operands. As a result, this method is best suited for building query conditions based on filter values entered by users. See also: filterWhere() orFilterWhere() public $this andFilterWhere ( array

mongodb\Query max()

max() public method Returns the maximum of the specified column values. public integer max ( $q, $db = null )$q string The column name. Make sure you properly quote column names in the expression. $db yii\mongodb\Connection The Mongo connection used to execute the query. If this parameter is not given, the mongodb application component will be used. return integer The maximum of the specified column values.