uawdijnntqw1x1x1
IP : 216.73.216.237
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
/
..
/
OA
/
Admin
/
Help.php
/
/
<?php /* +---------------------------------------------------------------------------+ | Revive Adserver | | http://www.revive-adserver.com | | | | Copyright: See the COPYRIGHT.txt file. | | License: GPLv2 or later, see the LICENSE.txt file. | +---------------------------------------------------------------------------+ */ /** * Defines type of link building */ define('OA_HELP_LINK_BUILD_USING_LINK', 1); define('OA_HELP_LINK_BUILD_USING_ID', 2); $GLOBALS['OA_HELP_LINK_BUILD_TYPE'] = OA_HELP_LINK_BUILD_USING_LINK; /** * A class for generating context sensitive help links to the documentation. * * @package OpenXAdmin */ class OA_Admin_Help { /** * Creates a link documentation help link for a given menu section. If * section has no help assigned or section is null link to main help is * returned. * * @param OA_Admin_Menu_Section $menuSection menu section to find help for * @return string url to documentation page */ function getHelpLink($menuSection) { if ($menuSection != null) { $relativeHelpPath = $menuSection->getHelpLink(); } else { $relativeHelpPath = ""; } // The link is not relative, we directly link to it if (strpos($relativeHelpPath, '://') !== false) { return $relativeHelpPath; } // Convert original help links to new Revive Adserver format if (strpos($relativeHelpPath, 'settings') !== false) { if (strpos($relativeHelpPath, '/') !== 0) { $relativeHelpPath = '/admin/' . $relativeHelpPath; } else { $relativeHelpPath = '/admin' . $relativeHelpPath; } } else { if (strpos($relativeHelpPath, '/') !== 0) { $relativeHelpPath = '/user/' . $relativeHelpPath; } else { $relativeHelpPath = '/user' . $relativeHelpPath; } } return OA_Admin_Help::buildHelpLink($relativeHelpPath); } /** * Creates a link documentation help link for a given relative path. * * @param String $relativeHelpPath help path appened after main doc path * @return string url to documentation page */ function buildHelpLink($relativeHelpPath) { // if empty the main help URL if (empty($relativeHelpPath)) { // Send the user to the main page $sURL = PRODUCT_DOCSURL; } else { // Send the user to the correct page $prefix = ""; if (strpos($relativeHelpPath, '/') !== 0) { $prefix = "/"; } $sURL = PRODUCT_DOCSURL . $prefix .$relativeHelpPath; } return $sURL; } } ?>
/home/pressec/www/ads--temp-pour-eviter-les-spams/lib/xajax/lib/../../xajax/../OA/Admin/Help.php