Mvc\Model\MetaData\Files

extends abstract class Phalcon\Mvc\Model\MetaData implements Phalcon\Mvc\Model\MetaDataInterface, Phalcon\Di\InjectionAwareInterface Source on GitHub Stores model meta-data in PHP files. $metaData = new \Phalcon\Mvc\Model\Metadata\Files(array( 'metaDataDir' => 'app/cache/metadata/' )); Constants integer MODELS_ATTRIBUTES integer MODELS_PRIMARY_KEY integer MODELS_NON_PRIMARY_KEY integer MODELS_NOT_NULL integer MODELS_DATA_TYPES integer MODELS_DATA_TYPES_NUMERIC integer MODE

Mvc\Micro\Collection::post

public Phalcon\Mvc\Micro\Collection post (string $routePattern, callable $handler, [string $name]) Maps a route to a handler that only matches if the HTTP method is POST

Forms\ElementInterface::getAttributes

abstract public getAttributes () ...

Mvc\Model\Relation::HAS_MANY

integer HAS_MANY

Mvc\Model\ManagerInterface::setModelSource

abstract public setModelSource (Phalcon\Mvc\ModelInterface $model, mixed $source) ...

Mvc\ModelInterface::getMessages

abstract public getMessages () ...

Db\Adapter::getSQLStatement

public getSQLStatement () Active SQL statement in the object

Mvc\View\Simple::partial

public partial (mixed $partialPath, [mixed $params]) Renders a partial view // Show a partial inside another view $this->partial('shared/footer'); // Show a partial inside another view with parameters $this->partial('shared/footer', ['content' => $html]);

Mvc\Model\ManagerInterface::getHasOneAndHasMany

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

Http\Request::isGet

public isGet () Checks whether HTTP method is GET. if _SERVER[“REQUEST_METHOD”]===”GET”