mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 20:58:30 +01:00
091e68526f
by team
64 lines
1.4 KiB
PHP
64 lines
1.4 KiB
PHP
<?php
|
|
/*
|
|
+ ----------------------------------------------------------------------------+
|
|
| e107 website system
|
|
|
|
|
| ©Steve Dunstan 2001-2002
|
|
| http://e107.org
|
|
| jalist@e107.org
|
|
|
|
|
| Released under the terms and conditions of the
|
|
| GNU General Public License (http://gnu.org).
|
|
|
|
|
| $Source: /cvs_backup/e107_0.8/e107_plugins/featurebox/featurebox.php,v $
|
|
| $Revision: 1.3 $
|
|
| $Date: 2007-01-20 16:19:43 $
|
|
| $Author: mrpete $
|
|
+----------------------------------------------------------------------------+
|
|
*/
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
if($sql -> db_Select("featurebox", "*", "fb_mode=1 AND fb_class IN (".USERCLASS_LIST.") ORDER BY fb_class ASC"))
|
|
{
|
|
while($row = $sql->db_Fetch())
|
|
{
|
|
if($row['fb_class'] > 0 && $row['fb_class'] < 251)
|
|
{
|
|
extract($row);
|
|
continue;
|
|
}
|
|
else
|
|
{
|
|
$xentry = $row;
|
|
}
|
|
}
|
|
if(!isset($fb_title))
|
|
{
|
|
extract($xentry);
|
|
}
|
|
}
|
|
else if($sql -> db_Select("featurebox", "*", "fb_mode!=1 AND fb_class IN (".USERCLASS_LIST.")"))
|
|
{
|
|
$nfArray = $sql -> db_getList();
|
|
$entry = $nfArray[array_rand($nfArray)];
|
|
extract($entry);
|
|
}
|
|
else
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
$fbcc = $fb_title;
|
|
$fb_title = $tp -> toHTML($fb_title, TRUE,'title');
|
|
$fb_text = $tp -> toHTML($fb_text, TRUE,'body');
|
|
if(!$fb_rendertype)
|
|
{
|
|
$ns -> tablerender($fb_title, $fb_text, 'featurebox');
|
|
}
|
|
else
|
|
{
|
|
require_once(e_PLUGIN."featurebox/templates/".$fb_template.".php");
|
|
echo $FB_TEMPLATE;
|
|
}
|
|
?>
|