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
/
..
/
..
/
xmlrpc
/
php
/
ZoneInfo.php
/
/
<?php /* +---------------------------------------------------------------------------+ | Revive Adserver | | http://www.revive-adserver.com | | | | Copyright: See the COPYRIGHT.txt file. | | License: GPLv2 or later, see the LICENSE.txt file. | +---------------------------------------------------------------------------+ */ /** * @package OpenXDll * * This files describes the ZoneInfo class. */ // Include base info class. require_once 'Info.php'; /** * The ZoneInfo class extends the base Info class and contains information about the zone. * */ class OA_Dll_ZoneInfo extends OA_Info { /** * The zoneId variable is the unique ID for the zone. * * @var integer $zoneId */ var $zoneId; /** * The publisherID is the ID of the publisher associated with the zone. * * @var integer $publisherId */ var $publisherId; /** * The zoneName is the name of the zone. * * @var string $zoneName */ var $zoneName; /** * The type variable type of zone, one of the following: banner, interstitial, popup, text, email. * * @var integer $type */ var $type; /** * The width variable is the width of the zone. * * @var integer $width */ var $width; /** * The height variable is the height of the zone. * * @var integer $height */ var $height; /** * Frequency capping: total views per user. * * @var integer $capping */ var $capping; /** * Frequency capping: total views per period. * (defined in seconds by "block"). * * @var integer $sessionCapping */ var $sessionCapping; /** * Frequency capping: reset period, in seconds. * * @var integer $block */ var $block; /** * This field provides any additional comments to be stored. * * @var string $comments */ var $comments; /** * The appended code for this zone. * * @var string $append */ var $append; /** * The prepended code of the zone. * * @var string $prepend */ var $prepend; /** * The chained zone of the current zone. * * @var int $chainedZoneId */ var $chainedZoneId; /** * This method sets all default values when adding a new zone. * * @access public * */ function setDefaultForAdd() { if (is_null($this->type)) { $this->type = 0; } if (is_null($this->width)) { $this->width = 0; } if (is_null($this->height)) { $this->height = 0; } if (is_null($this->capping)) { // Leave null } if (is_null($this->sessionCapping)) { // Leave null } if (is_null($this->block)) { // Leave null } if (is_null($this->chainedZoneId)) { // Leave null } } /** * This method returns an array of fields with their corresponding types. * * @access public * * @return array */ function getFieldsTypes() { return array( 'zoneId' => 'integer', 'publisherId' => 'integer', 'zoneName' => 'string', 'type' => 'integer', 'width' => 'integer', 'height' => 'integer', 'capping' => 'integer', 'sessionCapping' => 'integer', 'block' => 'integer', 'comments' => 'string', 'append' => 'string', 'prepend' => 'string', 'chainedZoneId' => 'integer', ); } } ?>
/home/pressec/www/ads--temp-pour-eviter-les-spams/lib/xajax/lib/../../xmlrpc/php/ZoneInfo.php