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
/
..
/
xajax_js
/
..
/
..
/
OX.php
/
/
<?php /* +---------------------------------------------------------------------------+ | Revive Adserver | | http://www.revive-adserver.com | | | | Copyright: See the COPYRIGHT.txt file. | | License: GPLv2 or later, see the LICENSE.txt file. | +---------------------------------------------------------------------------+ */ require_once OX_PATH . '/lib/pear/Log.php'; require_once OX_PATH . '/lib/pear/PEAR.php'; /** * The core OpenX class, providing handy methods that are useful everywhere! * * @package OpenX */ class OX { /** * A method to construct URLs for static assets, such as images, CSS and * JavaScript files, based on OpenX installation and configuration details. * * @param string $asset An optional relative path to the asset. * @return string The URL to the asset. If asset was not provided, * the path does not contain a trailing slash. */ function assetPath($asset = null) { global $installing; $aConf = $GLOBALS['_MAX']['CONF']; $assetsVersion = $aConf['webpath']['adminAssetsVersion']; $prefix = $installing ? '' : MAX::constructURL(MAX_URL_ADMIN, ''); $pathWithSuffix = $prefix . "assets"; if (strlen($assetsVersion)) { $pathWithSuffix .= "/" . $assetsVersion; } if ($asset != null) { return $pathWithSuffix . "/" . $asset; } else { return $pathWithSuffix; } } /** * Similar to PHP's realpath(), but works on absolute paths. Cross platform * friendly, and does not add a trailing / * * @param string $path */ function realPathRelative($path) { $path = str_replace(array('/', '\\'), DIRECTORY_SEPARATOR, $path); $parts = array_filter(explode(DIRECTORY_SEPARATOR, $path), 'strlen'); $absolutes = array(); foreach ($parts as $part) { if ('.' == $part) continue; if ('..' == $part) { array_pop($absolutes); } else { $absolutes[] = $part; } } return implode(DIRECTORY_SEPARATOR, $absolutes); } } ?>
/home/pressec/www/ads--temp-pour-eviter-les-spams/lib/xajax/lib/../xajax_js/../../OX.php