* Copyright (C) 2005 James Grant * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public * License as published by the Free Software Foundation, version 2. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ ?> prepare("SELECT id FROM reports WHERE system_report_id=?"); $q->execute([$sid]); $r = $q->fetch(PDO::FETCH_OBJ); $id = $r['id']; } $report = report_load($id); /* Add a custom filter if specified */ $filter_args = ''; if (is_array($_GET['filter'])) { foreach ($_GET['filter'] as $f => $v) { $report['filter'][] = array('field' => $v['field'], 'x' => $v['x'], 'value' => $v['value']); $filter_args .= "&filter[$f][field]={$v['field']}&filter[$f][x]={$v['x']}&filter[$f][value]={$v['value']}"; } } switch ($_GET['action']) { case 'dialog_gen': if ($id < 0) { $u = "{$config['SFIABDIRECTORY']}/{$report_custom[-$id]['custom_url']}"; ?> 'committee_main.php', 'My Reports' => 'admin/reports.php' )); echo '
'; echo ""; echo ''; echo ''; echo ""; echo ''; echo ""; echo ''; echo ""; echo ''; /* See if the report is in this committee member's list */ $q = $pdo->prepare("SELECT * FROM reports_committee \t\t\tWHERE users_id=? AND reports_id=?"); $q->execute([$_SESSION['users_uid'],$report['id']]); echo ''; if ($q->rowCount() > 0) { /* Yes, it is */ $i = $q->fetch(PDO::FETCH_OBJ); echo ''; echo ""; echo ''; echo ""; } else { echo ''; } echo ''; echo ''; $format = $report['options']['type']; $stock = $report['options']['stock']; $year = $config['FAIRYEAR']; /* Out of all the report optoins, we really only want these ones */ $option_keys = array('type', 'stock'); foreach ($report_options as $ok => $o) { if (!in_array($ok, $option_keys)) continue; echo ""; echo "'; } /* Find all the years */ $q = $pdo->prepare('SELECT DISTINCT year FROM config WHERE year>1000 ORDER BY year DESC'); $q->execute(); echo ''; echo ''; echo '
' . i18n('Report Name') . ':{$report['name']}
' . i18n('Description') . ':{$report['desc']}
' . i18n('Created By') . ':{$report['creator']}

' . i18n('My Reports Info') . '

' . i18n('Category') . ':{$i->category}
' . i18n('Comment') . ':{$i->comment}
' . i18n("This report is NOT in your 'My Reports' list.") . '

' . i18n('Report Options') . '

{$o['desc']}:
' . i18n('Year') . ':
'; echo '
'; echo ''; echo '
'; send_footer(); ?>