base\Application getI18n()

getI18n() public method Returns the internationalization (i18n) component public yii\i18n\I18N getI18n ( )return yii\i18n\I18N The internationalization application component.

gii\Generator getDescription()

getDescription() public method public string getDescription ( )return string The detailed description of the generator.

test\ActiveFixture init()

init() public method Initializes the object. This method is invoked at the end of the constructor after the object is initialized with the given configuration. public void init ( )

db\Schema getSchemaNames()

getSchemaNames() public method (available since version 2.0.4) Returns all schema names in the database, except system schemas. public string[] getSchemaNames ( $refresh = false )$refresh boolean Whether to fetch the latest available schema names. If this is false, schema names fetched previously (if available) will be returned. return string[] All schema names in the database, except system schemas.

rbac\BaseManager removeRule()

removeRule() protected abstract method Removes a rule from the RBAC system. protected abstract boolean removeRule ( $rule )$rule yii\rbac\Rule The rule to remove return boolean Whether the rule is successfully removed throws Exception if data validation or saving fails (such as the name of the rule is not unique)

mongodb\Collection getFullName()

getFullName() public method public string getFullName ( )return string Full name of this collection, including database name.

authclient\widgets\AuthChoice renderMainContent()

renderMainContent() protected method Renders the main content, which includes all external services links. protected void renderMainContent ( )

swiftmailer\Message setTextBody()

setTextBody() public method Sets message plain text content. public $this setTextBody ( $text )$text string Message plain text content. return $this Self reference.

base\Model attributeHints()

attributeHints() public method (available since version 2.0.4) Returns the attribute hints. Attribute hints are mainly used for display purpose. For example, given an attribute isPublic, we can declare a hint Whether the post should be visible for not logged in users, which provides user-friendly description of the attribute meaning and can be displayed to end users. Unlike label hint will not be generated, if its explicit declaration is omitted. Note, in order to inherit hints defined in t

db\Query all()

all() public method Executes the query and returns all results as an array. public array all ( $db = null )$db yii\db\Connection The database connection used to generate the SQL statement. If this parameter is not given, the db application component will be used. return array The query results. If the query results in nothing, an empty array will be returned.