db\cubrid\QueryBuilder addCommentOnTable()

addCommentOnTable() public method (available since version 2.0.8) Builds a SQL command for adding comment to table public string addCommentOnTable ( $table, $comment )$table string The table whose column is to be commented. The table name will be properly quoted by the method. $comment string The text of the comment to be added. The comment will be properly quoted by the method. return string The SQL statement for adding comment on table

db\ActiveRecordInterface deleteAll()

deleteAll() public abstract static method Deletes records using the provided conditions. WARNING: If you do not specify any condition, this method will delete ALL rows in the table. For example, to delete all customers whose status is 3: Customer::deleteAll([status = 3]); public abstract static integer deleteAll ( $condition = null )$condition array The condition that matches the records that should get deleted. Please refer to yii\db\QueryInterface::where() on how to specify this param

db\DataReader readAll()

readAll() public method Reads the whole result set into an array. public array readAll ( )return array The result set (each array element represents a row of data). An empty array will be returned if the result contains no row.

rbac\ManagerInterface add()

add() public abstract method Adds a role, permission or rule to the RBAC system. public abstract boolean add ( $object )$object yii\rbac\Role|yii\rbac\Permission|yii\rbac\Rule return boolean Whether the role, permission or rule is successfully added to the system throws Exception if data validation or saving fails (such as the name of the role or permission is not unique)

helpers\BaseConsole stderr()

stderr() public static method Prints a string to STDERR. public static integer|boolean stderr ( $string )$string string The string to print return integer|boolean Number of bytes printed or false on error

sphinx\ActiveQuery init()

init() public method Initializes the object. This method is called at the end of the constructor. The default implementation will trigger an EVENT_INIT event. If you override this method, make sure you call the parent implementation at the end to ensure triggering of the event. public void init ( )

db\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 table 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\db\ActiveRecord Record to compare to return boolean Whether the two active records refer to the same row in the same database table.

web\AssetManager $fileMode

$fileMode public property The permission to be set for newly published asset files. This value will be used by PHP chmod() function. No umask will be applied. If not set, the permission will be determined by the current environment. public integer $fileMode = null

web\Application getUser()

getUser() public method Returns the user component. public yii\web\User getUser ( )return yii\web\User The user component.

debug\panels\MailPanel getDetail()

getDetail() public method public string getDetail ( )return string Content that is displayed in debugger detail view