| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/Topogeo/ojs/plugins/generic/openAds/ |
Upload File : |
<?php
/**
* @file plugins/generic/openAds/Ad.inc.php
*
* Copyright (c) 2003-2009 Siavash Miri and Alec Smecher
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* @class Ad
* @ingroup plugins_generic_openAds
*
* @brief Abstract an OpenAds ad.
*/
// $Id: CounterPlugin.inc.php,v 1.0 2006/10/20 12:28pm
define('AD_TYPE_CONTENT', 1);
define('AD_TYPE_SIDEBAR', 2);
define('AD_TYPE_MASTHEAD', 3);
class Ad extends DataObject {
var $openAdsConnection;
/**
* Constructor
* @param $openAdsConnection object
*/
function Ad(&$openAdsConnection) {
$this->openAdsConnection =& $openAdsConnection;
}
/**
* Get the openAds ad ID for this ad.
* @return string
*/
function getAdId() {
return $this->getData('adId');
}
/**
* Set the openAds ad ID for this ad.
* @param $adId string
*/
function setAdId($adId) {
$this->setData('adId', $adId);
}
/**
* Get this ad's name.
* @return string
*/
function getName() {
return $this->getData('name');
}
/**
* Set this ad's name.
* @param $name string
*/
function setName($name) {
$this->setData('name', $name);
}
/**
* Using the openAds connection, get the include HTML for this ad.
* @return string
*/
function getHtml() {
return $this->openAdsConnection->getAdHtml($this->getAdId());
}
}
?>