authclient\WeChat fetchAccessToken()

fetchAccessToken() public method Fetches access token from authorization code. public yii\authclient\OAuthToken fetchAccessToken ( $authCode, array $params = [] )$authCode string Authorization code, usually comes at $_GET['code']. $params array Additional request params. return yii\authclient\OAuthToken Access token.

i18n\DbMessageSource $cachingDuration

$cachingDuration public property The time in seconds that the messages can remain valid in cache. Use 0 to indicate that the cached data will never expire. See also $enableCaching. public integer $cachingDuration = 0

db\Connection quoteColumnName()

quoteColumnName() public method Quotes a column name for use in a query. If the column name contains prefix, the prefix will also be properly quoted. If the column name is already quoted or contains special characters including '(', '[[' and '{{', then this method will do nothing. public string quoteColumnName ( $name )$name string Column name return string The properly quoted column name

authclient\BaseOAuth removeState()

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

helpers\BaseConsole isRunningOnWindows()

isRunningOnWindows() public static method Returns true if the console is running on windows public static boolean isRunningOnWindows ( )

authclient\signature\RsaSha1 $_publicCertificate

$_publicCertificate protected property OpenSSL public key certificate content. This value can be fetched from file specified by $publicCertificateFile. protected string $_publicCertificate = null

db\Command bindValue()

bindValue() public method Binds a value to a parameter. See also http://www.php.net/manual/en/function.PDOStatement-bindValue.php. public $this bindValue ( $name, $value, $dataType = null )$name string|integer Parameter identifier. For a prepared statement using named placeholders, this will be a parameter name of the form :name. For a prepared statement using question mark placeholders, this will be the 1-indexed position of the parameter. $value mixed The value to bind to the param

web\Request $absoluteUrl

$absoluteUrl public read-only property The currently requested absolute URL. public string getAbsoluteUrl ( )

jui\Selectable renderItems()

renderItems() public method Renders selectable items as specified on $items. public string renderItems ( )return string The rendering result. throws \yii\jui\InvalidConfigException.

web\UrlManager setBaseUrl()

setBaseUrl() public method Sets the base URL that is used by createUrl() to prepend to created URLs. This is mainly used when $enablePrettyUrl is true and $showScriptName is false. public void setBaseUrl ( $value )$value string The base URL that is used by createUrl() to prepend to created URLs.