0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
[
Home
]
File: tiki-admin_content_templates.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-admin_content_templates.php 33195 2011-03-02 17:43:40Z changi67 $ $section = 'admin'; require_once ('tiki-setup.php'); $access->check_feature(array('feature_wiki_templates','feature_cms_templates'), '', 'features', true); include_once ('lib/templates/templateslib.php'); $access->check_permission('tiki_p_edit_content_templates'); if (!isset($_REQUEST["templateId"])) { $_REQUEST["templateId"] = 0; } $smarty->assign('templateId', $_REQUEST["templateId"]); if ($_REQUEST["templateId"]) { $info = $templateslib->get_template($_REQUEST["templateId"]); if ($templateslib->template_is_in_section($_REQUEST["templateId"], 'html')) { $info["section_html"] = 'y'; } else { $info["section_html"] = 'n'; } if ($templateslib->template_is_in_section($_REQUEST["templateId"], 'wiki')) { $info["section_wiki"] = 'y'; } else { $info["section_wiki"] = 'n'; } if ($templateslib->template_is_in_section($_REQUEST["templateId"], 'file_galleries')) { $info["section_file_galleries"] = 'y'; } else { $info["section_file_galleries"] = 'n'; } if ($templateslib->template_is_in_section($_REQUEST["templateId"], 'newsletters')) { $info["section_newsletters"] = 'y'; } else { $info["section_newsletters"] = 'n'; } if ($templateslib->template_is_in_section($_REQUEST["templateId"], 'events')) { $info["section_events"] = 'y'; } else { $info["section_events"] = 'n'; } if ($templateslib->template_is_in_section($_REQUEST["templateId"], 'admins')) { $info["section_admins"] = 'y'; } else { $info["section_admin"] = 'n'; } if ($templateslib->template_is_in_section($_REQUEST["templateId"], 'cms')) { $info["section_cms"] = 'y'; } else { $info["section_cms"] = 'n'; } } else { $info = array(); $info["name"] = ''; $info['template_type'] = 'static'; $info["content"] = ''; $info["section_cms"] = 'n'; $info["section_html"] = 'n'; $info["section_wiki"] = 'n'; $info["section_file_galleries"] = 'n'; $info["section_newsletters"] = 'n'; $info["section_event"] = 'n'; } $smarty->assign('info', $info); if (isset($_REQUEST["remove"])) { $access->check_authenticity(); $templateslib->remove_template($_REQUEST["remove"]); } if (isset($_REQUEST["removesection"])) { $access->check_authenticity(); $templateslib->remove_template_from_section($_REQUEST["rtemplateId"], $_REQUEST["removesection"]); } $smarty->assign('preview', 'n'); if (isset($_REQUEST["preview"])) { $smarty->assign('preview', 'y'); if (isset($_REQUEST["section_html"]) && $_REQUEST["section_html"] == 'on') { $info["section_html"] = 'y'; $parsed = nl2br($_REQUEST["content"]); } else { $info["section_html"] = 'n'; $parsed = $tikilib->parse_data($_REQUEST["content"]); } $smarty->assign('parsed', $parsed); if (isset($_REQUEST["section_wiki"]) && $_REQUEST["section_wiki"] == 'on') { $info["section_wiki"] = 'y'; } else { $info["section_wiki"] = 'n'; } if (isset($_REQUEST["section_file_galleries"]) && $_REQUEST["section_file_galleries"] == 'on') { $info["section_file_galleries"] = 'y'; } else { $info["section_file_galleries"] = 'n'; } if (isset($_REQUEST["section_newsletters"]) && $_REQUEST["section_newsletters"] == 'on') { $info["section_newsletters"] = 'y'; } else { $info["section_newsletters"] = 'n'; } if (isset($_REQUEST["section_events"]) && $_REQUEST["section_events"] == 'on') { $info["section_events"] = 'y'; } else { $info["section_events"] = 'n'; } if (isset($_REQUEST["section_cms"]) && $_REQUEST["section_cms"] == 'on') { $info["section_cms"] = 'y'; } else { $info["section_cms"] = 'n'; } $info["content"] = $_REQUEST["content"]; $info["name"] = $_REQUEST["name"]; $info['page_name'] = $_REQUEST['page_name']; $info['template_type'] = $_REQUEST['template_type']; $smarty->assign('info', $info); } if (isset($_REQUEST["save"])) { check_ticket('admin-content-templates'); $type = $_REQUEST['template_type']; if( $type == 'page' ) { $content = 'page:' . $_REQUEST['page_name']; } else { $content = $_REQUEST["content"]; } if(isset($_REQUEST["name"]) && $_REQUEST["name"] != ""){ $tid = $templateslib->replace_template($_REQUEST["templateId"], $_REQUEST["name"], $content, $type); $smarty->assign("templateId", '0'); $info["name"] = ''; $info["content"] = ''; $info["section_cms"] = 'n'; $info["section_wiki"] = 'n'; $info["section_file_galleries"] = 'n'; $info["section_newsletters"] = 'n'; $info["section_events"] = 'n'; $info["section_html"] = 'n'; $smarty->assign('info', $info); if (isset($_REQUEST["section_cms"]) && $_REQUEST["section_cms"] == 'on') { $templateslib->add_template_to_section($tid, 'cms'); } else { $templateslib->remove_template_from_section($tid, 'cms'); } if (isset($_REQUEST["section_wiki"]) && $_REQUEST["section_wiki"] == 'on') { $templateslib->add_template_to_section($tid, 'wiki'); } else { $templateslib->remove_template_from_section($tid, 'wiki'); } if (isset($_REQUEST["section_file_galleries"]) && $_REQUEST["section_file_galleries"] == 'on') { $templateslib->add_template_to_section($tid, 'file_galleries'); } else { $templateslib->remove_template_from_section($tid, 'file_galleries'); } if (isset($_REQUEST["section_newsletters"]) && $_REQUEST["section_newsletters"] == 'on') { $templateslib->add_template_to_section($tid, 'newsletters'); } else { $templateslib->remove_template_from_section($tid, 'newsletters'); } if (isset($_REQUEST["section_events"]) && $_REQUEST["section_events"] == 'on') { $templateslib->add_template_to_section($tid, 'events'); } else { $templateslib->remove_template_from_section($tid, 'events'); } if (isset($_REQUEST["section_html"]) && $_REQUEST["section_html"] == 'on') { $templateslib->add_template_to_section($tid, 'html'); } else { $templateslib->remove_template_from_section($tid, 'html'); } } else { $smarty->assign("templateId", '0'); $info["name"] = ''; $info["content"] = (isset($_REQUEST["content"]) && $_REQUEST["content"] != '') ? $_REQUEST["content"] : '' ; $info["section_cms"] = (isset($_REQUEST["section_cms"]) && $_REQUEST["section_cms"] == 'on') ? 'y' : 'n'; $info["section_wiki"] = (isset($_REQUEST["section_wiki"]) && $_REQUEST["section_wiki"] == 'on') ? 'y' : 'n'; $info["section_file_galleries"] = (isset($_REQUEST["section_file_galleries"]) && $_REQUEST["section_file_galleries"] == 'on') ? 'y' : 'n'; $info["section_newsletters"] = (isset($_REQUEST["section_newsletters"]) && $_REQUEST["section_newsletters"] == 'on') ? 'y' : 'n' ; $info["section_events"] = (isset($_REQUEST["section_events"]) && $_REQUEST["section_events"] == 'on') ? 'y' : 'n'; $info["section_html"] = (isset($_REQUEST["section_html"]) && $_REQUEST["section_html"] == 'on') ? 'y' : 'n'; $smarty->assign('info', $info); $smarty->assign('emptyname',"true"); } } if (!isset($_REQUEST["sort_mode"])) { $sort_mode = 'created_desc'; } else { $sort_mode = $_REQUEST["sort_mode"]; } if (!isset($_REQUEST["offset"])) { $offset = 0; } else { $offset = $_REQUEST["offset"]; } $smarty->assign_by_ref('offset', $offset); if (isset($_REQUEST["find"])) { $find = $_REQUEST["find"]; } else { $find = ''; } $smarty->assign('find', $find); $smarty->assign_by_ref('sort_mode', $sort_mode); $channels = $templateslib->list_all_templates($offset, $maxRecords, $sort_mode, $find); $smarty->assign_by_ref('cant_pages', $channels["cant"]); // wysiwyg decision include 'lib/setup/editmode.php'; $smarty->assign_by_ref('channels', $channels["data"]); ask_ticket('admin-content-templates'); global $wikilib; include_once ('lib/wiki/wikilib.php'); $plugins = $wikilib->list_plugins(true, 'editwiki'); $smarty->assign_by_ref('plugins', $plugins); // disallow robots to index page: $smarty->assign('metatag_robots', 'NOINDEX, NOFOLLOW'); // Display the template $smarty->assign('mid', 'tiki-admin_content_templates.tpl'); $smarty->display("tiki.tpl");