web\View registerLinkTag()

registerLinkTag() public method Registers a link tag. For example, a link tag for a custom favicon can be added like the following: $view->registerLinkTag(['rel' => 'icon', 'type' => 'image/png', 'href' => '/myicon.png']); which will result in the following HTML: <link rel="icon" type="image/png" href="/myicon.png">. Note: To register link tags for CSS stylesheets, use registerCssFile() instead, which has more options for this kind of link tag. public void registerLinkT

authclient\OpenId buildSregParams()

buildSregParams() protected method Composes SREG request parameters. protected array buildSregParams ( )return array SREG parameters.

widgets\FragmentCache updateDynamicContent()

updateDynamicContent() protected method Replaces placeholders in content by results of evaluated dynamic statements. protected string updateDynamicContent ( $content, $placeholders )$content string $placeholders array return string Final content

behaviors\SluggableBehavior $attribute

$attribute public property The attribute or list of attributes whose value will be converted into a slug public string|array $attribute = null

db\QueryBuilder $separator

$separator public property The separator between different fragments of a SQL statement. Defaults to an empty space. This is mainly used by build() when generating a SQL statement. public string $separator = ' '

BaseYii endProfile()

endProfile() public static method Marks the end of a code block for profiling. This has to be matched with a previous call to beginProfile() with the same category name. See also beginProfile(). public static void endProfile ( $token, $category = 'application' )$token string Token for the code block $category string The category of this log message

Page Caching

Page caching refers to caching the content of a whole page on the server-side. Later when the same page is requested again, its content will be served from the cache instead of regenerating it from scratch. Page caching is supported by yii\filters\PageCache, an action filter. It can be used like the following in a controller class: public function behaviors() { return [ [ 'class' => 'yii\filters\PageCache', 'only' => ['index'], 'duration' =&

authclient\clients\Twitter $accessTokenMethod

$accessTokenMethod public property Access token HTTP method. Access token HTTP method. public string $accessTokenMethod = 'POST'

sphinx\ActiveRecord getSnippet()

getSnippet() public method Returns current snippet value or generates new one from given match. public string getSnippet ( $match = null, $options = [] )$match string Snippet source query $options array List of options in format: optionName => optionValue return string Snippet value

bootstrap\Progress $barOptions

$barOptions public property The HTML attributes of the bar. See also yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. public array $barOptions = []