widgets\DetailView init()

init() public method Initializes the detail view. This method will initialize required property values. public void init ( )

db\cubrid\Schema createQueryBuilder()

createQueryBuilder() public method Creates a query builder for the CUBRID database. public yii\db\cubrid\QueryBuilder createQueryBuilder ( )return yii\db\cubrid\QueryBuilder Query builder instance

sphinx\IndexSchema getColumnNames()

getColumnNames() public method Returns the names of all columns in this table. public array getColumnNames ( )return array List of column names

db\oci\Schema loadTableSchema()

loadTableSchema() public method Loads the metadata for the specified table. public 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.

base\Controller setView()

setView() public method Sets the view object to be used by this controller. public void setView ( $view )$view yii\base\View|yii\web\View The view object that can be used to render views or view files.

web\Application getErrorHandler()

getErrorHandler() public method Returns the error handler component. public yii\web\ErrorHandler getErrorHandler ( )return yii\web\ErrorHandler The error handler application component.

db\BaseActiveRecord update()

update() public method Saves the changes to this active record into the associated database table. This method performs the following steps in order: call beforeValidate() when $runValidation is true. If beforeValidate() returns false, the rest of the steps will be skipped; call afterValidate() when $runValidation is true. If validation failed, the rest of the steps will be skipped; call beforeSave(). If beforeSave() returns false, the rest of the steps will be skipped; save the record into

sphinx\Query match()

match() public method Sets the fulltext query text. This text will be composed into MATCH operator inside the WHERE clause. Note: this value will be processed by yii\sphinx\Connection::escapeMatchValue(), if you need to compose complex match condition use yii\db\Expression: $query = new Query(); $query->from('my_index') ->match(new Expression(':match', ['match' => '@(content) ' . Yii::$app->sphinx->escapeMatchValue($matchValue)])) ->all(); public $this match ( $

helpers\BaseHtml csrfMetaTags()

csrfMetaTags() public static method Generates the meta tags containing CSRF token information. See also yii\web\Request::$enableCsrfValidation. public static string csrfMetaTags ( )return string The generated meta tags

data\BaseDataProvider setKeys()

setKeys() public method Sets the key values associated with the data models. public void setKeys ( $keys )$keys array The list of key values corresponding to $models.