本文整理汇总了PHP中phpAds_ShowSections函数的典型用法代码示例。如果您正苦于以下问题:PHP phpAds_ShowSections函数的具体用法?PHP phpAds_ShowSections怎么用?PHP phpAds_ShowSections使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了phpAds_ShowSections函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: OA_headerNavigation
function OA_headerNavigation()
{
$oHeaderModel = buildAdvertiserHeaderModel($GLOBALS['clientid']);
if (OA_Permission::isAccount(OA_ACCOUNT_MANAGER)) {
phpAds_PageHeader("advertiser-access", $oHeaderModel);
phpAds_ShowSections(array("4.1.2", "4.1.3", "4.1.5", "4.1.5.2"));
} else {
$sections = array();
if (OA_Permission::hasPermission(OA_PERM_BANNER_ACTIVATE) || OA_Permission::hasPermission(OA_PERM_BANNER_EDIT)) {
$sections[] = '2.2';
}
$sections[] = '2.3';
$sections[] = '2.3.2';
phpAds_PageHeader('advertiser-access', $oHeaderModel);
phpAds_ShowSections($sections);
}
}
示例2: MAX_displayWebsiteBreadcrumbs
$oHeaderModel = MAX_displayWebsiteBreadcrumbs($affiliateid);
if (OA_Permission::isAccount(OA_ACCOUNT_MANAGER)) {
// Get other affiliates
$doAffiliates = OA_Dal::factoryDO('affiliates');
$doAffiliates->addSessionListOrderBy('affiliate-zones.php');
$doAffiliates->agencyid = $agencyid;
$doAffiliates->find();
while ($doAffiliates->fetch() && ($row = $doAffiliates->toArray())) {
phpAds_PageContext(MAX_buildName($row['affiliateid'], $row['name']), "affiliate-invocation.php?affiliateid=" . $row['affiliateid'], $affiliateid == $row['affiliateid']);
}
addWebsitePageTools($affiliateid);
phpAds_PageHeader("4.2.5", $oHeaderModel);
} else {
$sections = array();
$sections[] = "2.1";
if (OA_Permission::hasPermission(OA_PERM_ZONE_INVOCATION)) {
$sections[] = "2.2";
}
phpAds_PageHeader('2.2', $oHeaderModel);
phpAds_ShowSections($sections);
}
/*-------------------------------------------------------*/
/* Main code */
/*-------------------------------------------------------*/
require_once MAX_PATH . '/lib/max/Admin/Invocation/Publisher.php';
$maxInvocation = new MAX_Admin_Invocation_Publisher();
$maxInvocation->placeInvocationForm();
/*-------------------------------------------------------*/
/* HTML framework */
/*-------------------------------------------------------*/
phpAds_PageFooter();
示例3: phpAds_dbQuery
$res = phpAds_dbQuery($query) or phpAds_sqlDie();
while ($row = phpAds_dbFetchArray($res)) {
$extra .= "\t\t\t\t\t<option value='" . $row['clientid'] . "'>" . phpAds_buildName($row['clientid'], $row['clientname']) . "</option>\n";
}
$extra .= "\t\t\t\t</select> \n";
$extra .= "\t\t\t\t<input type='image' src='images/" . $phpAds_TextDirection . "/go_blue.gif'><br>\n";
$extra .= "\t\t\t\t<img src='images/break.gif' height='1' width='160' vspace='4'><br>\n";
$extra .= "\t\t\t\t<img src='images/icon-recycle.gif' align='absmiddle'>\n";
$extra .= "\t\t\t\t<a href='tracker-delete.php?clientid={$clientid}&trackerid={$trackerid}&returnurl=advertiser-trackers.php'" . phpAds_DelConfirm($strConfirmDeleteTracker) . ">{$strDelete}</a><br>\n";
$extra .= "\t\t\t\t</form>\n";
phpAds_PageHeader("4.1.4.3", $extra);
echo "\t\t\t\t<img src='images/icon-advertiser.gif' align='absmiddle'> " . phpAds_getClientName($clientid) . "\n";
echo "\t\t\t\t<img src='images/" . $phpAds_TextDirection . "/caret-rs.gif'>\n";
echo "\t\t\t\t<img src='images/icon-tracker.gif' align='absmiddle'>\n";
echo "\t\t\t\t<b>" . phpAds_getTrackerName($trackerid) . "</b><br><br><br>\n";
phpAds_ShowSections(array("4.1.4.2", "4.1.4.3", "4.1.4.5", "4.1.4.4"));
}
if (isset($trackerid) && $trackerid != '') {
$res = phpAds_dbQuery("SELECT *" . " FROM " . $phpAds_config['tbl_trackers'] . " WHERE trackerid=" . $trackerid) or phpAds_sqlDie();
if (phpAds_dbNumRows($res)) {
$tracker = phpAds_dbFetchArray($res);
}
}
$tabindex = 1;
// Header
echo "\t\t\t\t<table width='100%' border='0' align='center' cellspacing='0' cellpadding='0'>\n";
echo "\t\t\t\t<tr height='25'>\n";
echo "\t\t\t\t\t<td height='25' width='40%'>\n";
echo "\t\t\t\t\t\t<b> <a href='tracker-campaigns.php?clientid=" . $clientid . "&trackerid=" . $trackerid . "&listorder=name'>" . $GLOBALS['strName'] . "</a>";
if ($listorder == "name" || $listorder == "") {
if ($orderdirection == "" || $orderdirection == "down") {
示例4: phpAds_SettingsWriteFlush
}
if (!count($errormessage)) {
phpAds_SettingsWriteFlush();
header("Location: settings-host.php");
exit;
}
}
/*********************************************************/
/* HTML framework */
/*********************************************************/
phpAds_PrepareHelp();
phpAds_PageHeader("5.1");
if (phpAds_isUser(phpAds_Admin)) {
phpAds_ShowSections(array("5.1", "5.3", "5.4", "5.2", "5.5"));
} elseif (phpAds_isUser(phpAds_Agency)) {
phpAds_ShowSections(array("5.1"));
}
phpAds_SettingsSelection("invocation");
/*********************************************************/
/* Cache settings fields and get help HTML Code */
/*********************************************************/
// Determine delivery cache methods
$delivery_cache_methods['none'] = $strNone;
$delivery_cache_methods['db'] = $strCacheDatabase;
if ($fp = @fopen(phpAds_path . '/cache/available', 'wb')) {
@fclose($fp);
@unlink(phpAds_path . '/cache/available');
$delivery_cache_methods['file'] = $strCacheFiles;
}
if (function_exists('shmop_open')) {
$delivery_cache_methods['shm'] = $strCacheShmop . " (" . $strExperimental . ")";
示例5: phpAds_registerGlobalUnslashed
require_once '../../init.php';
// Required files
require_once MAX_PATH . '/www/admin/config.php';
// Register input variables
// TODO: This variable has been added to demonstrate that clicking on
// links from error messages could bring the already entered e-mail address
// to the new form. Feel free to keep it or remove, depending on the
// implementation strategy.
phpAds_registerGlobalUnslashed('email');
/*-------------------------------------------------------*/
/* HTML framework */
/*-------------------------------------------------------*/
phpAds_PageHeader("4.1.3.4.7.2");
// TODO: The path here should probably start with the advertiser's data
// Not sure if we need to include the campaign and banner in the path though.
// We'll need to clarify this with the Product team.
echo "<img src='" . OX::assetPath() . "/images/icon-affiliate.gif' align='absmiddle'> <b>Create AdSense Account</b><br /><br /><br />";
phpAds_ShowSections(array("4.1.3.4.7.2"));
/*-------------------------------------------------------*/
/* Main code */
/*-------------------------------------------------------*/
require_once MAX_PATH . '/lib/OA/Admin/Template.php';
$oTpl = new OA_Admin_Template('adsense-create.html');
$oTpl->assign('fields', array(array('title' => 'Email address for AdSense Account', 'fields' => array(array('name' => 'email', 'label' => 'Email', 'value' => '', 'id' => 'adsenseemail', 'title' => 'Provide valid email', 'clientValid' => 'required:true,email:true'))), array('title' => 'Name for the AdSense Account in Openads', 'fields' => array(array('name' => 'name', 'label' => 'Name for the AdSense Account in Openads', 'value' => '', 'id' => 'accountname', 'title' => 'Provide name in Openads', 'clientValid' => 'required:true')))));
//var_dump($oTpl);
//die();
$oTpl->display();
/*-------------------------------------------------------*/
/* HTML framework */
/*-------------------------------------------------------*/
phpAds_PageFooter();
示例6: phpAds_registerGlobal
require_once '../../init.php';
// Required files
require_once MAX_PATH . '/www/admin/lib-maintenance-priority.inc.php';
require_once MAX_PATH . '/lib/OA/Dal.php';
require_once MAX_PATH . '/www/admin/config.php';
require_once MAX_PATH . '/www/admin/lib-statistics.inc.php';
// Register input variables
phpAds_registerGlobal('expand', 'collapse', 'hideinactive', 'listorder', 'orderdirection');
// Security check
OA_Permission::enforceAccount(OA_ACCOUNT_ADMIN);
/*-------------------------------------------------------*/
/* HTML framework */
/*-------------------------------------------------------*/
addPageTools();
phpAds_PageHeader("4.1");
phpAds_ShowSections(array("4.1", "4.3", "4.4"));
/*-------------------------------------------------------*/
/* Get preferences */
/*-------------------------------------------------------*/
if (!isset($hideinactive)) {
if (isset($session['prefs']['agency-index.php']['hideinactive'])) {
$hideinactive = $session['prefs']['agency-index.php']['hideinactive'];
} else {
$pref =& $GLOBALS['_MAX']['PREF'];
$hideinactive = $pref['ui_hide_inactive'] == true;
}
}
if (!isset($listorder)) {
if (isset($session['prefs']['agency-index.php']['listorder'])) {
$listorder = $session['prefs']['agency-index.php']['listorder'];
} else {
示例7: OA_headerUserNavigation
function OA_headerUserNavigation()
{
phpAds_PageHeader("4.4.2");
phpAds_ShowSections(array("4.1", "4.3", "4.4", "4.4.2"));
}
示例8: phpAds_dbQuery
}
$res = phpAds_dbQuery($query) or phpAds_sqlDie();
while ($row = phpAds_dbFetchArray($res)) {
$extra .= "\t\t\t\t\t<option value='" . $row['clientid'] . "'>" . phpAds_buildName($row['clientid'], $row['clientname']) . "</option>\n";
}
$extra .= "\t\t\t\t</select> \n";
$extra .= "\t\t\t\t<input type='image' src='images/" . $phpAds_TextDirection . "/go_blue.gif'><br>\n";
$extra .= "\t\t\t\t<img src='images/break.gif' height='1' width='160' vspace='4'><br>\n";
$extra .= "\t\t\t\t<img src='images/icon-recycle.gif' align='absmiddle'>\n";
$extra .= "\t\t\t\t<a href='campaign-delete.php?clientid={$clientid}&campaignid={$campaignid}&returnurl=advertiser-campaigns.php'" . phpAds_DelConfirm($strConfirmDeleteTracker) . ">{$strDelete}</a><br>\n";
$extra .= "\t\t\t\t</form>\n";
phpAds_PageHeader("4.1.3.5", $extra);
echo "<img src='images/icon-advertiser.gif' align='absmiddle'> " . phpAds_getParentClientName($campaignid);
echo " <img src='images/" . $phpAds_TextDirection . "/caret-rs.gif'> ";
echo "<img src='images/icon-campaign.gif' align='absmiddle'> <b>" . phpAds_getCampaignName($campaignid) . "</b><br><br><br>";
phpAds_ShowSections(array("4.1.3.2", "4.1.3.3", "4.1.3.4", "4.1.3.5"));
}
if (isset($campaignid) && $campaignid != '') {
$res = phpAds_dbQuery("SELECT *" . " FROM " . $phpAds_config['tbl_campaigns'] . " WHERE campaignid=" . $campaignid) or phpAds_sqlDie();
if (phpAds_dbNumRows($res)) {
$campaign = phpAds_dbFetchArray($res);
}
}
$tabindex = 1;
// Header
echo "\t\t\t\t<table width='100%' border='0' align='center' cellspacing='0' cellpadding='0'>\n";
echo "\t\t\t\t<tr height='25'>\n";
echo "\t\t\t\t\t<td height='25' width='40%'>\n";
echo "\t\t\t\t\t\t<b> <a href='campaign-trackers.php?clientid=" . $clientid . "&campaignid=" . $campaignid . "&listorder=name'>" . $GLOBALS['strName'] . "</a>";
if ($listorder == "name" || $listorder == "") {
if ($orderdirection == "" || $orderdirection == "down") {
示例9: phpAds_DelConfirm
$period = '';
}
$tabindex = 1;
/*********************************************************/
/* HTML framework */
/*********************************************************/
if (phpAds_isUser(phpAds_Admin)) {
$extra = "<br><br><br>";
$extra .= "<b>{$strMaintenance}</b><br>";
$extra .= "<img src='images/break.gif' height='1' width='160' vspace='4'><br>";
$extra .= "<a href='stats-reset.php?all=true'" . phpAds_DelConfirm($strConfirmResetStats) . ">";
$extra .= "<img src='images/" . $phpAds_TextDirection . "/icon-undo.gif' align='absmiddle' border='0'> {$strResetStats}</a>";
$extra .= "<br><br>";
}
phpAds_PageHeader("2.1", $extra);
phpAds_ShowSections(array("2.1", "2.4", "2.2", "2.5"));
/*********************************************************/
/* Get preferences */
/*********************************************************/
if (!isset($hideinactive)) {
if (isset($Session['prefs']['stats-global-advertiser.php']['hideinactive'])) {
$hideinactive = $Session['prefs']['stats-global-advertiser.php']['hideinactive'];
} else {
$hideinactive = $phpAds_config['gui_hide_inactive'] == 't';
}
}
if (!isset($listorder)) {
if (isset($Session['prefs']['stats-global-advertiser.php']['listorder'])) {
$listorder = $Session['prefs']['stats-global-advertiser.php']['listorder'];
} else {
$listorder = '';
示例10: MAX_displayNavigationZone
function MAX_displayNavigationZone($pageName, $aOtherPublishers, $aOtherZones, $aEntities)
{
global $phpAds_TextDirection;
$websiteId = $aEntities['affiliateid'];
$zoneId = $aEntities['zoneid'];
$entityString = _getEntityString($aEntities);
$aOtherEntities = $aEntities;
unset($aOtherEntities['zoneid']);
$otherEntityString = _getEntityString($aOtherEntities);
$aPublisher = $aOtherPublishers[$websiteId];
$publisherName = MAX_buildName($websiteId, $aPublisher['name']);
$zoneName = empty($zoneId) ? $GLOBALS['strUntitled'] : MAX_buildName($zoneId, $aOtherZones[$zoneId]['name']);
if (OA_Permission::isAccount(OA_ACCOUNT_ADMIN) || OA_Permission::isAccount(OA_ACCOUNT_MANAGER)) {
$tabSections = array('4.2.3.2', '4.2.3.6', '4.2.3.3', '4.2.3.4', '4.2.3.5');
// Determine which tab is highlighted
switch ($pageName) {
case 'zone-edit.php':
if (empty($zoneId)) {
$tabValue = 'zone-edit_new';
} else {
$tabValue = 'zone-edit';
}
break;
default:
$tabSections = basename($pageName);
break;
}
} elseif (OA_Permission::isAccount(OA_ACCOUNT_TRAFFICKER)) {
$tabSections = array();
if (OA_Permission::hasPermission(OA_PERM_ZONE_EDIT)) {
$tabSections[] = '2.1.1';
}
if (OA_Permission::hasPermission(OA_PERM_ZONE_LINK)) {
$tabSections[] = '2.1.2';
}
$tabSections[] = '2.1.3';
if (OA_Permission::hasPermission(OA_PERM_ZONE_INVOCATION)) {
$tabSections[] = '2.1.4';
}
switch ($pageName) {
case 'zone-edit.php':
$tabValue = 'zone-edit';
if (empty($zoneId)) {
$tabValue = 'zone-edit_new';
}
break;
case 'zone-include.php':
$tabValue = '2.1.2';
break;
case 'zone-probability.php':
$tabValue = '2.1.3';
break;
case 'zone-invocation.php':
$tabValue = '2.1.4';
break;
}
}
// Sort the zones by name...
require_once MAX_PATH . '/lib/max/other/stats.php';
$publisherEditUrl = "affiliate-edit.php?affiliateid={$websiteId}";
if (!OA_Permission::isAccount(OA_ACCOUNT_ADMIN, OA_ACCOUNT_MANAGER)) {
$publisherEditUrl = "affiliate-zones.php?affiliateid={$websiteId}";
}
$builder = new OA_Admin_UI_Model_InventoryPageHeaderModelBuilder();
$oHeaderModel = $builder->buildEntityHeader(array(array("name" => $publisherName, "url" => $publisherEditUrl), array("name" => empty($zoneId) ? '' : $zoneName)), "zone", empty($zoneId));
if (!empty($zoneId)) {
addZonePageTools($websiteId, $zoneId, $aOtherPublishers, $aEntities);
}
phpAds_PageHeader($tabValue, $oHeaderModel);
phpAds_ShowSections($tabSections);
}
示例11: phpAds_PageShortcut
phpAds_PageShortcut($strBannerHistory, 'stats-banner-history.php?clientid=' . $clientid . '&campaignid=' . $campaignid . '&bannerid=' . $bannerid, 'images/icon-statistics.gif');
phpAds_PageHeader("4.1.3.4.5");
echo "<img src='images/icon-client.gif' align='absmiddle'> " . phpAds_getParentName($campaignid);
echo " <img src='images/" . $phpAds_TextDirection . "/caret-rs.gif'> ";
echo "<img src='images/icon-campaign.gif' align='absmiddle'> " . phpAds_getClientName($campaignid);
echo " <img src='images/" . $phpAds_TextDirection . "/caret-rs.gif'> ";
echo "<img src='images/icon-banner-stored.gif' align='absmiddle'> <b>" . phpAds_getBannerName($bannerid) . "</b><br><br>";
echo phpAds_buildBannerCode($bannerid) . "<br><br><br><br>";
phpAds_ShowSections(array("4.1.3.4.5"));
} else {
phpAds_PageHeader("1.2.2.3");
echo "<img src='images/icon-campaign.gif' align='absmiddle'> " . phpAds_getClientName($campaignid);
echo " <img src='images/" . $phpAds_TextDirection . "/caret-rs.gif'> ";
echo "<img src='images/icon-banner-stored.gif' align='absmiddle'> <b>" . phpAds_getBannerName($bannerid) . "</b><br><br>";
echo phpAds_buildBannerCode($bannerid) . "<br><br><br><br>";
phpAds_ShowSections(array("1.2.2.3"));
}
$res = phpAds_dbQuery("\n\t\tSELECT\n\t\t\t*\n\t\tFROM\n\t\t\t" . $phpAds_config['tbl_banners'] . "\n\t\tWHERE\n\t\t\tbannerid = '{$bannerid}'\n\t\t") or phpAds_sqlDie();
$row = phpAds_dbFetchArray($res);
if ($row['contenttype'] == 'swf') {
if ($row['storagetype'] == 'sql' || $row['storagetype'] == 'web') {
$swf_file = phpAds_ImageRetrieve($row['storagetype'], $row['filename']);
}
} else {
// Banner is not a flash banner, return to banner-edit.php
header("Location: banner-edit.php?clientid=" . $clientid . "&campaignid=" . $campaignid . "&bannerid=" . $bannerid);
exit;
}
} else {
// Banner does not exist, return to banner-edit.php
header("Location: banner-edit.php?clientid=" . $clientid . "&campaignid=" . $campaignid);
示例12: _output
/**
* A private method to do part of the work of the
* {@link OA_Admin_Statistics_Common::output()} method.
*
* @access private
* @param array $aElements An optional array of output elements to display.
*/
function _output($aElements = array())
{
global $graphFilter;
// Prepare the Flexy output object
$oOutput = new HTML_Template_Flexy(array('templateDir' => $this->templateDir, 'compileDir' => MAX_PATH . '/var/templates_compiled'));
// Add global variables for backwards compatibility
if (OA_Permission::isAccount(OA_ACCOUNT_ADVERTISER)) {
$GLOBALS['clientid'] = OA_Permission::getEntityId();
} elseif (OA_Permission::isAccount(OA_ACCOUNT_TRAFFICKER)) {
$GLOBALS['affiliateid'] = OA_Permission::getEntityId();
}
// Add the current page's entity/breakdown values to the page
// parameters before generating this page's URI
$this->aPageParams['entity'] = $this->entity;
$this->aPageParams['breakdown'] = $this->breakdown;
// Generate URI used to add other parameters
$this->_generatePageURI();
$this->assetPath = OX::assetPath();
phpAds_PageHeader($this->pageId, $this->getHeaderModel());
// Welcome text
if (!empty($this->welcomeText)) {
echo "<br/>";
echo $this->welcomeText;
echo "<br/><br/><br/>";
}
// Show the page sections
phpAds_ShowSections($this->aPageSections, $this->aPageParams, $openNewTable = false);
$graphVals = $graphFilter;
// Set columns shown by default
if (!is_array($graphVals)) {
if (isset($this->aColumns['sum_views'])) {
$graphVals[] = 'sum_views';
}
if (isset($this->aColumns['sum_clicks'])) {
$graphVals[] = 'sum_clicks';
}
}
// Prepare the data required for displaying graphs
$graphFilterArray = $graphVals;
$imageFormat = null;
if (!extension_loaded('gd')) {
$this->aGraphData['noGraph'] = true;
} else {
$imgPath = rtrim(MAX::constructURL(MAX_URL_IMAGE), '/');
if (!function_exists('imagecreate')) {
$this->aGraphData['noGraph'] = $GLOBALS['strGDnotEnabled'];
} else {
$tmpUrl = MAX::constructURL(MAX_URL_ADMIN) . 'stats-showgraph.php?' . $_SERVER['QUERY_STRING'];
if (is_array($graphFilterArray)) {
foreach ($graphFilterArray as $k => $v) {
$tmpUrl .= '&graphFields[]=' . $v;
}
}
}
$formSubmitLink = explode("/", $_SERVER['REQUEST_URI']);
$formSubmitLink = $formSubmitLink[count($formSubmitLink) - 1];
$this->aGraphData['imgPath'] = $imgPath;
$this->aGraphData['tmpUrl'] = $tmpUrl;
$this->aGraphData['queryString'] = $_SERVER['QUERY_STRING'];
$this->aGraphData['formSubmitLink'] = $formSubmitLink;
}
// Set the Flexy tags to open/close Javascript
$this->scriptOpen = "\n<script type=\"text/javascript\"> <!--\n";
$this->scriptClose = "\n//--> </script>\n";
// Set whether to automatically display the Graph div, will return true if user has just changed the 'graphFields' value
$this->autoShowGraph = strpos($_SERVER['QUERY_STRING'], 'graphFields');
// Set the language vars for statistics display
$this->strShowGraphOfStatistics = $GLOBALS['strShowGraphOfStatistics'];
$this->strExportStatisticsToExcel = $GLOBALS['strExportStatisticsToExcel'];
// Set-up Flexy form for displaying graph
$aElements['graphFilter[]'] = new HTML_Template_Flexy_Element();
$aElements['graphFilter[]']->setValue($graphVals);
if ($this->_isEmptyResultArray()) {
$this->disableGraph = true;
}
// Display page content
$oOutput->compile($this->template);
$oOutput->outputObject($this, $aElements);
$this->_savePrefs();
phpAds_PageFooter();
}
示例13: phpAds_getZoneName
echo "<img src='images/icon-zone.gif' align='absmiddle'> <b>" . phpAds_getZoneName($zoneid) . "</b><br><br><br>";
phpAds_ShowSections($sections);
}
} else {
if (phpAds_isUser(phpAds_Admin)) {
phpAds_PageHeader("4.2.3.1");
echo "<img src='images/icon-affiliate.gif' align='absmiddle'> " . phpAds_getAffiliateName($affiliateid);
echo " <img src='images/" . $phpAds_TextDirection . "/caret-rs.gif'> ";
echo "<img src='images/icon-zone.gif' align='absmiddle'> <b>" . phpAds_getZoneName($zoneid) . "</b><br><br><br>";
phpAds_ShowSections(array("4.2.3.1"));
} else {
phpAds_PageHeader("2.1.1");
echo "<img src='images/icon-affiliate.gif' align='absmiddle'> " . phpAds_getAffiliateName($affiliateid);
echo " <img src='images/" . $phpAds_TextDirection . "/caret-rs.gif'> ";
echo "<img src='images/icon-zone.gif' align='absmiddle'> <b>" . phpAds_getZoneName($zoneid) . "</b><br><br><br>";
phpAds_ShowSections(array("2.1.1"));
}
}
/*********************************************************/
/* Main code */
/*********************************************************/
if (isset($zoneid) && $zoneid != '') {
$res = phpAds_dbQuery("\n\t\tSELECT\n\t\t\t*\n\t\tFROM\n\t\t\t" . $phpAds_config['tbl_zones'] . "\n\t\tWHERE\n\t\t\tzoneid = '" . $zoneid . "'\n\t\t") or phpAds_sqlDie();
if (phpAds_dbNumRows($res)) {
$zone = phpAds_dbFetchArray($res);
}
if ($zone['width'] == -1) {
$zone['width'] = '*';
}
if ($zone['height'] == -1) {
$zone['height'] = '*';
示例14: phpAds_dbQuery
$navorder = '';
}
if (isset($Session['prefs']['client-index.php']['orderdirection'])) {
$navdirection = $Session['prefs']['client-index.php']['orderdirection'];
} else {
$navdirection = '';
}
// Get other clients
$res = phpAds_dbQuery("\n\tSELECT\n\t\t*\n\tFROM\n\t\t" . $phpAds_config['tbl_clients'] . "\n\tWHERE\n\t\tparent = 0\n\t" . phpAds_getListOrder($navorder, $navdirection) . "\n") or phpAds_sqlDie();
while ($row = phpAds_dbFetchArray($res)) {
phpAds_PageContext(phpAds_buildClientName($row['clientid'], $row['clientname']), "client-campaigns.php?clientid=" . $row['clientid'], $clientid == $row['clientid']);
}
phpAds_PageShortcut($strClientHistory, 'stats-client-history.php?clientid=' . $clientid, 'images/icon-statistics.gif');
phpAds_PageHeader("4.1.3");
echo "<img src='images/icon-client.gif' align='absmiddle'> <b>" . phpAds_getClientName($clientid) . "</b><br><br><br>";
phpAds_ShowSections(array("4.1.2", "4.1.3"));
/*********************************************************/
/* Get preferences */
/*********************************************************/
if (!isset($hideinactive)) {
if (isset($Session['prefs']['client-campaigns.php'][$clientid]['hideinactive'])) {
$hideinactive = $Session['prefs']['client-campaigns.php'][$clientid]['hideinactive'];
} else {
$hideinactive = $phpAds_config['gui_hide_inactive'] == 't';
}
}
if (!isset($listorder)) {
if (isset($Session['prefs']['client-campaigns.php'][$clientid]['listorder'])) {
$listorder = $Session['prefs']['client-campaigns.php'][$clientid]['listorder'];
} else {
$listorder = '';
示例15: phpAds_dbQuery
$res = phpAds_dbQuery("\n\tSELECT\n\t\tDATE_FORMAT(day, '%Y%m%d') as date,\n\t\tDATE_FORMAT(day, '{$date_format}') as date_formatted\n\tFROM\n\t\t" . $phpAds_config['tbl_adstats'] . "\n\tWHERE\n\t\t(" . implode(' OR ', $bannerids) . ")\n\tGROUP BY\n\t\tday\n\tORDER BY\n\t\tday DESC\n\tLIMIT 7\n") or phpAds_sqlDie();
while ($row = phpAds_dbFetchArray($res)) {
phpAds_PageContext($row['date_formatted'], "stats-campaign-daily-hosts.php?day=" . $row['date'] . "&clientid=" . $clientid . "&campaignid=" . $campaignid, $day == $row['date']);
}
if (phpAds_isUser(phpAds_Admin) || phpAds_isUser(phpAds_Agency)) {
phpAds_PageShortcut($strClientProperties, 'advertiser-edit.php?clientid=' . $clientid, 'images/icon-advertiser.gif');
phpAds_PageShortcut($strCampaignProperties, 'campaign-edit.php?clientid=' . $clientid . '&campaignid=' . $campaignid, 'images/icon-campaign.gif');
phpAds_PageHeader("2.1.2.1.2");
echo "<img src='images/icon-advertiser.gif' align='absmiddle'> " . phpAds_getClientName($clientid);
echo " <img src='images/" . $phpAds_TextDirection . "/caret-rs.gif'> ";
echo "<img src='images/icon-campaign.gif' align='absmiddle'> " . phpAds_getCampaignName($campaignid);
echo " <img src='images/" . $phpAds_TextDirection . "/caret-rs.gif'> ";
echo "<img src='images/icon-date.gif' align='absmiddle'> <b>" . date(str_replace('%', '', $date_format), mktime(0, 0, 0, substr($day, 4, 2), substr($day, 6, 2), substr($day, 0, 4))) . "</b><br><br><br>";
phpAds_ShowSections(array("2.1.2.1.1", "2.1.2.1.2"));
}
if (phpAds_isUser(phpAds_Client)) {
phpAds_PageHeader("1.1.2");
echo "<img src='images/icon-campaign.gif' align='absmiddle'> " . phpAds_getCampaignName($campaignid);
echo " <img src='images/" . $phpAds_TextDirection . "/caret-rs.gif'> ";
echo "<img src='images/icon-date.gif' align='absmiddle'> <b>" . date(str_replace('%', '', $date_format), mktime(0, 0, 0, substr($day, 4, 2), substr($day, 6, 2), substr($day, 0, 4))) . "</b><br><br>";
phpAds_ShowSections(array("1.2.1.1", "1.2.1.2"));
}
/*********************************************************/
/* Main code */
/*********************************************************/
$lib_hourly_where = "(" . implode(' OR ', $bannerids) . ")";
include "lib-hourly-hosts.inc.php";
/*********************************************************/
/* HTML framework */
/*********************************************************/
phpAds_PageFooter();