Events\ManagerInterface::detachAll

abstract public detachAll ([mixed $type]) ...

Events\ManagerInterface

Source on GitHub Methods abstract public attach (mixed $eventType, mixed $handler) ... abstract public detach (mixed $eventType, mixed $handler) ... abstract public detachAll ([mixed $type]) ... abstract public fire (mixed $eventType, mixed $source, [mixed $data]) ... abstract public getListeners (mixed $type) ...

Events\ManagerInterface::detach

abstract public detach (mixed $eventType, mixed $handler) ...

Exception

extends class Exception implements Throwable Source on GitHub Methods final private Exception __clone () inherited from Exception Clone the exception public __construct ([string $message], [int $code], [Exception $previous]) inherited from Exception Exception constructor public __wakeup () inherited from Exception ... final public string getMessage () inherited from Exception Gets the Exception message final public int getCode () inherited from Exception Gets the Exception code final publi

Events\ManagerInterface::attach

abstract public attach (mixed $eventType, mixed $handler) ...

Filter

implements Phalcon\FilterInterface Source on GitHub The Phalcon\Filter component provides a set of commonly needed data filters. It provides object oriented wrappers to the php filter extension. Also allows the developer to define his/her own filters $filter = new \Phalcon\Filter(); $filter->sanitize("some(one)@exa\\mple.com", "email"); // returns "[email protected]" $filter->sanitize("hello<<", "string"); // returns "hello" $filter->sanitize("!100a019", "int"); // returns "10001

Events\ManagerInterface::fire

abstract public fire (mixed $eventType, mixed $source, [mixed $data]) ...

Events\Manager::enablePriorities

public enablePriorities (mixed $enablePriorities) Set if priorities are enabled in the EventsManager

Events\Manager::isCollecting

public isCollecting () Check if the events manager is collecting all all the responses returned by every registered listener in a single fire

Events\Manager::getListeners

public array getListeners (string $type) Returns all the attached listeners of a certain type