Session\Adapter::get

public get (mixed $index, [mixed $defaultValue], [mixed $remove]) Gets a session variable from an application context $session->get('auth', 'yes');

Mvc\View::setMainView

public setMainView (mixed $viewPath) Sets default view name. Must be a file without extension in the views directory //Renders as main view views-dir/base.phtml $this->view->setMainView('base');

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") }}

Annotations\ReaderInterface::parseDocBlock

abstract public static parseDocBlock (mixed $docBlock, [mixed $file], [mixed $line]) ...

Acl\Adapter\Memory::addResourceAccess

public addResourceAccess (mixed $resourceName, array | string $accessList) Adds access to resources

Cli\Router::getActionName

public getActionName () Returns processed action name

Session\AdapterInterface::regenerateId

abstract public regenerateId ([mixed $deleteOldSession]) ...

Mvc\Model\MetaData\Apc

extends abstract class Phalcon\Mvc\Model\MetaData implements Phalcon\Mvc\Model\MetaDataInterface, Phalcon\Di\InjectionAwareInterface Source on GitHub Stores model meta-data in the APC cache. Data will erased if the web server is restarted By default meta-data is stored for 48 hours (172800 seconds) You can query the meta-data by printing apc_fetch(‘$PMM$’) or apc_fetch(‘$PMM$my-app-id’) $metaData = new \Phalcon\Mvc\Model\Metadata\Apc(array( 'prefix' => 'my-app-id', 'lifetime' => 8

Db\DialectInterface::describeColumns

abstract public describeColumns (mixed $table, [mixed $schema]) ...

Http\CookieInterface::setHttpOnly

abstract public setHttpOnly (mixed $httpOnly) ...