blob: cfc3ed6042d6038a4225eda59f7531be9238ef88 [file] [log] [blame]
<?php
/*******************************************************************************
* Copyright(c) 2016 Eclipse Foundation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Eric Poirier(Eclipse Foundation)
*******************************************************************************/
require_once("eclipseAds.class.php");
class DownloadsBannerAd extends EclipseAds {
public function __construct() {
parent::__construct($source);
$campaign = "PROMO_ECE2016_DOWNLOADS_PAGE";
if (date("Y/m/d") >= "2016/09/06" && date("Y/m/d") < "2016/09/20") {
$content['body'] ="Register now for EclipseCon Europe | October 25 - 27, 2016 | Ludwigsburg, Germany";
}
if (date("Y/m/d") >= "2016/09/20" && date("Y/m/d") < "2016/10/05") {
$content['body'] ="Register by October 4 to get the best price! EclipseCon Europe | October 25 - 27, 2016 | Ludwigsburg, Germany";
}
if (date("Y/m/d") >= "2016/10/11" && date("Y/m/d") < "2016/10/18") {
$content['body'] ="Two weeks left to register! EclipseCon Europe | October 25 - 27, 2016 | Ludwigsburg, Germany";
}
if (date("Y/m/d") >= "2016/10/18" && date("Y/m/d") < "2016/10/25") {
$content['body'] ="One week to go! EclipseCon Europe | October 25 - 27, 2016 | Ludwigsburg, Germany";
}
$content['button_text'] = "Register Now";
$content['button_url'] = $campaign;
// Create the ad
$Ad = new Ad();
$Ad->setTitle('Downloads banner ad');
$Ad->setCampaign($campaign);
$Ad->setFormat("html");
$Ad->setHtml('tpl/downloadsBannerAd.tpl.php', $content);
$Ad->setType('paid');
$Ad->setWeight('100');
$this->newAd($Ad);
}
/**
* Custom implementation of _build()
* @see EclipseAds::_build()
*
* @param $type - This variable determines help to determine which template file to use
*/
protected function _build($layout = "", $type = "") {
// Check if the ad should be printed depending on the date
if ((date("Y/m/d") >= "2016/09/06" && date("Y/m/d") < "2016/10/05") ||
(date("Y/m/d") >= "2016/10/11" && date("Y/m/d") < "2016/10/25")) {
$this->output = $this->ad->getHtml();
}
}
}