db\BaseActiveRecord beforeDelete()

beforeDelete() public method This method is invoked before deleting a record. The default implementation raises the EVENT_BEFORE_DELETE event. When overriding this method, make sure you call the parent implementation like the following: public function beforeDelete() { if (parent::beforeDelete()) { // ...custom code here... return true; } else { return false; } } public boolean beforeDelete ( )return boolean Whether the record should be deleted. Defau

helpers\BaseHtml activeHiddenInput()

activeHiddenInput() public static method Generates a hidden input tag for the given model attribute. This method will generate the "name" and "value" tag attributes automatically for the model attribute unless they are explicitly specified in $options. public static string activeHiddenInput ( $model, $attribute, $options = [] )$model yii\base\Model The model object $attribute string The attribute name or expression. See getAttributeName() for the format about attribute expression. $op

sphinx\QueryBuilder composeColumnValue()

composeColumnValue() protected method Composes column value for SQL, taking in account the column type. protected string composeColumnValue ( $indexes, $columnName, $value, &$params )$indexes yii\sphinx\IndexSchema[] List of indexes, which affected by query $columnName string Name of the column $value mixed Raw column value $params array The binding parameters to be populated return string SQL expression, which represents column value

sphinx\QueryBuilder getMatchBuilder()

getMatchBuilder() public method (available since version 2.0.6) public yii\sphinx\MatchBuilder getMatchBuilder ( )return yii\sphinx\MatchBuilder Match builder.

bootstrap\Dropdown renderItems()

renderItems() protected method Renders menu items. protected string renderItems ( $items, $options = [] )$items array The menu items to be rendered $options array The container HTML attributes return string The rendering result. throws yii\base\InvalidConfigException if the label option is not specified in one of the items.

db\Schema getCacheTag()

getCacheTag() protected method Returns the cache tag name. This allows refresh() to invalidate all cached table schemas. protected string getCacheTag ( )return string The cache tag name

base\Module getViewPath()

getViewPath() public method Returns the directory that contains the view files for this module. public string getViewPath ( )return string The root directory of view files. Defaults to "$basePath/views".

bootstrap\ActiveForm $fieldClass

$fieldClass public property The default field class name when calling field() to create a new field. See also $fieldConfig. public string $fieldClass = 'yii\bootstrap\ActiveField'

elasticsearch\Connection $auth

$auth public property Authentication data used to connect to the ElasticSearch node. Array elements: username: the username for authentication. password: the password for authentication. Array either MUST contain both username and password on not contain any authentication credentials. See also http://www.elasticsearch.org/guide/en/elasticsearch/client/php-api/current/_configuration.html#_example_configuring_http_basic_auth. public array $auth = []

caching\ChainedDependency evaluateDependency()

evaluateDependency() public method Evaluates the dependency by generating and saving the data related with dependency. public void evaluateDependency ( $cache )$cache yii\caching\Cache The cache component that is currently evaluating this dependency