Class **Phalcon\\Tag** ====================== Phalcon\\Tag is designed to simplify building of HTML tags. It provides a set of helpers to generate HTML in a dynamic way. This component is an abstract class that you can extend to add more helpers. Constants --------- *integer* **HTML32** *integer* **HTML401_STRICT** *integer* **HTML401_TRANSITIONAL** *integer* **HTML401_FRAMESET** *integer* **HTML5** *integer* **XHTML10_STRICT** *integer* **XHTML10_TRANSITIONAL** *integer* **XHTML10_FRAMESET** *integer* **XHTML11** *integer* **XHTML20** *integer* **XHTML5** Methods --------- public static **setDI** (*unknown* $dependencyInjector) Sets the dependency injector container. public static :doc:`Phalcon\\DiInterface ` **getDI** () Internally gets the request dispatcher public static :doc:`Phalcon\\Mvc\\UrlInterface ` **getUrlService** () Return a URL service from the DI public static :doc:`Phalcon\\Mvc\\DispatcherInterface ` **getDispatcherService** () Returns a Dispatcher service from the DI public static **setDefault** (*string* $id, *string* $value) Assigns default values to generated tags by helpers .. code-block:: php 30)) public static *string* **passwordField** (*array* $parameters) Builds a HTML input[type="password"] tag .. code-block:: php 30)) public static *string* **hiddenField** (*array* $parameters) Builds a HTML input[type="hidden"] tag .. code-block:: php "mike")) public static *string* **fileField** (*array* $parameters) Builds a HTML input[type="file"] tag .. code-block:: php 30)) public static *string* **radioField** (*array* $parameters) Builds a HTML input[type="radio"] tag .. code-block:: php 30)) public static *string* **submitButton** (*unknown* $parameters) Builds a HTML input[type="submit"] tag .. code-block:: php "Active", "I" => "Inactive")) public static *string* **select** (*unknown* $parameters, *unknown* $data) Builds a HTML SELECT tag using a Phalcon_Model resultset as options .. code-block:: php array("id", "name") )); public static *string* **textArea** (*array* $parameters) Builds a HTML TEXTAREA tag .. code-block:: php 10, "rows" => 4)) public static *string* **form** (*array* $parameters) Builds a HTML FORM tag .. code-block:: php "post")); Volt syntax: .. code-block:: php