helpers\BaseHtml hiddenInput()

hiddenInput() public static method Generates a hidden input field. public static string hiddenInput ( $name, $value = null, $options = [] )$name string The name attribute. $value string The value attribute. If it is null, the value attribute will not be generated. $options array The tag options in terms of name-value pairs. These will be rendered as the attributes of the resulting tag. The values will be HTML-encoded using encode(). If a value is null, the corresponding attribute wil

rest\UrlRule parseRequest()

parseRequest() public method Parses the given request and returns the corresponding route and parameters. public array|boolean parseRequest ( $manager, $request )$manager yii\web\UrlManager The URL manager $request yii\web\Request The request component return array|boolean The parsing result. The route and the parameters are returned as an array. If false, it means this rule cannot be used to parse this path info.

helpers\BaseHtml input()

input() public static method Generates an input type of the given type. public static string input ( $type, $name = null, $value = null, $options = [] )$type string The type attribute. $name string The name attribute. If it is null, the name attribute will not be generated. $value string The value attribute. If it is null, the value attribute will not be generated. $options array The tag options in terms of name-value pairs. These will be rendered as the attributes of the resulting

validators\IpValidator $ipv4Pattern

$ipv4Pattern public property Regexp-pattern to validate IPv4 address public string $ipv4Pattern = '/^(?:(?:2(?:[0-4][0-9]|5[0-5])|[0-1]?[0-9]?[0-9])\.){3}(?:(?:2([0-4][0-9]|5[0-5])|[0-1]?[0-9]?[0-9]))$/'

rest\Serializer $request

$request public property The current request. If not set, the request application component will be used. public yii\web\Request $request = null

mail\MessageInterface getBcc()

getBcc() public abstract method Returns the Bcc (hidden copy receiver) addresses of this message. public abstract array getBcc ( )return array The Bcc (hidden copy receiver) addresses of this message.

web\Controller beforeAction()

beforeAction() public method This method is invoked right before an action is executed. The method will trigger the EVENT_BEFORE_ACTION event. The return value of the method will determine whether the action should continue to run. In case the action should not run, the request should be handled inside of the beforeAction code by either providing the necessary output or redirecting the request. Otherwise the response will be empty. If you override this method, your code should look like the

debug\LogTarget gc()

gc() protected method protected void gc ( &$manifest )$manifest

mail\MessageInterface embedContent()

embedContent() public abstract method Attach a content as file and return it's CID source. This method should be used when embedding images or other data in a message. public abstract string embedContent ( $content, array $options = [] )$content string Attachment file content. $options array Options for embed file. Valid options are: fileName: name, which should be used to attach file. contentType: attached file MIME type. return string Attachment CID.

web\Cookie $value

$value public property Value of the cookie public string $value = ''