0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
tikiwiki
/
1.9.7-31
/
htdocs
/
[
Home
]
File: tiki-history_sheets.php
<?php // $Header: /cvsroot/tikiwiki/tiki/tiki-history_sheets.php,v 1.1.2.1 2005/01/01 00:11:24 damosoft Exp $ // Based on tiki-galleries.php // Copyright (c) 2002-2005, 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. // Initialization require_once ('tiki-setup.php'); require_once ('lib/sheet/grid.php'); // Now check permissions to access this page /* if($tiki_p_view != 'y') { $smarty->assign('msg',tra("Permission denied you cannot view pages like this page")); $smarty->display("error.tpl"); die; } */ if ($feature_sheet != 'y') { $smarty->assign('msg', tra("This feature is disabled").": feature_sheets"); $smarty->display("error.tpl"); die; } if ($tiki_p_view_sheet != 'y' && $tiki_p_admin != 'y' && $tiki_p_admin_sheet != 'y') { $smarty->assign('msg', tra("Access Denied").": feature_sheets"); $smarty->display("error.tpl"); die; } $smarty->assign('sheetId', $_REQUEST["sheetId"]); // Individual permissions are checked because we may be trying to edit the gallery // Init smarty variables to blank values //$smarty->assign('theme',''); $info = $sheetlib->get_sheet_info( $_REQUEST["sheetId"] ); $smarty->assign('title', $info['title']); $smarty->assign('description', $info['description']); $smarty->assign('page_mode', 'view' ); $result = $tikilib->query( "SELECT DISTINCT `begin` FROM `tiki_sheet_values` WHERE `sheetId` = ? ORDER BY begin DESC", array( $_REQUEST['sheetId'] ) ); $data = array(); while( $row = $result->fetchRow() ) $data[] = array( "stamp" =>$row['begin'], "string" => date( "Y-m-d H:i:s", $row['begin'] ) ); $smarty->assign_by_ref( 'history', $data ); $section = 'sheet'; include_once ('tiki-section_options.php'); ask_ticket('sheet'); // Display the template $smarty->assign('mid', 'tiki-history-sheets.tpl'); $smarty->display("tiki.tpl"); ?>