web\UploadedFile $tempName

$tempName public property The path of the uploaded file on the server. Note, this is a temporary file which will be automatically deleted by PHP after the current request is processed. public string $tempName = null

mail\BaseMailer $messageClass

$messageClass public property The default class name of the new message instances created by createMessage() public string $messageClass = 'yii\mail\BaseMessage'

web\Request $isPut

$isPut public read-only property Whether this is a PUT request. public boolean getIsPut ( )

helpers\BaseHtml activeRadio()

activeRadio() public static method Generates a radio button tag together with a label for the given model attribute. This method will generate the "checked" tag attribute according to the model attribute value. public static string activeRadio ( $model, $attribute, $options = [] )$model yii\base\Model The model object $attribute string The attribute name or expression. See getAttributeName() for the format about attribute expression. $options array The tag options in terms of name-va

web\User $identityClass

$identityClass public property The class name of the $identity object. public string $identityClass = null

widgets\Menu $hideEmptyItems

$hideEmptyItems public property Whether to hide empty menu items. An empty menu item is one whose url option is not set and which has no visible child menu items. public boolean $hideEmptyItems = true

mongodb\QueryBuilder buildBetweenCondition()

buildBetweenCondition() public method Creates an Mongo condition, which emulates the BETWEEN operator. public array buildBetweenCondition ( $operator, $operands )$operator string The operator to use $operands array The first operand is the column name. The second and third operands describe the interval that column value should be in. return array The generated Mongo condition. throws yii\base\InvalidParamException if wrong number of operands have been given.

web\Request $userAgent

$userAgent public read-only property User agent, null if not available public string|null getUserAgent ( )

gii\console\GenerateAction run()

run() public method public void run ( )

mail\MailerInterface send()

send() public abstract method Sends the given email message. public abstract boolean send ( $message )$message yii\mail\MessageInterface Email message instance to be sent return boolean Whether the message has been sent successfully