Version::VERSION_MEDIUM

integer VERSION_MEDIUM

Mvc\CollectionInterface::fireEventCancel

abstract public fireEventCancel (mixed $eventName) ...

Annotations\Reader::parseDocBlock

public static parseDocBlock (mixed $docBlock, [mixed $file], [mixed $line]) Parses a raw doc block returning the annotations found

Http\Response\Headers::toArray

public toArray () Returns the current headers as an array

Mvc\Model\MetaDataInterface::getNotNullAttributes

abstract public getNotNullAttributes (Phalcon\Mvc\ModelInterface $model) ...

Tag::imageInput

public static string imageInput (array $parameters) Builds a HTML input[type=”image”] tag echo Phalcon\Tag::imageInput(array("src" => "/img/button.png")); Volt syntax: {{ image_input("src": "/img/button.png") }}

Version::getPart

public static getPart (mixed $part) Returns a specific part of the version. If the wrong parameter is passed it will return the full version echo Phalcon\Version::getPart(Phalcon\Version::VERSION_MAJOR);

Http\Response::redirect

public redirect ([mixed $location], [mixed $externalRedirect], [mixed $statusCode]) Redirect by HTTP to another action or URL //Using a string redirect (internal/external) $response->redirect("posts/index"); $response->redirect("http://en.wikipedia.org", true); $response->redirect("http://www.example.com/new-location", true, 301); //Making a redirection based on a named route $response->redirect(array( "for" => "index-lang", "lang" => "jp", "controller" => "ind

Db\Adapter\Pdo::query

public query (mixed $sqlStatement, [mixed $bindParams], [mixed $bindTypes]) Sends SQL statements to the database server returning the success state. Use this method only when the SQL statement sent to the server is returning rows //Querying data $resultset = $connection->query("SELECT * FROM robots WHERE type='mechanical'"); $resultset = $connection->query("SELECT * FROM robots WHERE type=?", array("mechanical"));

Mvc\Model\MetaDataInterface::getIdentityField

abstract public getIdentityField (Phalcon\Mvc\ModelInterface $model) ...