console\Markdown renderStrike()

renderStrike() protected method Renders the strike through feature. protected string renderStrike ( $element )$element array

gii\generators\controller\Generator $controllerNamespace

$controllerNamespace public read-only property The namespace of the controller class public string getControllerNamespace ( )

mail\MessageInterface send()

send() public abstract method Sends this email message. public abstract boolean send ( yii\mail\MailerInterface $mailer = null )$mailer yii\mail\MailerInterface The mailer that should be used to send this message. If null, the "mail" application component will be used instead. return boolean Whether this message is sent successfully.

mongodb\ActiveRecord insert()

insert() public method Inserts a row into the associated Mongo collection using the attribute values of this record. This method performs the following steps in order: call beforeValidate() when $runValidation is true. If validation fails, it will skip the rest of the steps; call afterValidate() when $runValidation is true. call beforeSave(). If the method returns false, it will skip the rest of the steps; insert the record into collection. If this fails, it will skip the rest of the steps;

base\ArrayAccessTrait offsetSet()

offsetSet() public method This method is required by the interface ArrayAccess. public void offsetSet ( $offset, $item )$offset integer The offset to set element $item mixed The element value

base\ArrayAccessTrait offsetGet()

offsetGet() public method This method is required by the interface ArrayAccess. public mixed offsetGet ( $offset )$offset integer The offset to retrieve element. return mixed The element at the offset, null if no element is found at the offset

debug\DebugAsset $depends

$depends public property public $depends = ['yii\web\YiiAsset', 'yii\bootstrap\BootstrapAsset']

gii\generators\model\Generator rules()

rules() public method Returns the validation rules for attributes. Validation rules are used by validate() to check if attribute values are valid. Child classes may override this method to declare different validation rules. Each rule is an array with the following structure: [ ['attribute1', 'attribute2'], 'validator type', 'on' => ['scenario1', 'scenario2'], //...other parameters... ] where attribute list: required, specifies the attributes array to be validated, for s

rest\Action $findModel

$findModel public property A PHP callable that will be called to return the model corresponding to the specified primary key value. If not set, findModel() will be used instead. The signature of the callable should be: function ($id, $action) { // $id is the primary key value. If composite primary key, the key values // will be separated by comma. // $action is the action object currently running } The callable should return the model found, or throw an exception if not found.

grid\DataColumn $sortLinkOptions

$sortLinkOptions public property The HTML attributes for the link tag in the header cell generated by yii\data\Sort::link() when sorting is enabled for this column. See also yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. public array $sortLinkOptions = []