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";

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\Model\ResultInterface

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

Tag::getDocType

public static getDocType () Get the document type declaration of content

Validation\Validator\ExclusionIn

extends abstract class Phalcon\Validation\Validator implements Phalcon\Validation\ValidatorInterface Source on GitHub Check if a value is not included into a list of values use Phalcon\Validation\Validator\ExclusionIn; $validator->add('status', new ExclusionIn([ 'message' => 'The status must not be A or B', 'domain' => ['A', 'B'] ])); $validator->add(['status', 'type'], new ExclusionIn([ 'message' => [ 'status' => 'The status must not be A or B',

Assets\Filters\None

implements Phalcon\Assets\FilterInterface Source on GitHub Returns the content without make any modification to the original source Methods public filter (mixed $content) Returns the content without be touched

Mvc\View\Engine::getContent

public getContent () Returns cached output on another view stage

Application::getDefaultModule

public getDefaultModule () Returns the default module name

Di\InjectionAwareInterface::getDI

abstract public getDI () ...

ValidationInterface::getValidators

abstract public getValidators () ...