i18n\GettextPoFile load()

load() public method Loads messages from a PO file. public array load ( $filePath, $context )$filePath string File path $context string Message context return array Message translations. Array keys are source messages and array values are translated messages: source message => translated message.

mutex\PgsqlMutex acquireLock()

acquireLock() protected method Acquires lock by given name. See also http://www.postgresql.org/docs/9.0/static/functions-admin.html. protected boolean acquireLock ( $name, $timeout = 0 )$name string Of the lock to be acquired. $timeout integer To wait for lock to become released. return boolean Acquiring result.

console\Controller parseDocCommentSummary()

parseDocCommentSummary() protected method Returns the first line of docblock. protected string parseDocCommentSummary ( $reflection )$reflection Reflector

db\ActiveQueryTrait with()

with() public method Specifies the relations with which this query should be performed. The parameters to this method can be either one or multiple strings, or a single array of relation names and the optional callbacks to customize the relations. A relation name can refer to a relation defined in $modelClass or a sub-relation that stands for a relation of a related record. For example, orders.address means the address relation defined in the model class corresponding to the orders relation

mongodb\Command setWriteConcern()

setWriteConcern() public method Sets write concern for this command. public $this setWriteConcern ( $writeConcern )$writeConcern \MongoDB\Driver\WriteConcern|integer|string|null Write concern, it can be an instance of \MongoDB\Driver\WriteConcern or its scalar mode value, for example: majority. return $this Self reference

db\ActiveRecordInterface isPrimaryKey()

isPrimaryKey() public abstract static method Returns a value indicating whether the given set of attributes represents the primary key for this model public abstract static boolean isPrimaryKey ( $keys )$keys array The set of attributes to check return boolean Whether the given set of attributes represents the primary key for this model

web\Response $downloadHeaders

$downloadHeaders public write-only property The attachment file name public $this setDownloadHeaders ( $attachmentName, $mimeType = null, $inline = false, $contentLength = null )

widgets\ActiveField $inputOptions

$inputOptions public property The default options for the input tags. The parameter passed to individual input methods (e.g. textInput()) will be merged with this property when rendering the input tag. If you set a custom id for the input element, you may need to adjust the $selectors accordingly. See also yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. public array $inputOptions = ['class' => 'form-control']

authclient\clients\Facebook initUserAttributes()

initUserAttributes() protected method Initializes authenticated user attributes. protected array initUserAttributes ( )return array Auth user attributes.

base\ArrayableTrait toArray()

toArray() public method Converts the model into an array. This method will first identify which fields to be included in the resulting array by calling resolveFields(). It will then turn the model into an array with these fields. If $recursive is true, any embedded objects will also be converted into arrays. If the model implements the yii\web\Linkable interface, the resulting array will also have a _link element which refers to a list of links as specified by the interface. public array