base\Object __get()

__get() public method Returns the value of an object property. Do not call this method directly as it is a PHP magic method that will be implicitly called when executing $value = $object->property;. See also __set(). public mixed __get ( $name )$name string The property name return mixed The property value throws yii\base\UnknownPropertyException if the property is not defined throws yii\base\InvalidCallException if the property is write-only

swiftmailer\Message setReturnPath()

setReturnPath() public method (available since version 2.0.6) Set the return-path (the bounce address) of this message. public $this setReturnPath ( $address )$address string The bounce email address. return $this Self reference.

filters\PageCache calculateCacheKey()

calculateCacheKey() protected method (available since version 2.0.3) protected array calculateCacheKey ( )return array The key used to cache response properties.

authclient\OpenId getClaimedId()

getClaimedId() public method public string getClaimedId ( )return string Claimed identifier (identity).

helpers\BaseHtml style()

style() public static method Generates a style tag. public static string style ( $content, $options = [] )$content string The style content $options array The tag options in terms of name-value pairs. These will be rendered as the attributes of the resulting tag. The values will be HTML-encoded using encode(). If a value is null, the corresponding attribute will not be rendered. See renderTagAttributes() for details on how attributes are being rendered. return string The generated st

swiftmailer\Message getReturnPath()

getReturnPath() public method (available since version 2.0.6) Returns the return-path (the bounce address) of this message. public string getReturnPath ( )return string The bounce email address.

base\DynamicModel addRule()

addRule() public method Adds a validation rule to this model. You can also directly manipulate $validators to add or remove validation rules. This method provides a shortcut. public $this addRule ( $attributes, $validator, $options = [] )$attributes string|array The attribute(s) to be validated by the rule $validator mixed The validator for the rule.This can be a built-in validator name, a method name of the model class, an anonymous function, or a validator class name. $options arr

widgets\LinkPager $lastPageCssClass

$lastPageCssClass public property The CSS class for the "last" page button. public string $lastPageCssClass = 'last'

debug\panels\RequestPanel $name

$name public read-only property Name of the panel public string getName ( )

gii\generators\model\Generator getDbConnection()

getDbConnection() protected method protected yii\db\Connection getDbConnection ( )return yii\db\Connection The DB connection as specified by $db.