Current Path : /var/www/html/clients/kampol.e-nk.ru/OLD/modules/ |
Current File : /var/www/html/clients/kampol.e-nk.ru/OLD/modules/mod_artbanners1.php |
<?php // Shows banners. Usually for left or right position (for example: 100x100px or 120x60px) // Version: 1.1 // Don't allow direct access to the file defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); // Clear the content from other modules $content = ""; if (file_exists($mosConfig_absolute_path."/components/com_artbanners/artbanners.other.php")) { include_once( $mosConfig_absolute_path."/components/com_artbanners/artbanners.other.php" ); $count = (@$params->count > 0)?$params->count:1; $banners = (@$params->banners)?$params->banners:""; $categories = (@$params->categories)?$params->categories:""; if ($categories != "" || $banners != "") { $start = "<br /><table cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"border: 0px solid black;\"><td>"; $end = "</td></table>"; $content .= substr(showBanner( $categories, $count, $start, $end, $banners ), 6); } else { $content .= "Set parameter 'categories' or 'banners' in Admininistration.<br /> See readme.txt for more information."; } } else { $content .= "Component ArtBanners not installed."; } ?>