Jump to content
xt:Commerce Community Forum

Banner mit Hinweis auf Werbung / Anzeige versehen


vampsm

Recommended Posts

Hallo,

bin gerade am basteln, wie ich bei "aktiven" Bannern, eine kleinen Schriftzug (Hinweis) auf Werbung / Anzeige, über (unterhalb, daneben...) dem Banner platzieren kann.

Jedoch komme ich jetzt an meine Grenzen :mad:

In welcher PHP muß so eine Anweißung stehen:

banner.php,

xtc_banner_exists.inc.php

oder

xtc_display_banner.inc.php

Wo und wie kann man sowas Einbauen, hier der Anfang aus der xtc_display_banner.inc.php

function xtc_display_banner($action, $identifier) {
if ($action == 'dynamic') {
$banners_query = xtc_db_query("select count(*) as count from " . TABLE_BANNERS . " where status = '1' and banners_group = '" . $identifier . "'");
$banners = xtc_db_fetch_array($banners_query);
if ($banners['count'] > 0) {
$banner = xtc_random_select("select banners_id, banners_title, banners_image, banners_html_text from " . TABLE_BANNERS . " where status = '1' and banners_group = '" . $identifier . "'");
} else {
return '<b>XTC ERROR! (xtc_display_banner(' . $action . ', ' . $identifier . ') -> No banners with group \'' . $identifier . '\' found!</b>';
}
} elseif ($action == 'static') {
if (is_array($identifier)) {
$banner = $identifier;
} else {
$banner_query = xtc_db_query("select banners_id, banners_title, banners_image, banners_html_text from " . TABLE_BANNERS . " where status = '1' and banners_id = '" . $identifier . "'");
if (xtc_db_num_rows($banner_query)) {[/PHP]

Hat jemand eine Idee wie man das realisieren kann?

DANKE an alle ;)

Link to comment
Share on other sites

  • 2 weeks later...

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...