0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
[
Home
]
File: tiki-admin_cookies.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_cookies.php 33195 2011-03-02 17:43:40Z changi67 $ require_once ('tiki-setup.php'); include_once ('lib/taglines/taglinelib.php'); $access->check_permission('tiki_p_edit_cookies'); if (!isset($_REQUEST["cookieId"])) { $_REQUEST["cookieId"] = 0; } $smarty->assign('cookieId', $_REQUEST["cookieId"]); if ($_REQUEST["cookieId"]) { $info = $taglinelib->get_cookie($_REQUEST["cookieId"]); } else { $info = array(); $info["cookie"] = ''; } $smarty->assign('cookie', $info["cookie"]); if (isset($_REQUEST["remove"])) { $access->check_authenticity(); $taglinelib->remove_cookie($_REQUEST["remove"]); } if (isset($_REQUEST["removeall"])) { $access->check_authenticity(); $taglinelib->remove_all_cookies(); } if (isset($_REQUEST["upload"])) { check_ticket('admin-cookies'); if (isset($_FILES['userfile1']) && is_uploaded_file($_FILES['userfile1']['tmp_name'])) { $fp = fopen($_FILES['userfile1']['tmp_name'], "r"); while (!feof($fp)) { $data = fgets($fp, 65535); if (!empty($data)) { $data = str_replace("\n", "", $data); $taglinelib->replace_cookie(0, $data); } } fclose($fp); $size = $_FILES['userfile1']['size']; $name = $_FILES['userfile1']['name']; $type = $_FILES['userfile1']['type']; } else { $smarty->assign('msg', tra("Upload failed")); $smarty->display("error.tpl"); die; } } if (isset($_REQUEST["save"])) { check_ticket('admin-cookies'); $taglinelib->replace_cookie($_REQUEST["cookieId"], $_REQUEST["cookie"]); $smarty->assign("cookieId", '0'); $smarty->assign('cookie', ''); } if (!isset($_REQUEST["sort_mode"])) { $sort_mode = 'cookieId_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 = $taglinelib->list_cookies($offset, $maxRecords, $sort_mode, $find); $smarty->assign_by_ref('cant_pages', $channels["cant"]); $smarty->assign_by_ref('channels', $channels["data"]); ask_ticket('admin-cookies'); // disallow robots to index page: $smarty->assign('metatag_robots', 'NOINDEX, NOFOLLOW'); // Display the template $smarty->assign('mid', 'tiki-admin_cookies.tpl'); $smarty->display("tiki.tpl");