db\BaseActiveRecord findAll()

findAll() public static method Returns a list of active record models that match the specified primary key value(s) or a set of column values. The method accepts: a scalar value (integer or string): query by a single primary key value and return an array containing the corresponding record (or an empty array if not found). a non-associative array: query by a list of primary key values and return the corresponding records (or an empty array if none was found). Note that an empty condition wi

web\View getAssetManager()

getAssetManager() public method Registers the asset manager being used by this view object. public yii\web\AssetManager getAssetManager ( )return yii\web\AssetManager The asset manager. Defaults to the "assetManager" application component.

bootstrap\Tabs hasActiveTab()

hasActiveTab() protected method protected boolean hasActiveTab ( )return boolean If there's active tab defined

db\BaseActiveRecord $isNewRecord

$isNewRecord public property Whether the record is new and should be inserted when calling save(). public boolean getIsNewRecord ( )public void setIsNewRecord ( $value )

base\Theme getBasePath()

getBasePath() public method See also $pathMap. public string getBasePath ( )return string The root path of this theme. All resources of this theme are located under this directory.

data\Pagination $forcePageParam

$forcePageParam public property Whether to always have the page parameter in the URL created by createUrl(). If false and $page is 0, the page parameter will not be put in the URL. public boolean $forcePageParam = true

db\Command resetSequence()

resetSequence() public method Creates a SQL command for resetting the sequence value of a table's primary key. The sequence will be reset such that the primary key of the next new row inserted will have the specified value or 1. public $this resetSequence ( $table, $value = null )$table string The name of the table whose primary key sequence will be reset $value mixed The value for the primary key of the next new row inserted. If this is not set, the next new row's primary key will hav

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

helpers\BaseHtml tag()

tag() public static method Generates a complete HTML tag. See also: beginTag() endTag() public static string tag ( $name, $content = '', $options = [] )$name string|boolean|null The tag name. If $name is null or false, the corresponding content will be rendered without any tag. $content string The content to be enclosed between the start and end tags. It will not be HTML-encoded. If this is coming from end users, you should consider encode() it to prevent XSS attacks. $options array

sphinx\ActiveRecord equals()

equals() public method Returns a value indicating whether the given active record is the same as the current one. The comparison is made by comparing the index names and the primary key values of the two active records. If one of the records is new they are also considered not equal. public boolean equals ( $record )$record yii\sphinx\ActiveRecord Record to compare to return boolean Whether the two active records refer to the same row in the same index.