base\Object __construct()

__construct() public method Constructor. The default implementation does two things: Initializes the object with the given configuration $config. Call init(). If this method is overridden in a child class, it is recommended that the last parameter of the constructor is a configuration array, like $config here. call the parent implementation at the end of the constructor. public void __construct ( $config = [] )$config array Name-value pairs that will be used to initialize the object prop

authclient\Weibo defaultName()

defaultName() protected method Generates service name. protected string defaultName ( )return string Service name.

caching\DbCache $cacheTable

$cacheTable public property Name of the DB table to store cache content. The table should be pre-created as follows: CREATE TABLE cache ( id char(128) NOT NULL PRIMARY KEY, expire int(11), data BLOB ); where 'BLOB' refers to the BLOB-type of your preferred DBMS. Below are the BLOB type that can be used for some popular DBMS: MySQL: LONGBLOB PostgreSQL: BYTEA MSSQL: BLOB When using DbCache in a production server, we recommend you create a DB index for the 'expire' column in the

mutex\OracleMutex $releaseOnCommit

$releaseOnCommit public property Whether to release lock on commit. public boolean $releaseOnCommit = false

sphinx\Schema getIndexSchema()

getIndexSchema() public method Obtains the metadata for the named index. public yii\sphinx\IndexSchema|null getIndexSchema ( $name, $refresh = false )$name string Index name. The index name may contain schema name if any. Do not quote the index name. $refresh boolean Whether to reload the index schema even if it is found in the cache. return yii\sphinx\IndexSchema|null Index metadata. null - if the named index does not exist.

authclient\Weibo $tokenUrl

$tokenUrl public property Token request URL endpoint. Token request URL endpoint. public string $tokenUrl = 'https://api.weibo.com/oauth2/access_token'

base\Object canGetProperty()

canGetProperty() public method Returns a value indicating whether a property can be read. A property is readable if: the class has a getter method associated with the specified name (in this case, property name is case-insensitive); the class has a member variable with the specified name (when $checkVars is true); See also canSetProperty(). public boolean canGetProperty ( $name, $checkVars = true )$name string The property name $checkVars boolean Whether to treat member variables as pr

authclient\BaseClient getTitle()

getTitle() public method public string getTitle ( )return string Service title.

bootstrap\NavBar $options

$options public property The HTML attributes for the widget container tag. The following special options are recognized: tag: string, defaults to "nav", the name of the container tag. See also yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. public array $options = []

db\sqlite\QueryBuilder buildSubqueryInCondition()

buildSubqueryInCondition() protected method Builds SQL for IN condition protected string buildSubqueryInCondition ( $operator, $columns, $values, &$params )$operator string $columns array $values yii\db\Query $params array return string SQL throws yii\base\NotSupportedException if $columns is an array