osCommerce最好的电子商务程序 2.2

源代码在线查看: banner.php

软件大小: 1302 K
上传用户: fq335288450
关键词: osCommerce 2.2 电子商务 程序
下载地址: 免注册下载 普通下载 VIP

相关代码

								/*
				  $Id: banner.php,v 1.1.1.1 2004/10/09 14:29:18 cvsadmin Exp $
				
				  osCommerce, Open Source E-Commerce Solutions
				  http://www.oscommerce.com
				
				  Copyright (c) 2003 osCommerce
				
				  Released under the GNU General Public License
				*/
				
				////
				// Sets the status of a banner
				  function tep_set_banner_status($banners_id, $status) {
				    if ($status == '1') {
				      return tep_db_query("update " . TABLE_BANNERS . " set status = '1', date_status_change = now(), date_scheduled = NULL where banners_id = '" . (int)$banners_id . "'");
				    } elseif ($status == '0') {
				      return tep_db_query("update " . TABLE_BANNERS . " set status = '0', date_status_change = now() where banners_id = '" . (int)$banners_id . "'");
				    } else {
				      return -1;
				    }
				  }
				
				////
				// Auto activate banners
				  function tep_activate_banners() {
				    $banners_query = tep_db_query("select banners_id, date_scheduled from " . TABLE_BANNERS . " where date_scheduled != ''");
				    if (tep_db_num_rows($banners_query)) {
				      while ($banners = tep_db_fetch_array($banners_query)) {
				        if (date('Y-m-d H:i:s') >= $banners['date_scheduled']) {
				          tep_set_banner_status($banners['banners_id'], '1');
				        }
				      }
				    }
				  }
				
				////
				// Auto expire banners
				  function tep_expire_banners() {
				    $banners_query = tep_db_query("select b.banners_id, b.expires_date, b.expires_impressions, sum(bh.banners_shown) as banners_shown from " . TABLE_BANNERS . " b, " . TABLE_BANNERS_HISTORY . " bh where b.status = '1' and b.banners_id = bh.banners_id group by b.banners_id");
				    if (tep_db_num_rows($banners_query)) {
				      while ($banners = tep_db_fetch_array($banners_query)) {
				        if (tep_not_null($banners['expires_date'])) {
				          if (date('Y-m-d H:i:s') >= $banners['expires_date']) {
				            tep_set_banner_status($banners['banners_id'], '0');
				          }
				        } elseif (tep_not_null($banners['expires_impressions'])) {
				          if ( ($banners['expires_impressions'] > 0) && ($banners['banners_shown'] >= $banners['expires_impressions']) ) {
				            tep_set_banner_status($banners['banners_id'], '0');
				          }
				        }
				      }
				    }
				  }
				
				////
				// Display a banner from the specified group or banner id ($identifier)
				  function tep_display_banner($action, $identifier) {
				    if ($action == 'dynamic') {
				      $banners_query = tep_db_query("select count(*) as count from " . TABLE_BANNERS . " where status = '1' and banners_group = '" . $identifier . "'");
				      $banners = tep_db_fetch_array($banners_query);
				      if ($banners['count'] > 0) {
				        $banner = tep_random_select("select banners_id, banners_title, banners_image, banners_html_text from " . TABLE_BANNERS . " where status = '1' and banners_group = '" . $identifier . "'");
				      } else {
				        return 'TEP ERROR! (tep_display_banner(' . $action . ', ' . $identifier . ') -> No banners with group \'' . $identifier . '\' found!';
				      }
				    } elseif ($action == 'static') {
				      if (is_array($identifier)) {
				        $banner = $identifier;
				      } else {
				        $banner_query = tep_db_query("select banners_id, banners_title, banners_image, banners_html_text from " . TABLE_BANNERS . " where status = '1' and banners_id = '" . (int)$identifier . "'");
				        if (tep_db_num_rows($banner_query)) {
				          $banner = tep_db_fetch_array($banner_query);
				        } else {
				          return 'TEP ERROR! (tep_display_banner(' . $action . ', ' . $identifier . ') -> Banner with ID \'' . $identifier . '\' not found, or status inactive';
				        }
				      }
				    } else {
				      return 'TEP ERROR! (tep_display_banner(' . $action . ', ' . $identifier . ') -> Unknown $action parameter value - it must be either \'dynamic\' or \'static\'';
				    }
				
				    if (tep_not_null($banner['banners_html_text'])) {
				      $banner_string = $banner['banners_html_text'];
				    } else {
				      $banner_string = '' . tep_image(DIR_WS_IMAGES . $banner['banners_image'], $banner['banners_title']) . '';
				    }
				
				    tep_update_banner_display_count($banner['banners_id']);
				
				    return $banner_string;
				  }
				
				////
				// Check to see if a banner exists
				  function tep_banner_exists($action, $identifier) {
				    if ($action == 'dynamic') {
				      return tep_random_select("select banners_id, banners_title, banners_image, banners_html_text from " . TABLE_BANNERS . " where status = '1' and banners_group = '" . $identifier . "'");
				    } elseif ($action == 'static') {
				      $banner_query = tep_db_query("select banners_id, banners_title, banners_image, banners_html_text from " . TABLE_BANNERS . " where status = '1' and banners_id = '" . (int)$identifier . "'");
				      return tep_db_fetch_array($banner_query);
				    } else {
				      return false;
				    }
				  }
				
				////
				// Update the banner display statistics
				  function tep_update_banner_display_count($banner_id) {
				    $banner_check_query = tep_db_query("select count(*) as count from " . TABLE_BANNERS_HISTORY . " where banners_id = '" . (int)$banner_id . "' and date_format(banners_history_date, '%Y%m%d') = date_format(now(), '%Y%m%d')");
				    $banner_check = tep_db_fetch_array($banner_check_query);
				
				    if ($banner_check['count'] > 0) {
				      tep_db_query("update " . TABLE_BANNERS_HISTORY . " set banners_shown = banners_shown + 1 where banners_id = '" . (int)$banner_id . "' and date_format(banners_history_date, '%Y%m%d') = date_format(now(), '%Y%m%d')");
				    } else {
				      tep_db_query("insert into " . TABLE_BANNERS_HISTORY . " (banners_id, banners_shown, banners_history_date) values ('" . (int)$banner_id . "', 1, now())");
				    }
				  }
				
				////
				// Update the banner click statistics
				  function tep_update_banner_click_count($banner_id) {
				    tep_db_query("update " . TABLE_BANNERS_HISTORY . " set banners_clicked = banners_clicked + 1 where banners_id = '" . (int)$banner_id . "' and date_format(banners_history_date, '%Y%m%d') = date_format(now(), '%Y%m%d')");
				  }
				?>			

相关资源