setTitle('EMPTY'); $Ad->setBody("EMPTY"); $Ad->setImage("EMPTY"); $Ad->setCampaign('EMPTY'); $Ad->setUrl("https://"); $Ad->setWeight(80); $Ad->setType('empty'); $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 = "", $impression_id = "") { ob_start(); // Layout A is default $tpl = "views/view.promotedDownloads.layout-a.tpl.php"; // if Layout B is specified if ($layout == 'layout_b'){ $tpl = "views/view.promotedDownloads.layout-b.tpl.php"; } include($tpl); $this->output = ob_get_clean(); } }