0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
[
Home
]
File: tiki-map_rss.php
<?php // (c) Copyright 2002-2011 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: tiki-map_rss.php 33195 2011-03-02 17:43:40Z changi67 $ require_once ('tiki-setup.php'); require_once ('lib/tikilib.php'); require_once ('lib/rss/rsslib.php'); $access->check_feature('feature_maps'); if ($prefs['rss_mapfiles'] != 'y') { $errmsg = tra("rss feed disabled"); require_once ('tiki-rss_error.php'); } $res = $access->authorize_rss(array('tiki_p_map_view')); if ($res) { if ($res['header'] == 'y') { header('WWW-Authenticate: Basic realm="' . $tikidomain . '"'); header('HTTP/1.0 401 Unauthorized'); } $errmsg = $res['msg']; require_once ('tiki-rss_error.php'); } $feed = "map"; $uniqueid = $feed; $output = $rsslib->get_from_cache($uniqueid); if ($output["data"] == "EMPTY") { $title = (!empty($title_rss_mapfiles)) ? $title_rss_mapfiles : tra("Tiki RSS feed for maps"); $desc = (!empty($desc_rss_mapfiles)) ? $desc_rss_mapfiles : tra("List of maps available."); $now = date("U"); $id = "name"; $titleId = "name"; $descId = "description"; $dateId = "lastModif"; $authorId = ""; $readrepl = "tiki-map.php?mapfile="; $tmp = $prefs['title_rss_' . $feed]; if ($tmp <> '') $title = $tmp; $tmp = $prefs['desc_rss_' . $feed]; if ($desc <> '') $desc = $tmp; // Get mapfiles from the mapfiles directory $tmp = array(); $h = @opendir($prefs['map_path']); while (($file = @readdir($h)) !== false) { if (preg_match('/\.map$/i', $file)) { $filetlist[$file] = filemtime($prefs['map_path'] . "/" . $file); } } @arsort($filetlist, SORT_NUMERIC); $aux = array(); $i = 0; if (is_array($filetlist)) { while (list($key, $val) = each($filetlist)) { if ($i >= $prefs['max_rss_mapfiles']) break; $i++; $aux["name"] = $key; $aux["lastModif"] = $val; $aux["description"] = ""; $tmp[] = $aux; } } @closedir($h); $changes = array(); $changes["data"] = $tmp; $output = $rsslib->generate_feed($feed, $uniqueid, '', $changes, $readrepl, '', $id, $title, $titleId, $desc, $descId, $dateId, $authorId); } header("Content-type: " . $output["content-type"]); print $output["data"];