elasticsearch\BulkCommand $options

$options public property Options to be appended to the query URL. public array $options = []

sphinx\Schema $indexSchemas

$indexSchemas public read-only property The metadata for all indexes in the Sphinx. Each array element is an instance of yii\sphinx\IndexSchema or its child class. public yii\sphinx\IndexSchema[] getIndexSchemas ( $refresh = false )

authclient\clients\VKontakte $authUrl

$authUrl public property Authorize URL. Authorize URL. public string $authUrl = 'http://api.vk.com/oauth/authorize'

widgets\ActiveField radioList()

radioList() public method Renders a list of radio buttons. A radio button list is like a checkbox list, except that it only allows single selection. The selection of the radio buttons is taken from the value of the model attribute. public $this radioList ( $items, $options = [] )$items array The data item used to generate the radio buttons. The array values are the labels, while the array keys are the corresponding radio values. $options array Options (name => config) for the radio

swiftmailer\Message $swiftMessage

$swiftMessage public read-only property Swift message instance. public \Swift_Message getSwiftMessage ( )

authclient\clients\LinkedIn $attributeNames

$attributeNames public property (available since version 2.0.4) List of attribute names, which should be requested from API to initialize user attributes. public array $attributeNames = ['id', 'email-address', 'first-name', 'last-name', 'public-profile-url']

Application Components

Bootstrapping Components Core Application Components Applications are service locators. They host a set of the so-called application components that provide different services for processing requests. For example, the urlManager component is responsible for routing Web requests to appropriate controllers; the db component provides DB-related services; and so on. Each application component has an ID that uniquely identifies itself among other application components in the same application. You

db\sqlite\QueryBuilder truncateTable()

truncateTable() public method Builds a SQL statement for truncating a DB table. public string truncateTable ( $table )$table string The table to be truncated. The name will be properly quoted by the method. return string The SQL statement for truncating a DB table.

base\View renderPhpFile()

renderPhpFile() public method Renders a view file as a PHP script. This method treats the view file as a PHP script and includes the file. It extracts the given parameters and makes them available in the view file. The method captures the output of the included view file and returns it as a string. This method should mainly be called by view renderer or renderFile(). public string renderPhpFile ( $_file_, $_params_ = [] )$_file_ string The view file. $_params_ array The parameters (nam

mongodb\Session $db

$db public property The MongoDB connection object or the application component ID of the MongoDB connection. After the Session object is created, if you want to change this property, you should only assign it with a MongoDB connection object. Starting from version 2.0.2, this can also be a configuration array for creating the object. public yii\mongodb\Connection|array|string $db = 'mongodb'