Mvc\Model\Resultset\Complex::TYPE_RESULT_PARTIAL

integer TYPE_RESULT_PARTIAL

CryptInterface::getAvailableCiphers

abstract public getAvailableCiphers () ...

Db\Dialect\Postgresql::listViews

public string listViews ([string $schemaName]) Generates the SQL to list all views of a schema or user

Paginator\Adapter\NativeArray

extends abstract class Phalcon\Paginator\Adapter implements Phalcon\Paginator\AdapterInterface Source on GitHub Pagination using a PHP array as source of data use Phalcon\Paginator\Adapter\NativeArray; $paginator = new NativeArray( [ 'data' => array( ['id' => 1, 'name' => 'Artichoke'], ['id' => 2, 'name' => 'Carrots'], ['id' => 3, 'name' => 'Beet'], ['id' => 4, 'name' => 'Lettuce'], ['id

Mvc\Model::maximum

public static mixed maximum ([array $parameters]) Allows to get the maximum value of a column that match the specified conditions //What is the maximum robot id? $id = Robots::maximum(array('column' => 'id')); echo "The maximum robot id is: ", $id, "\n"; //What is the maximum id of mechanical robots? $sum = Robots::maximum(array("type='mechanical'", 'column' => 'id')); echo "The maximum robot id of mechanical robots is ", $id, "\n";

Mvc\Model::hasSnapshotData

public hasSnapshotData () Checks if the object has internal snapshot data

Mvc\Model\MetaData\Strategy\Introspection::getMetaData

final public getMetaData (Phalcon\Mvc\ModelInterface $model, Phalcon\DiInterface $dependencyInjector) The meta-data is obtained by reading the column descriptions from the database information schema

Acl\AdapterInterface

Source on GitHub Methods abstract public setDefaultAction (mixed $defaultAccess) ... abstract public getDefaultAction () ... abstract public setNoArgumentsDefaultAction (mixed $defaultAccess) ... abstract public getNoArgumentsDefaultAction () ... abstract public addRole (mixed $role, [mixed $accessInherits]) ... abstract public addInherit (mixed $roleName, mixed $roleToInherit) ... abstract public isRole (mixed $roleName) ... abstract public isResource (mixed $resourceName) ... abstract public

Mvc\Micro\Collection

implements Phalcon\Mvc\Micro\CollectionInterface Source on GitHub Groups Micro-Mvc handlers as controllers $app = new \Phalcon\Mvc\Micro(); $collection = new Collection(); $collection->setHandler(new PostsController()); $collection->get('/posts/edit/{id}', 'edit'); $app->mount($collection); Methods protected _addMap (string | array $method, string $routePattern, mixed $handler, string $name) Internal function to add a handler to the group public setPrefix (mixed $prefix) Sets

Mvc\Model\ResultInterface

Source on GitHub Methods abstract public setDirtyState (mixed $dirtyState) ...