web\JsonResponseFormatter $prettyPrint

$prettyPrint public property (available since version 2.0.7) Whether to format the output in a readable "pretty" format. This can be useful for debugging purpose. If this is true, JSON_PRETTY_PRINT will be added to $encodeOptions. Defaults to false. This property has no effect, when $useJsonp is true. public boolean $prettyPrint = false

web\Response clear()

clear() public method Clears the headers, cookies, content, status code of the response. public void clear ( )

caching\Dependency generateReusableHash()

generateReusableHash() protected method Generates a unique hash that can be used for retrieving reusable dependency data. See also $reusable. protected string generateReusableHash ( )return string A unique hash value for this cache dependency.

sphinx\Schema $db

$db public property The Sphinx connection public yii\sphinx\Connection $db = null

sphinx\Query innerJoin()

innerJoin() public method Appends an INNER JOIN part to the query. public $this innerJoin ( $table, $on = '', $params = [] )$table string|array The table to be joined. Use a string to represent the name of the table to be joined. The table name can contain a schema prefix (e.g. 'public.user') and/or table alias (e.g. 'user u'). The method will automatically quote the table name unless it contains some parenthesis (which means the table is given as a sub-query or DB expression). Use an

helpers\BaseHtml resetButton()

resetButton() public static method Generates a reset button tag. public static string resetButton ( $content = 'Reset', $options = [] )$content string The content enclosed within the button tag. It will NOT be HTML-encoded. Therefore you can pass in HTML code such as an image tag. If this is is coming from end users, you should consider encode() it to prevent XSS attacks. $options array The tag options in terms of name-value pairs. These will be rendered as the attributes of the result

authclient\widgets\AuthChoice defaultClients()

defaultClients() protected method Returns default auth clients list. protected yii\authclient\ClientInterface[] defaultClients ( )return yii\authclient\ClientInterface[] Auth clients list.

db\QueryInterface all()

all() public abstract method Executes the query and returns all results as an array. public abstract array all ( $db = null )$db yii\db\Connection The database connection used to execute the query. If this parameter is not given, the db application component will be used. return array The query results. If the query results in nothing, an empty array will be returned.

db\pgsql\QueryBuilder $conditionBuilders

$conditionBuilders protected property Map of query condition to builder methods. These methods are used by buildCondition() to build SQL conditions from array syntax. protected array $conditionBuilders = ['NOT' => 'buildNotCondition', 'AND' => 'buildAndCondition', 'OR' => 'buildAndCondition', 'BETWEEN' => 'buildBetweenCondition', 'NOT BETWEEN' => 'buildBetweenCondition', 'IN' => 'buildInCondition', 'NOT IN' => 'buildInCondition', 'LIKE' => 'buildLikeCondition', 'ILI

db\Query populate()

populate() public method Converts the raw query results into the format as specified by this query. This method is internally used to convert the data fetched from database into the format as required by this query. public array populate ( $rows )$rows array The raw query result from database return array The converted query result