uawdijnntqw1x1x1
IP : 216.73.216.206
Hostname : webm007.cluster114.gra.hosting.ovh.net
Kernel : Linux webm007.cluster114.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
locationbo
/
www
/
libraries
/
smartslider3
/
src
/
.
/
Framework
/
.
/
Plugin.php
/
/
<?php namespace Nextend\Framework; class Plugin { private static $classes = array(); /** * @param $eventName * @param callable $callable */ public static function addAction($eventName, $callable) { if (!isset(self::$classes[$eventName])) self::$classes[$eventName] = array(); self::$classes[$eventName][] = $callable; } static function addFilter($eventName, $callable) { if (!isset(self::$classes[$eventName])) self::$classes[$eventName] = array(); self::$classes[$eventName][] = $callable; } public 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; } public 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); } } } } public static function hasAction($eventName) { if (isset(self::$classes[$eventName])) { return true; } return false; } }
/home/locationbo/www/libraries/smartslider3/src/./Framework/./Plugin.php