base\ArrayableTrait extraFields()

extraFields() public method Returns the list of fields that can be expanded further and returned by toArray(). This method is similar to fields() except that the list of fields returned by this method are not returned by default by toArray(). Only when field names to be expanded are explicitly specified when calling toArray(), will their values be exported. The default implementation returns an empty array. You may override this method to return a list of expandable fields based on some con

db\Connection getSlavePdo()

getSlavePdo() public method Returns the PDO instance for the currently active slave connection. When $enableSlaves is true, one of the slaves will be used for read queries, and its PDO instance will be returned by this method. public PDO getSlavePdo ( $fallbackToMaster = true )$fallbackToMaster boolean Whether to return a master PDO in case none of the slave connections is available. return PDO The PDO instance for the currently active slave connection. Null is returned if no slave con

helpers\BaseConsole streamSupportsAnsiColors()

streamSupportsAnsiColors() public static method Returns true if the stream supports colorization. ANSI colors are disabled if not supported by the stream. windows without ansicon not tty consoles public static boolean streamSupportsAnsiColors ( $stream )$stream mixed return boolean True if the stream supports ANSI colors, otherwise false.

widgets\FragmentCache getCachedContent()

getCachedContent() public method Returns the cached content if available. public string|false getCachedContent ( )return string|false The cached content. False is returned if valid content is not found in the cache.

caching\DbCache deleteValue()

deleteValue() protected method Deletes a value with the specified key from cache This is the implementation of the method declared in the parent class. protected boolean deleteValue ( $key )$key string The key of the value to be deleted return boolean If no error happens during deletion

sphinx\Query rightJoin()

rightJoin() public method Appends a RIGHT OUTER JOIN part to the query. public $this rightJoin ( $table, $on = '', $params = [] )$table string|array The table to be joined. Use a string to represent the name of the table to be joined. The table name can contain a schema prefix (e.g. 'public.user') and/or table alias (e.g. 'user u'). The method will automatically quote the table name unless it contains some parenthesis (which means the table is given as a sub-query or DB expression). Us

jui\DatePickerLanguageAsset $depends

$depends public property List of bundle class names that this bundle depends on. For example: public $depends = [ 'yii\web\YiiAsset', 'yii\bootstrap\BootstrapAsset', ]; List of bundle class names that this bundle depends on. For example: public $depends = [ 'yii\web\YiiAsset', 'yii\bootstrap\BootstrapAsset', ]; public array $depends = ['yii\jui\JuiAsset']

gii\generators\extension\Generator stickyAttributes()

stickyAttributes() public method Returns the list of sticky attributes. A sticky attribute will remember its value and will initialize the attribute with this value when the generator is restarted. public array stickyAttributes ( )return array List of sticky attributes

debug\components\search\Filter addMatcher()

addMatcher() public method Adds data filtering rule. public void addMatcher ( $name, yii\debug\components\search\matchers\MatcherInterface $rule )$name string Attribute name $rule yii\debug\components\search\matchers\MatcherInterface

swiftmailer\Message getReadReceiptTo()

getReadReceiptTo() public method (available since version 2.0.6) Get the addresses to which a read-receipt will be sent. public string getReadReceiptTo ( )return string Receipt receive email addresses.