authclient\clients\Twitter $apiBaseUrl

$apiBaseUrl public property API base URL. API base URL. public string $apiBaseUrl = 'https://api.twitter.com/1.1'

db\Query from()

from() public method Sets the FROM part of the query. public $this from ( $tables )$tables string|array The table(s) to be selected from. This can be either a string (e.g. 'user') or an array (e.g. ['user', 'profile']) specifying one or several table names. Table names can contain schema prefixes (e.g. 'public.user') and/or table aliases (e.g. 'user u'). The method will automatically quote the table names unless it contains some parenthesis (which means the table is given as a sub-quer

web\UploadedFile reset()

reset() public static method Cleans up the loaded UploadedFile instances. This method is mainly used by test scripts to set up a fixture. public static void reset ( )

web\Session setId()

setId() public method Sets the session ID. This is a wrapper for PHP session_id(). public void setId ( $value )$value string The session ID for the current session

gii\generators\model\Generator generateQueryClassName()

generateQueryClassName() protected method Generates a query class name from the specified model class name. protected string generateQueryClassName ( $modelClassName )$modelClassName string Model class name return string Generated class name

base\Module getControllerPath()

getControllerPath() public method Returns the directory that contains the controller classes according to $controllerNamespace. Note that in order for this method to return a value, you must define an alias for the root namespace of $controllerNamespace. public string getControllerPath ( )return string The directory that contains the controller classes. throws yii\base\InvalidParamException if there is no alias defined for the root namespace of $controllerNamespace.

mongodb\gii\model\Generator generateClassName()

generateClassName() protected method Generates a class name from the specified collection name. protected string generateClassName ( $collectionName )$collectionName string The collection name (which may contain schema prefix) return string The generated class name

grid\DataColumn $label

$label public property Label to be displayed in the header cell and also to be used as the sorting link label when sorting is enabled for this column. If it is not set and the models provided by the GridViews data provider are instances of yii\db\ActiveRecord, the label will be determined using yii\db\ActiveRecord::getAttributeLabel(). Otherwise yii\helpers\Inflector::camel2words() will be used to get a label. public string $label = null

rbac\DbManager $cacheKey

$cacheKey public property (available since version 2.0.3) The key used to store RBAC data in cache See also $cache. public string $cacheKey = 'rbac'

web\JsonResponseFormatter $useJsonp

$useJsonp public property Whether to use JSONP response format. When this is true, the response data must be an array consisting of data and callback members. The latter should be a JavaScript function name while the former will be passed to this function as a parameter. public boolean $useJsonp = false