Tag::colorField

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

Tag::checkField

public static string checkField (array $parameters) Builds a HTML input[type=”check”] tag echo Phalcon\Tag::checkField(array("terms", "value" => "Y")); Volt syntax: {{ check_field("terms") }}

Tag::appendTitle

public static appendTitle (mixed $title) Appends a text to current document title

Tag

Source on GitHub 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 stati

Storing data in Session

The session component provides object-oriented wrappers to access session data. Reasons to use this component instead of raw-sessions: You can easily isolate session data across applications on the same domain Intercept where session data is set/get in your application Change the session adapter according to the application needs Starting the Session Some applications are session-intensive, almost any action that performs requires access to session data. There are others who access session da

Session\Exception

extends class Phalcon\Exception implements Throwable Source on GitHub Methods final private Exception __clone () inherited from Exception Clone the exception public __construct ([string $message], [int $code], [Exception $previous]) inherited from Exception Exception constructor public __wakeup () inherited from Exception ... final public string getMessage () inherited from Exception Gets the Exception message final public int getCode () inherited from Exception Gets the Exception code fin

Session\BagInterface::__set

abstract public __set (mixed $property, mixed $value) ...

Session\BagInterface::__isset

abstract public __isset (mixed $property) ...

Session\BagInterface::__get

abstract public __get (mixed $property) ...

Session\BagInterface::set

abstract public set (mixed $property, mixed $value) ...