$id, 'notice' => $notice, 'url' => $url, 'category' => $category, 'priority' => $priority, ); $queue[$queuekey] = $toqueue; $queueout = fopen($notice_path, "w"); fwrite($queueout, serialize($queue)); fclose($queueout); return; } function get_notices($category = "all") { global $notice_path; if(file_exists($notice_path)) { $queue = unserialize(file_get_contents($notice_path)); if($category != 'all') { foreach($queue as $time => $notice) { if(strtolower($notice['category']) == strtolower($category)) $toreturn[$time] = $notice; } return $toreturn; } else { return $queue; } } else { return false; } } function close_notice($id) { global $notice_path; require_once("util.inc"); if(!$notices = get_notices()) return; if($id == "all") { unlink_if_exists($notice_path); return; } foreach(array_keys($notices) as $time) { if($id == $time) { unset($notices[$id]); break; } } foreach($notices as $key => $notice) { $ids[$key] = $notice['id']; } foreach($ids as $time => $tocheck) { if($id == $tocheck) { unset($notices[$time]); break; } } $queueout = fopen($notice_path, "w"); fwrite($queueout, serialize($queue)); fclose($queueout); return; } function dump_xml_notices() { require_once("xmlparse.inc"); global $notice_path, $listtags; $listtags[] = 'notice'; if(!$notices = get_notices()) return; foreach($notices as $time => $notice) { $notice['time'] = $time; $toput['notice'][] = $notice; } $xml = dump_xml_config($toput, 'notices'); return $xml; } function print_notices($notices, $category = "all") { foreach($notices as $notice) { if($category != "all") { if(in_array($notice['category'], $category)) $categories[] = $notice['category']; } else { $categories[] = $notice['category']; } } $categories = array_unique($categories); sort($categories); foreach($categories as $category) { $toreturn .= ""; } return $toreturn; } ?>