1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 20:58:30 +01:00

87 lines
2.6 KiB
PHP
Raw Normal View History

2006-12-02 04:36:16 +00:00
<?php
2007-07-13 19:37:52 +00:00
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| <EFBFBD>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/calendar_menu/e_list.php,v $
2007-08-28 19:05:02 +00:00
| $Revision: 1.3 $
| $Date: 2007-08-28 19:05:02 $
2007-07-13 19:37:52 +00:00
| $Author: e107steved $
|
+----------------------------------------------------------------------------+
*/
2006-12-02 04:36:16 +00:00
if (!defined('e107_INIT')) { exit; }
2007-08-28 19:05:02 +00:00
if (isset($pref['plug_installed']))
2007-07-13 19:37:52 +00:00
{
if (!isset($pref['plug_installed']['calendar_menu'])) return;
}
else
{ // Support 'legacy' method as well for now
if(!$calendar_install = $sql -> db_Select("plugin", "*", "plugin_path = 'calendar_menu' AND plugin_installflag = '1' "))
{
return;
}
}
2006-12-02 04:36:16 +00:00
$LIST_CAPTION = $arr[0];
$LIST_DISPLAYSTYLE = ($arr[2] ? "" : "none");
require_once('ecal_class.php');
$ecal_class = new ecal_class;
$current_day = $ecal_class->cal_date['mday'];
$current_month = $ecal_class->cal_date['mon'];
$current_year = $ecal_class->cal_date['year'];
$current = mktime(0,0,0,$current_month, $current_day, $current_year);
if($mode == "new_page" || $mode == "new_menu" ){
$lvisit = $this -> getlvisit();
$qry = " event_datestamp>".intval($lvisit)." AND ";
}else{
$qry = "";
}
$bullet = $this -> getBullet($arr[6], $mode);
$qry = "
SELECT e.*, c.event_cat_name
FROM #event AS e
LEFT JOIN #event_cat AS c ON c.event_cat_id = e.event_category
WHERE ".$qry." e.event_start>='$current' AND c.event_cat_class REGEXP '".e_CLASS_REGEXP."'
ORDER BY e.event_start ASC LIMIT 0,".intval($arr[7]);
if(!$event_items = $sql->db_Select_gen($qry)){
$LIST_DATA = LIST_CALENDAR_2;
}else{
while($row = $sql -> db_Fetch()){
$tmp = explode(".", $row['event_author']);
if($tmp[0] == "0"){
$AUTHOR = $tmp[1];
}elseif(is_numeric($tmp[0]) && $tmp[0] != "0"){
$AUTHOR = (USER ? "<a href='".e_BASE."user.php?id.".$tmp[0]."'>".$tmp[1]."</a>" : $tmp[1]);
}else{
$AUTHOR = "";
}
$rowheading = $this -> parse_heading($row['event_title'], $mode);
$ICON = $bullet;
$HEADING = "<a href='".e_PLUGIN."calendar_menu/event.php?".$row['event_start'].".event.".$row['event_id']."' title='".$row['event_title']."'>".$rowheading."</a>";
$CATEGORY = $row['event_cat_name'];
$DATE = ($arr[5] ? ($row['event_start'] ? $this -> getListDate($row['event_start'], $mode) : "") : "");
$INFO = "";
$LIST_DATA[$mode][] = array( $ICON, $HEADING, $AUTHOR, $CATEGORY, $DATE, $INFO );
}
}
?>