db\BaseActiveRecord afterSave()

afterSave() public method This method is called at the end of inserting or updating a record. The default implementation will trigger an EVENT_AFTER_INSERT event when $insert is true, or an EVENT_AFTER_UPDATE event if $insert is false. The event class used is yii\db\AfterSaveEvent. When overriding this method, make sure you call the parent implementation so that the event is triggered. public void afterSave ( $insert, $changedAttributes )$insert boolean Whether this method called while i

web\DbSession init()

init() public method Initializes the DbSession component. This method will initialize the $db property to make sure it refers to a valid DB connection. public void init ( )throws yii\base\InvalidConfigException if $db is invalid.

test\FixtureTrait unloadFixtures()

unloadFixtures() public method Unloads the specified fixtures. This method will call yii\test\Fixture::unload() for every fixture object. public void unloadFixtures ( $fixtures = null )$fixtures yii\test\Fixture[] The fixtures to be loaded. If this parameter is not specified, the return value of getFixtures() will be used.

test\FixtureTrait createFixtures()

createFixtures() protected method Creates the specified fixture instances. All dependent fixtures will also be created. protected yii\test\Fixture[] createFixtures ( array $fixtures )$fixtures array The fixtures to be created. You may provide fixture names or fixture configurations. If this parameter is not provided, the fixtures specified in globalFixtures() and fixtures() will be created. return yii\test\Fixture[] The created fixture instances throws yii\base\InvalidConfigException

swiftmailer\Message $to

$to public property The message recipients public array getTo ( )public $this setTo ( $to )

mongodb\file\Cursor __set()

__set() public method PHP magic method, which is invoked on attempt of setting not existing property. It passes value to the inner iterator. public void __set ( $name, $value )$name string Field name. $value mixed Field value.

widgets\ActiveField error()

error() public method Generates a tag that contains the first validation error of $attribute. Note that even if there is no validation error, this method will still return an empty error tag. See also $errorOptions. public $this error ( $options = [] )$options array|false The tag options in terms of name-value pairs. It will be merged with $errorOptions. The options will be rendered as the attributes of the resulting tag. The values will be HTML-encoded using yii\helpers\Html::encode()

sphinx\QueryBuilder buildCompositeInCondition()

buildCompositeInCondition() protected method protected string buildCompositeInCondition ( $indexes, $operator, $columns, $values, &$params )$indexes yii\sphinx\IndexSchema[] List of indexes, which affected by query $operator string The operator to use (e.g. IN or NOT IN) $columns array $values array $params array The binding parameters to be populated return string The generated SQL expression

web\User $isGuest

$isGuest public read-only property Whether the current user is a guest. public boolean getIsGuest ( )

authclient\AuthAction $clientIdGetParamName

$clientIdGetParamName public property Name of the GET param, which is used to passed auth client id to this action. Note: watch for the naming, make sure you do not choose name used in some auth protocol. public string $clientIdGetParamName = 'authclient'