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
/
Zend
/
..
/
OA
/
DB
/
Table
/
Statistics.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 MAX_PATH . '/lib/OA/DB/Table.php'; /** * A class for creating the temporary OpenX database tables required * for performing the Maintenance Statistics Engine (MSE) tasks. * * @package OpenXDB * @subpackage Table */ class OA_DB_Table_Statistics extends OA_DB_Table { /** * The class constructor method. */ function __construct() { parent::__construct(); $this->temporary = true; } /** * A singleton method to create or return a single instance * of the {@link OA_DB_Table_Statistics} object. * * @static * @return OA_DB_Table_Statistics The created {@link OA_DB_Table_Statistics} object. */ function &singleton() { $static =& $GLOBALS['_OA']['TABLES'][__CLASS__]; if (!isset($static)) { $static = new OA_DB_Table_Statistics(); // Don't use a reference here! $static->init(MAX_PATH . '/etc/tables_temp_statistics.xml'); } return $static; } /** * A method to destroy the singleton(s), so it (they) will * be re-created later if required. * * @static */ function destroy() { if (isset($GLOBALS['_OA']['TABLES'][__CLASS__])) { unset($GLOBALS['_OA']['TABLES'][__CLASS__]); } } } ?>
/home/pressec/www/ads--temp-pour-eviter-les-spams/lib/Zend/../OA/DB/Table/Statistics.php