sphinx\Query populate()

populate() public method Converts the raw query results into the format as specified by this query. This method is internally used to convert the data fetched from database into the format as required by this query. public array populate ( $rows )$rows array The raw query result from database return array The converted query result

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.

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

base\Model isAttributeActive()

isAttributeActive() public method Returns a value indicating whether the attribute is active in the current scenario. See also activeAttributes(). public boolean isAttributeActive ( $attribute )$attribute string Attribute name return boolean Whether the attribute is active in the current scenario

web\Session registerSessionHandler()

registerSessionHandler() protected method Registers session handler. protected void registerSessionHandler ( )throws yii\base\InvalidConfigException

db\oci\Schema findSchemaNames()

findSchemaNames() protected method Returns all schema names in the database, including the default one but not system schemas. This method should be overridden by child classes in order to support this feature because the default implementation simply throws an exception. protected array findSchemaNames ( )return array All schema names in the database, except system schemas throws yii\base\NotSupportedException if this method is called

helpers\FileHelper

All Classes | Properties | Methods | Constants Inheritance yii\helpers\FileHelper » yii\helpers\BaseFileHelper Available since version 2.0 Source Code https://github.com/yiisoft/yii2/blob/master/framework/helpers/FileHelper.php File system helper Public Properties Property Type Description Defined By $mimeMagicFile string The path (or alias) of a PHP file containing MIME type information. yii\helpers\BaseFileHelper Public Methods Method Description Defined By copyDirectory() Copies a

mongodb\file\Cursor $collection

$collection public property Related GridFS collection instance. public yii\mongodb\file\Collection $collection = null

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