0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
[
Home
]
File: tiki-admin_poll_options.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_poll_options.php 33195 2011-03-02 17:43:40Z changi67 $ require_once ('tiki-setup.php'); require_once ('lib/tikilib.php'); // httpScheme() include_once ('lib/polls/polllib.php'); if (!isset($polllib)) { $polllib = new PollLib; } $access->check_feature('feature_polls'); $access->check_permission('tiki_p_admin_polls'); if (!isset($_REQUEST["pollId"])) { $smarty->assign('msg', tra("No poll indicated")); $smarty->display("error.tpl"); die; } $smarty->assign('pollId', $_REQUEST["pollId"]); $menu_info = $polllib->get_poll($_REQUEST["pollId"]); $smarty->assign('menu_info', $menu_info); if (!isset($_REQUEST["optionId"])) { $_REQUEST["optionId"] = 0; } if (isset($_REQUEST["remove"])) { $access->check_authenticity(); $polllib->remove_poll_option($_REQUEST["remove"]); } if (isset($_REQUEST["save"])) { check_ticket('admin-poll-options'); $polllib->replace_poll_option($_REQUEST["pollId"], $_REQUEST["optionId"], $_REQUEST["title"], $_REQUEST['position']); $_REQUEST["optionId"] = 0; } $smarty->assign('optionId', $_REQUEST["optionId"]); if ($_REQUEST["optionId"]) { $info = $polllib->get_poll_option($_REQUEST["optionId"]); } else { $info = array(); $info["title"] = ''; $info["votes"] = 0; $info["position"] = ''; } $smarty->assign('title', $info["title"]); $smarty->assign('votes', $info["votes"]); $channels = $polllib->list_poll_options($_REQUEST["pollId"]); $smarty->assign('ownurl', $tikilib->httpPrefix() . $_SERVER["REQUEST_URI"]); $smarty->assign_by_ref('channels', $channels); ask_ticket('admin-poll-options'); // disallow robots to index page: $smarty->assign('metatag_robots', 'NOINDEX, NOFOLLOW'); // Display the template $smarty->assign('mid', 'tiki-admin_poll_options.tpl'); $smarty->display("tiki.tpl");