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
/
OA
/
.
/
Dll
/
ChannelInfo.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 file describes the ChannelInfo class. * */ // Require the base info class. require_once MAX_PATH . '/lib/OA/Info.php'; /** * The channelInfo class extends the base Info class and contains information about the channel. * */ class OA_Dll_ChannelInfo extends OA_Info { /** * The channelID variable is the unique ID for the channel. * * @var integer $channelId */ var $channelId; /** * This field contains the ID of the agency account. * * @var integer $agencyId */ var $agencyId; /** * This field contains the ID of the publisher. * * @var integer $websiteId */ var $websiteId; /** * The channelName variable is the name of the channel. * * @var string $channelName */ var $channelName; /** * The description variable is the description for the channel. * * @var string $description */ var $description; /** * The comments variable is the comment for the channel. * * @var string $comments */ var $comments; /** * This method sets all default values when adding a new channel. * */ function setDefaultForAdd() { if (empty($this->agencyId)) { $this->agencyId = OA_Permission::getAgencyId(); } if (empty($this->websiteId)) { // Set it to 'global' $this->websiteId = 0; } } function getFieldsTypes() { return array( 'channelId' => 'integer', 'agencyId' => 'integer', 'websiteId' => 'integer', 'channelName' => 'string', 'description' => 'string', 'comments' => 'string', ); } }
/home/pressec/www/ads--temp-pour-eviter-les-spams/lib/OA/./Dll/ChannelInfo.php