authclient\BaseOAuth removeState()

removeState() protected method Removes persistent state value. protected boolean removeState ( $key )$key string State key. return boolean Success.

db\QueryBuilder buildSimpleCondition()

buildSimpleCondition() public method Creates an SQL expressions like "column" operator value. public string buildSimpleCondition ( $operator, $operands, &$params )$operator string The operator to use. Anything could be used e.g. >, <=, etc. $operands array Contains two column names. $params array The binding parameters to be populated return string The generated SQL expression throws yii\base\InvalidParamException if wrong number of operands have been given.

db\QueryBuilder dropCommentFromColumn()

dropCommentFromColumn() public method (available since version 2.0.8) Builds a SQL command for adding comment to column public string dropCommentFromColumn ( $table, $column )$table string The table whose column is to be commented. The table name will be properly quoted by the method. $column string The name of the column to be commented. The column name will be properly quoted by the method. return string The SQL statement for adding comment on column

web\User $authTimeout

$authTimeout public property The number of seconds in which the user will be logged out automatically if he remains inactive. If this property is not set, the user will be logged out after the current session expires (c.f. yii\web\Session::$timeout). Note that this will not work if $enableAutoLogin is true. public integer $authTimeout = null

helpers\BaseFileHelper normalizePath()

normalizePath() public static method Normalizes a file/directory path. The normalization does the following work: Convert all directory separators into DIRECTORY_SEPARATOR (e.g. "\a/b\c" becomes "/a/b/c") Remove trailing directory separators (e.g. "/a/b/c/" becomes "/a/b/c") Turn multiple consecutive slashes into a single one (e.g. "/a///b/c" becomes "/a/b/c") Remove ".." and "." based on their meanings (e.g. "/a/./b/../c" becomes "/a/c") public static string normalizePath ( $path, $ds =

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

authclient\clients\LinkedIn apiInternal()

apiInternal() protected method Performs request to the OAuth API. protected array apiInternal ( $accessToken, $url, $method, array $params, array $headers )$accessToken yii\authclient\OAuthToken Actual access token. $url string Absolute API URL. $method string Request method. $params array Request parameters. $headers array Additional request headers. return array API response. throws yii\base\Exception on failure.

rbac\ManagerInterface getChildRoles()

getChildRoles() public abstract method (available since version 2.0.10) Returns the roles that are adding to the role via addChild() by recursive. public abstract 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 $

db\cubrid\Schema $exceptionMap

$exceptionMap public property Map of DB errors and corresponding exceptions If left part is found in DB error message exception class from the right part is used. public array $exceptionMap = ['Operation would have caused one or more unique constraint violations' => 'yii\db\IntegrityException']

jui\Tabs $items

$items public property List of tab items. Each item can be an array of the following structure: label: string, required, specifies the header link label. When $encodeLabels is true, the label will be HTML-encoded. content: string, the content to show when corresponding tab is clicked. Can be omitted if url is specified. url: mixed, mixed, optional, the url to load tab contents via AJAX. It is required if no content is specified. template: string, optional, the header link template to render