0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
lib
/
smarty_tiki
/
[
Home
]
File: modifier.sefurl.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: modifier.sefurl.php 33203 2011-03-02 20:07:30Z sylvieg $ // Translate only if feature_multilingual is on //this script may only be included - so its better to die if called directly. if (strpos($_SERVER["SCRIPT_NAME"],basename(__FILE__)) !== false) { header("location: index.php"); exit; } function smarty_modifier_sefurl($source, $type='wiki', $with_next = '', $all_langs='', $with_title='y', $title='' ) { global $prefs, $tikilib, $wikilib, $smarty; require_once('lib/wiki/wikilib.php'); $sefurl = $prefs['feature_sefurl'] == 'y'; switch($type){ case 'wiki page': case 'wikipage': $type = 'wiki'; case 'wiki': return $wikilib->sefurl($source, $with_next, $all_langs); case 'blog': $href = $sefurl ? "blog$source" : "tiki-view_blog.php?blogId=$source"; break; case 'blog post': case 'blogpost': $href = $sefurl ? "blogpost$source" : "tiki-view_blog_post.php?postId=$source"; break; case 'gallery': $href = 'tiki-browse_gallery.php?galleryId='. $source; break; case 'videogallery': $href = 'tiki-browse_video_gallery.php?galleryId='. $source; break; case 'article': $href = $sefurl ? "article$source" : "tiki-read_article.php?articleId=$source"; break; case 'file': $href = $sefurl ? "dl$source" : "tiki-download_file.php?fileId=$source"; break; case 'thumbnail': $href = $sefurl ? "thumbnail$source" : "tiki-download_file.php?fileId=$source&thumbnail"; break; case 'display': $href = $sefurl ? "display$source" : "tiki-download_file.php?fileId=$source&display"; break; case 'preview': $href = $sefurl ? "preview$source" : "tiki-download_file.php?fileId=$source&preview"; break; case 'draft': $href = 'tiki-download_file.php?fileId='. $source.'&draft'; break; case 'tracker item': $type = 'trackeritem'; case 'trackeritem': $replacementpage = ''; if ($prefs["feature_sefurl_tracker_prefixalias"] == 'y') { $trklib = TikiLib::lib('trk'); $replacementpage = $trklib->get_trackeritem_pagealias($source); } if ($replacementpage) { return $wikilib->sefurl($replacementpage, $with_next, $all_langs); } else { $href = 'tiki-view_tracker_item.php?itemId='. $source; } break; case 'tracker': $href = 'tiki-view_tracker.php?trackerId='.$source; break; case 'filegallery': case 'file gallery': $href = 'tiki-list_file_gallery.php?galleryId='.$source; break; case 'forum post': $href = 'tiki-view_forum_thread.php?comments_parentId='.$source; break; case 'image': $href = 'tiki-browse_image.php?imageId='.$source; break; case 'sheet': $href = $sefurl ? "sheet$source" : "tiki-view_sheets.php?sheetId=$source"; break; case 'category': $href = $sefurl ? "cat$source": "tiki-browse_categories.php?parentId=$source"; break; default: $href = $source; break; } if ($with_next) { $href .= '&'; } if ($prefs['feature_sefurl'] == 'y' && $smarty) { include_once('tiki-sefurl.php'); return filter_out_sefurl($href, $smarty, $type, $title, $with_next, $with_title); } else { return $href; } }