widgets\BaseListView init()

init() public method Initializes the view. public void init ( )

console\controllers\HelpController formatOptionHelp()

formatOptionHelp() protected method Generates a well-formed string for an argument or option. protected string formatOptionHelp ( $name, $required, $type, $defaultValue, $comment )$name string The name of the argument or option $required boolean Whether the argument is required $type string The type of the option or argument $defaultValue mixed The default value of the option or argument $comment string Comment about the option or argument return string The formatted string for

mongodb\file\Download $filename

$filename public read-only property File name. public string|null getFilename ( )

web\Request $securePort

$securePort public property Port number for secure requests. public integer getSecurePort ( )public void setSecurePort ( $value )

web\Cookie $secure

$secure public property Whether cookie should be sent via secure connection public boolean $secure = false

Response Formatting

Content Negotiation Data Serializing When handling a RESTful API request, an application usually takes the following steps that are related with response formatting: Determine various factors that may affect the response format, such as media type, language, version, etc. This process is also known as content negotiation. Convert resource objects into arrays, as described in the Resources section. This is done by yii\rest\Serializer. Convert arrays into a string in the format as determined by

base\View endPage()

endPage() public method Marks the ending of a page. public void endPage ( )

validators\IpValidator validateIPv6()

validateIPv6() protected method Validates IPv6 address protected boolean validateIPv6 ( $value )$value string

bootstrap\ToggleButtonGroup $items

$items public property The data item used to generate the checkboxes. The array values are the labels, while the array keys are the corresponding checkbox or radio values. public array $items = []

base\ExitException __construct()

__construct() public method Constructor. public void __construct ( $status = 0, $message = null, $code = 0, Exception $previous = null )$status integer The exit status code $message string Error message $code integer Error code $previous Exception The previous exception used for the exception chaining.