0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
lib
/
setup
/
[
Home
]
File: sections.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: sections.php 33195 2011-03-02 17:43:40Z changi67 $ //this script may only be included - so its better to die if called directly. $access->check_script($_SERVER["SCRIPT_NAME"],basename(__FILE__)); $sections = array( // tra('Wiki Page') -- tra() comments are there for get_strings.php 'wiki page' => array( 'feature' => 'feature_wiki', 'key' => 'page', 'itemkey' => '', 'objectType' =>'wiki page', 'commentsFeature' => 'feature_wiki_comments', ), // tra('Blog') // tra('Blog Post') 'blogs' => array( 'feature' => 'feature_blogs', 'key' => 'blogId', 'itemkey' => 'postId', 'objectType' =>'blog', 'itemObjectType' => 'blog post', 'itemCommentsFeature' => 'feature_blogposts_comments' ), // tra('File Gallery') // tra('File') 'file_galleries' => array( 'feature' => 'feature_file_galleries', 'key' => 'galleryId', 'itemkey' => 'fileId', 'objectType' =>'file gallery', 'itemObjectType' => 'file', 'commentsFeature' => 'feature_file_galleries_comments', ), // tra('Image Gallery') // tra('Image') 'galleries' => array( 'feature' => 'feature_galleries', 'key' => 'galleryId', 'itemkey' => 'imageId', 'objectType' =>'image gallery', 'itemObjectType' => 'image', 'commentsFeature' => 'feature_image_galleries_comments', ), // tra('Forum') // tra('Forum Post') 'forums' => array( 'feature' => 'feature_forums', 'key' => 'forumId', 'itemkey' => 'comments_parentId', 'objectType' =>'forum', 'itemObjectType' => 'forum post', ), // tra('Article') 'cms' => array( 'feature' => 'feature_articles', 'key' => 'articleId', 'itemkey' => '', 'objectType' => 'article', 'commentsFeature' => 'feature_article_comments' ), // tra('Tracker') 'trackers' => array( 'feature' => 'feature_trackers', 'key' => 'trackerId', 'itemkey' => 'itemId', 'objectType' =>'tracker', 'itemObjectType' => 'tracker %d', ), 'mytiki' => array( 'feature' => '', 'key' => 'user', 'itemkey' => '', ), 'user_messages' => array( 'feature' => 'feature_messages', 'key' => 'msgId', 'itemkey' => '', ), 'webmail' => array( 'feature' => 'feature_webmail', 'key' => 'msgId', 'itemkey' => '', ), 'contacts' => array( 'feature' => 'feature_contacts', 'key' => 'contactId', 'itemkey' => '', ), // tra('Faq') 'faqs' => array( 'feature' => 'feature_faqs', 'key' => 'faqId', 'itemkey' => '', 'objectType' => 'faq', 'commentsFeature' => 'feature_faq_comments', ), // tra('Quizz') 'quizzes' => array( 'feature' => 'feature_quizzes', 'key' => 'quizId', 'itemkey' => '', 'objectType' => 'quiz', ), // tra('Poll') 'poll' => array( 'feature' => 'feature_polls', 'key' => 'pollId', 'itemkey' => '', 'objectType' => 'poll', 'commentsFeature' => 'feature_poll_comments', ), // tra('Survey') 'surveys' => array( 'feature' => 'feature_surveys', 'key' => 'surveyId', 'itemkey' => '', 'objectType' => 'survey', ), 'featured_links' => array( 'feature' => 'feature_featuredLinks', 'key' => 'url', 'itemkey' => '', ), // tra('Directory') 'directory' => array( 'feature' => 'feature_directory', 'key' => 'directoryId', 'itemkey' => '', 'objectType' => 'directory', ), // tra('Calendar') 'calendar' => array( 'feature' => 'feature_calendar', 'key' => 'calendarId', 'itemkey' => 'viewcalitemId', 'objectType' => 'calendar', 'itemObjectType' => 'event', ), // tra('Map') 'maps' => array( 'feature' => 'feature_maps', 'key' => 'mapId', 'itemkey' => '', 'objectType' => 'map', ), 'gmaps' => array( 'feature' => 'feature_gmap', 'key' => '', 'itemkey' => '', ), 'categories' => array( 'feature' => 'feature_categories', 'key' => 'categId', 'itemkey' => '', ), // tra('Html Page') 'html_pages' => array( 'feature' => 'feature_html_pages', 'key' => 'pageId', 'itemkey' => '', 'objectType' => 'html page', ), // tra('Newsletter') 'newsletters' => array( 'feature' => 'feature_newsletters', 'key' => 'nlId', 'objectType' => 'newsletter', ), ); if ( ! isset($section) ) $section = ''; $sections_enabled = array(); foreach ( $sections as $sec => $dat ) { $feat = $dat['feature']; if ( $feat === '' or ( isset($prefs[$feat]) and $prefs[$feat] == 'y' ) ) { $sections_enabled[$sec] = $dat; } } ksort($sections_enabled); $smarty->assign_by_ref('sections_enabled', $sections_enabled); if ( ! empty($section) ) $smarty->assign('section', $section); if ( ! empty($section_class) ) { $smarty->assign('section_class', $section_class); } elseif ( ! empty($section) ) { $section_class = 'tiki_'.str_replace(' ','_',$section); $smarty->assign('section_class', $section_class); } function current_object() { global $section, $sections, $cat_type, $cat_objid, $postId; if ($section == 'blogs' && !empty($postId)) { // blog post check the category on the blog - but freetags are on blog post return array( 'type' => 'blog post', 'object' => $postId, ); } if( $cat_type && $cat_objid ) { return array( 'type' => $cat_type, 'object' => $cat_objid, ); } if( isset( $sections[$section] ) ) { $info = $sections[$section]; if( isset( $info['itemkey'], $info['itemObjectType'], $_REQUEST[ $info['itemkey'] ] ) ) { $type = isset( $_REQUEST[ $info['key'] ] ) ? $info['key'] : ''; return array( 'type' => sprintf( $info['itemObjectType'], $type ), 'object' => $_REQUEST[ $info['itemkey'] ], ); } elseif( isset( $info['key'], $info['objectType'], $_REQUEST[ $info['key'] ] ) ) { if (is_array($_REQUEST[ $info['key'] ])) { // galleryId is an array here when in tiki-upload_file.php $k = $_REQUEST[ $info['key'] ][0]; } else { $k = $_REQUEST[ $info['key'] ]; } return array( 'type' => $info['objectType'], 'object' => $k, ); } } }