sphinx\ActiveRecord getSnippetSource()

getSnippetSource() public method Returns the string, which should be used as a source to create snippet for this Active Record instance. Child classes must implement this method to return the actual snippet source text. For example: public function getSnippetSource() { return $this->snippetSourceRelation->content; } public string getSnippetSource ( )return string Snippet source string. throws yii\base\NotSupportedException if this is not supported by the Active Record class

mongodb\ActiveRecord equals()

equals() public method Returns a value indicating whether the given active record is the same as the current one. The comparison is made by comparing the collection names and the primary key values of the two active records. If one of the records is new they are also considered not equal. public boolean equals ( $record )$record yii\mongodb\ActiveRecord Record to compare to return boolean Whether the two active records refer to the same row in the same Mongo collection.

db\Schema refresh()

refresh() public method Refreshes the schema. This method cleans up all cached table schemas so that they can be re-created later to reflect the database schema change. public void refresh ( )

i18n\PhpMessageSource getMessageFilePath()

getMessageFilePath() protected method Returns message file path for the specified language and category. protected string getMessageFilePath ( $category, $language )$category string The message category $language string The target language return string Path to message file

mongodb\file\ActiveRecord getFileResource()

getFileResource() public method This method returns a stream resource that can be used with all file functions in PHP, which deal with reading files. The contents of the file are pulled out of MongoDB on the fly, so that the whole file does not have to be loaded into memory first. public resource getFileResource ( )return resource File stream resource. throws yii\base\InvalidParamException on invalid file attribute value.

debug\models\search\Log $level

$level public property Ip attribute input search value public string $level = null

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