uawdijnntqw1x1x1
IP : 216.73.216.186
Hostname : webd009.cluster130.gra.hosting.ovh.net
Kernel : Linux webd009.cluster130.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
pressec
/
www
/
ads--temp-pour-eviter-les-spams
/
lib
/
xajax
/
lib
/
..
/
..
/
OX
/
Extension.php
/
/
<?php /* +---------------------------------------------------------------------------+ | Revive Adserver | | http://www.revive-adserver.com | | | | Copyright: See the COPYRIGHT.txt file. | | License: GPLv2 or later, see the LICENSE.txt file. | +---------------------------------------------------------------------------+ */ class OX_Extension { var $aExtensions = array(); function __construct() { } /** * acquire the extensions event handling class if exists * execute the tasks * * @param string $event * @return boolean */ function runTasksForEvent($event) { $result = true; $this->aExtensions = array_unique($this->aExtensions); foreach ($this->aExtensions as $extension) { $path = LIB_PATH.'/Extension/'; $file = $extension.'.php'; if (file_exists($path.$file)) { $class = 'OX_Extension_'.$extension; require_once($path.$file); if (class_exists($class)) { $oExtension = new $class(); if (is_object($oExtension) && is_a($oExtension, $class)) { $method = 'runTasks'.$event; if (method_exists($oExtension, $method)) { $result = $oExtension->$method(); } } } } } return $result; } function setAllExtensions() { $this->aExtensions = $this->getAllExtensionsArray(); } /** * a list of all known plugins * compiled by scanning the plugins folder * * @return unknown */ function getAllExtensionsArray() { $aResult[] = 'admin'; $aConf = $GLOBALS['_MAX']['CONF']['pluginPaths']; $pkgPath = rtrim(MAX_PATH.$aConf['packages'],DIRECTORY_SEPARATOR); $dh = opendir(MAX_PATH.$aConf['plugins']); while (false !== ($file = readdir($dh))) { if ( (substr($file,0,1) != '.') && ($file != '..') && (rtrim(MAX_PATH.$aConf['plugins'].$file,DIRECTORY_SEPARATOR) != $pkgPath)) { $aResult[] = $file; } } closedir($dh); return $aResult; } } ?>
/home/pressec/www/ads--temp-pour-eviter-les-spams/lib/xajax/lib/../../OX/Extension.php