db\QueryTrait filterCondition()

filterCondition() protected method Removes empty operands from the given query condition. protected array filterCondition ( $condition )$condition array The original condition return array The condition with empty operands removed. throws yii\base\NotSupportedException if the condition operator is not supported

debug\models\search\Db search()

search() public method Returns data provider with filled models. Filter applied if needed. public yii\data\ArrayDataProvider search ( $params, $models )$params array An array of parameter values indexed by parameter names $models array Data to return provider for

debug\panels\ProfilingPanel $detail

$detail public read-only property Content that is displayed in debugger detail view public string getDetail ( )

elasticsearch\Command suggest()

suggest() public method Sends a request to the _suggest API and returns the result See also http://www.elastic.co/guide/en/elasticsearch/reference/current/search-suggesters.html. public mixed suggest ( $suggester, $options = [] )$suggester string|array The suggester body $options array

debug\panels\DbPanel getQueryType()

getQueryType() protected method Returns database query type. protected string getQueryType ( $timing )$timing string Timing procedure string return string Query type such as select, insert, delete, etc.

elasticsearch\Connection open()

open() public method Establishes a DB connection. It does nothing if a DB connection has already been established. public void open ( )throws yii\elasticsearch\Exception if connection fails

debug\models\search\Profile 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

elasticsearch\Command createIndex()

createIndex() public method Creates an index See also http://www.elastic.co/guide/en/elasticsearch/reference/current/indices-create-index.html. public mixed createIndex ( $index, $configuration = null )$index $configuration array

rbac\DbManager removeChildren()

removeChildren() public method Removed all children form their parent. Note, the children items are not deleted. Only the parent-child relationships are removed. public boolean removeChildren ( $parent )$parent yii\rbac\Item return boolean Whether the removal is successful

rbac\PhpManager getChildRoles()

getChildRoles() public method Returns the roles that are adding to the role via addChild() by recursive. public yii\rbac\Role[] getChildRoles ( $roleName )$roleName string Name of parent Role. return yii\rbac\Role[] All roles directly adding to the role. The array is indexed by the role names. First element is a Role item that are getting by $roleName. throws yii\base\InvalidParamException if Role was not found that are getting by $roleName