db_Select("plugin", "*", "plugin_path = 'calendar_menu' AND plugin_installflag = '1' ")) { return; } } $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 ? "".$tmp[1]."" : $tmp[1]); }else{ $AUTHOR = ""; } $rowheading = $this -> parse_heading($row['event_title'], $mode); $ICON = $bullet; $HEADING = "".$rowheading.""; $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 ); } } ?>