base\InvalidCallException getName()

getName() public method public string getName ( )return string The user-friendly name of this exception

base\Controller EVENT_BEFORE_ACTION

EVENT_BEFORE_ACTION event of type yii\base\ActionEvent An event raised right before executing a controller action. You may set yii\base\ActionEvent::$isValid to be false to cancel the action execution.

widgets\ListView $itemView

$itemView public property The name of the view for rendering each data item, or a callback (e.g. an anonymous function) for rendering each data item. If it specifies a view name, the following variables will be available in the view: $model: mixed, the data model $key: mixed, the key value associated with the data item $index: integer, the zero-based index of the data item in the items array returned by $dataProvider. $widget: ListView, this widget instance Note that the view name is re

mongodb\rbac\MongoDbManager addItem()

addItem() protected method Adds an auth item to the RBAC system. protected boolean addItem ( $item )$item yii\rbac\Item The item to add return boolean Whether the auth item 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)

authclient\ClientInterface getId()

getId() public abstract method public abstract string getId ( )return string Service id

authclient\OAuth1 composeRequestCurlOptions()

composeRequestCurlOptions() protected method Composes HTTP request CUrl options, which will be merged with the default ones. protected array composeRequestCurlOptions ( $method, $url, array $params )$method string Request type. $url string Request URL. $params array Request params. return array CUrl options. throws yii\base\Exception on failure.

console\Controller stderr()

stderr() public method Prints a string to STDERR You may optionally format the string with ANSI codes by passing additional parameters using the constants defined in yii\helpers\Console. Example: $this->stderr('This will be red and underlined.', Console::FG_RED, Console::UNDERLINE); public integer|boolean stderr ( $string )$string string The string to print return integer|boolean Number of bytes printed or false on error

db\oci\Schema extractColumnSize()

extractColumnSize() protected method Extracts size, precision and scale information from column's DB type. protected void extractColumnSize ( $column, $dbType, $precision, $scale, $length )$column yii\db\ColumnSchema $dbType string The column's DB type $precision string Total number of digits. This parameter is available since version 2.0.4. $scale string Number of digits on the right of the decimal separator. This parameter is available since version 2.0.4. $length string Length

base\View beginContent()

beginContent() public method Begins the rendering of content that is to be decorated by the specified view. This method can be used to implement nested layout. For example, a layout can be embedded in another layout file specified as '@app/views/layouts/base.php' like the following: <?php $this->beginContent('@app/views/layouts/base.php'); ?> //...layout content here... <?php $this->endContent(); ?> See also yii\widgets\ContentDecorator. public yii\widgets\ContentDecora

db\cubrid\Schema createColumnSchemaBuilder()

createColumnSchemaBuilder() public method Create a column schema builder instance giving the type and value precision. This method may be overridden by child classes to create a DBMS-specific column schema builder. public yii\db\ColumnSchemaBuilder createColumnSchemaBuilder ( $type, $length = null )$type string Type of the column. See yii\db\cubrid\ColumnSchemaBuilder::$type. $length integer|string|array Length or precision of the column. See yii\db\cubrid\ColumnSchemaBuilder::$lengt