0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
[
Home
]
File: tiki-notepad_list.php
<?php // $Id: /cvsroot/tikiwiki/tiki/tiki-notepad_list.php,v 1.26 2007-10-12 07:55:29 nyloth Exp $ // Copyright (c) 2002-2007, Luis Argerich, Garland Foster, Eduardo Polidor, et. al. // 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. $section = 'mytiki'; require_once ('tiki-setup.php'); if ($prefs['feature_ajax'] == "y") { require_once ('lib/ajax/ajaxlib.php'); } include_once ('lib/notepad/notepadlib.php'); include_once ('lib/userfiles/userfileslib.php'); if ($prefs['feature_notepad'] != 'y') { $smarty->assign('msg', tra("This feature is disabled").": feature_notepad"); $smarty->display("error.tpl"); die; } if (!$user) { $smarty->assign('msg', tra("Must be logged to use this feature")); $smarty->assign('errortype', '402'); $smarty->display("error.tpl"); die; } if ($tiki_p_notepad != 'y') { $smarty->assign('errortype', 401); $smarty->assign('msg', tra("Permission denied to use this feature")); $smarty->display("error.tpl"); die; } // Process upload here if (isset($_FILES['userfile1']) && is_uploaded_file($_FILES['userfile1']['tmp_name'])) { check_ticket('notepad-list'); $fp = fopen($_FILES['userfile1']['tmp_name'], "rb"); $data = ''; while (!feof($fp)) { $data .= fread($fp, 8192 * 16); } fclose ($fp); if (strlen($data) > 1000000) { $smarty->assign('msg', tra("File is too big")); $smarty->display("error.tpl"); die; } $size = $_FILES['userfile1']['size']; $name = $_FILES['userfile1']['name']; $type = $_FILES['userfile1']['type']; $notepadlib->replace_note($user, 0, $name, $data); } if (isset($_REQUEST["merge"])) { check_ticket('notepad-list'); $merge = ''; $first = true; if (!isset($_REQUEST["note"])) { $smarty->assign('msg', tra("No item indicated")); $smarty->display("error.tpl"); die; } foreach (array_keys($_REQUEST["note"])as $note) { $data_c = $notepadlib->get_note($user, $note); $data = $data_c['data']; if ($first) { $first = false; $merge .= "---------" . tra('merged note:'). $data_c['name'] . "----" . "\n"; $merge .= $data; } else { $merge .= "\n---------" . tra('merged note:'). $data_c['name'] . "----" . "\n"; $merge .= $data; } } // Now create the merged note $tikilib->replace_note($user, 0, $_REQUEST['merge_name'], $merge); } if (isset($_REQUEST["delete"]) && isset($_REQUEST["note"])) { foreach (array_keys($_REQUEST["note"])as $note) { $notepadlib->remove_note($user, $note); } } $quota = $userfileslib->userfiles_quota($user); $limit = $prefs['userfiles_quota'] * 1024 * 1000; if ($limit == 0) $limit = 999999999; $percentage = ($quota / $limit) * 100; $cellsize = round($percentage / 100 * 200); if ($cellsize == 0) $cellsize = 1; $percentage = round($percentage); $smarty->assign('cellsize', $cellsize); $smarty->assign('percentage', $percentage); if (!isset($_REQUEST["sort_mode"])) { $sort_mode = 'lastModif_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); if (isset($_SESSION['thedate'])) { $pdate = $_SESSION['thedate']; } else { $pdate = $tikilib->now; } $channels = $notepadlib->list_notes($user, $offset, $maxRecords, $sort_mode, $find); $smarty->assign_by_ref('cant_pages', $channels["cant"]); $smarty->assign_by_ref('channels', $channels["data"]); include_once ('tiki-section_options.php'); include_once ('tiki-mytiki_shared.php'); ask_ticket('notepad-list'); if ($prefs['feature_ajax'] == "y") { function user_notepad_ajax() { global $ajaxlib, $xajax; $ajaxlib->registerTemplate("tiki-notepad_list.tpl"); $ajaxlib->registerFunction("loadComponent"); $ajaxlib->processRequests(); } user_notepad_ajax(); $smarty->assign("mootab",'y'); } $smarty->assign('mid', 'tiki-notepad_list.tpl'); $smarty->display("tiki.tpl"); ?>