| Current Path : /home/antonen/poznajlitwe.lt/libraries/nextend2/nextend/library/libraries/plugin/ |
| Current File : //home/antonen/poznajlitwe.lt/libraries/nextend2/nextend/library/libraries/plugin/pluggable.php |
<?php
class N2Pluggable {
static $classes = array();
static function addAction($eventName, $callable) {
if (!isset(self::$classes[$eventName])) self::$classes[$eventName] = array();
self::$classes[$eventName][] = $callable;
}
static function applyFilters($eventName, $value, $args = array()) {
if (self::hasAction($eventName)) {
foreach (self::$classes[$eventName] AS $callable) {
if (is_callable($callable)) {
$value = call_user_func_array($callable, array_merge(array($value), $args));
}
}
}
return $value;
}
static function doAction($eventName, $args = array()) {
if (self::hasAction($eventName)) {
foreach (self::$classes[$eventName] AS $callable) {
if (is_callable($callable)) {
call_user_func_array($callable, $args);
}
}
}
}
static function hasAction($eventName) {
if (isset(self::$classes[$eventName])) {
return true;
}
return false;
}
}