Tag::setAutoescape

public static setAutoescape (mixed $autoescape) Set autoescape mode in generated html

Tag::selectStatic

public static string selectStatic (array $parameters, [array $data]) Builds a HTML SELECT tag using a PHP array for options echo Phalcon\Tag::selectStatic("status", array("A" => "Active", "I" => "Inactive"))

Tag::select

public static string select (array $parameters, [array $data]) Builds a HTML SELECT tag using a Phalcon\Mvc\Model resultset as options echo Phalcon\Tag::select([ "robotId", Robots::find("type = "mechanical""), "using" => ["id", "name"] ]); Volt syntax: {{ select("robotId", robots, "using": ["id", "name"]) }}

Tag::searchField

public static string searchField (array $parameters) Builds a HTML input[type=”search”] tag

Tag::resetInput

public static resetInput () Resets the request and internal values to avoid those fields will have any default value

Tag::renderAttributes

public static renderAttributes (mixed $code, array $attributes) Renders parameters keeping order in their HTML attributes

Tag::rangeField

public static string rangeField (array $parameters) Builds a HTML input[type=”range”] tag

Tag::radioField

public static string radioField (array $parameters) Builds a HTML input[type=”radio”] tag echo Phalcon\Tag::radioField(array("weather", "value" => "hot")) Volt syntax: {{ radio_field("Save") }}

Tag::prependTitle

public static prependTitle (mixed $title) Prepends a text to current document title

Tag::passwordField

public static string passwordField (array $parameters) Builds a HTML input[type=”password”] tag echo Phalcon\Tag::passwordField(array("name", "size" => 30));