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. */ require_once('common.inc.php'); require_once('project.inc.php'); require_once('filter.inc.php'); require_once('user.inc.php'); require_once('form.inc.php'); require_once('reports.inc.php'); $mysqli = sfiab_init('committee'); /* Define all the report field globals, depends on mysqli and $config */ report_init($mysqli); $u = user_load($mysqli); $page_id = 'c_report_editor'; $help = '

Edit Reports'; $rid = 0; if(array_key_exists('rid', $_GET)) { $rid = (int)$_GET['rid']; } $action = ''; if(array_key_exists('action', $_POST)) { $action = $_POST['action']; } function post_report() { global $report_font_styles, $report_options; $report = array(); post_int($report['id'], 'rid'); post_text($report['name'], 'name'); post_text($report['section'], 'section'); post_text($report['creator'], 'creator'); post_text($report['desc'], 'desc'); post_text($report['type'], 'type'); if(array_key_exists('option', $_POST)) { foreach($_POST['option'] as $o=>$v) { if(!array_key_exists($o, $report_options)) continue; post_text($report[$o], array('option',$o)); } } /* For these, just do $report['col'][$i]['field'] = $_POST['col'][$i] */ foreach(array('col') as $c) { $report[$c] = array(); if(!array_key_exists($c, $_POST)) continue; $num = count($_POST[$c]); for($i=0; $i<$num; $i++) { if(trim($_POST[$c][$i]['field']) == '') continue; $report[$c][$i] = array(); /* post_float($var, $keys) if keys is an array, it searches for $_POST[$c][$i]['x'] here */ post_float($report[$c][$i]['x'], array($c, $i, 'x')); post_float($report[$c][$i]['y'], array($c, $i, 'y')); post_float($report[$c][$i]['w'], array($c, $i, 'w')); post_float($report[$c][$i]['h'], array($c, $i, 'h')); post_float($report[$c][$i]['min_w'], array($c, $i, 'min_w')); post_float($report[$c][$i]['h_rows'], array($c, $i, 'h_rows')); post_text($report[$c][$i]['field'], array($c, $i, 'field')); post_text($report[$c][$i]['value'], array($c, $i, 'value')); post_text($report[$c][$i]['fontname'], array($c, $i, 'fontname')); $report[$c][$i]['fontstyle'] = array(); /* There may be no fontstyle posted, set a blank array and overwrite if needed */ post_array($report[$c][$i]['fontstyle'], array($c, $i, 'fontstyle'), $report_font_styles); post_float($report[$c][$i]['fontsize'], array($c, $i, 'fontsize')); post_text($report[$c][$i]['align'], array($c, $i, 'align')); post_text($report[$c][$i]['valign'], array($c, $i, 'valign')); post_text($report[$c][$i]['on_overflow'], array($c, $i, 'on_overflow')); } } foreach(array('group','sort','distinct') as $c) { $report[$c] = array(); if(!array_key_exists($c, $_POST)) continue; $num = count($_POST[$c]); for($i=0; $i<$num; $i++) { if(trim($_POST[$c][$i]) == '') continue; $report[$c][$i] = array(); post_text($report[$c][$i]['field'], array($c, $i)); } } /* Full parse */ foreach(array('filter') as $c) { $report[$c] = array(); if(!array_key_exists($c, $_POST)) continue; $num = count($_POST[$c]); for($i=0; $i<$num; $i++) { if(trim($_POST[$c][$i]['field']) == '') continue; $report[$c][$i] = array(); post_float($report[$c][$i]['x'], array($c, $i, 'x')); post_text($report[$c][$i]['field'], array($c, $i, 'field')); post_text($report[$c][$i]['value'], array($c, $i, 'value')); } } debug("Loaded postted report: ".print_r($report, true)); return $report; } switch($action) { case 'save': $r = post_report(); // print_r($r); report_save($mysqli, $r); form_ajax_response(array('status'=>0)); exit(); case 'load': $rid = (int)$_POST['rid']; form_ajax_response(array('status'=>0, 'location'=>"c_reports_edit.php?rid=$rid")); exit(); case 'delete': $rid = (int)$_POST['rid']; report_delete($mysqli, $rid); form_ajax_response(array('status'=>0, 'location'=>'c_reports_edit.php')); exit(); case 'new': $report = report_create($mysqli); form_ajax_response(array('status'=>0, 'location'=>"c_reports_edit.php?rid={$report['id']}")); exit(); } sfiab_page_begin($u, "Edit Reports", $page_id, $help); ?>

Edit Reports

0) { $form_id = $page_id.'form_edit'; $r = report_load($mysqli, $rid); $fieldvar = "report_{$r['type']}s_fields"; $fields = $$fieldvar; print("

debug

");
		print_r($r);
		print("
"); ?>

Report Information

$f) { if(array_key_exists('editor_disabled', $f)) continue; if(array_key_exists('start_option_group', $f)) { $gr = $f['start_option_group']; $report_fields[$gr] = array(); } $report_fields[$gr][$k] = $f['name']; } form_begin($form_id, 'c_reports_edit.php' ); form_hidden($form_id, 'rid', $r['id']); form_text($form_id, 'name', 'Name', $r); form_text($form_id, 'section', 'Section', $r); form_textbox($form_id, 'desc', 'Description', $r); form_text($form_id, 'creator', 'Creator', $r); form_select($form_id, 'type', 'Type', $report_types, $r); ?>

Options

$d) { $v = $r[$o]; $display = ""; if($d['format'] != 'all' && $d['format'] != $r['format']) { $display = 'style="display:none;"'; } ?>
>

Report Data

$d) { $i = $index + 1; form_select_optgroup($form_id, "col[$index][field]", "Column $i Data", $report_fields, $d['field']); form_radio_h($form_id, "col[$index][align]", "Column $i Align", $report_col_align, $d['align'], '', false, false, true); form_radio_h($form_id, "col[$index][valign]", "Column $i V-Align", $report_col_valign, $d['valign'], '', false, false, true); form_radio_h($form_id, "col[$index][on_overflow]", "Column $i Overflow", $report_col_on_overflow, $d['on_overflow'], '', false, false, true); // form_text_inline($form_id, "col_fontname[$index]", $d['fontname'], 'text', 'max-width="10"'); // $n = array("col_fontstyle[$index]" => $d['fontstyle']); // form_select($form_id, "col_fontstyle[$index]", NULL, $report_font_styles, $n, '', false, true, true); // form_text_inline($form_id, "col_fontsize[$index]", $d['fontsize']); form_hidden($form_id, "col[$index][fontname]", $d['fontname']); foreach($d['fontstyle'] as $s) { form_hidden($form_id, "col[$index][fontstyle][]", $s); } if($r['format'] == 'label') { form_int($form_id, "col[$index][fontsize]", "Label $i Font Size", $d['fontsize']); form_int($form_id, "col[$index][x]", "Label $i X", $d['x']); form_int($form_id, "col[$index][y]", "Label $i Y", $d['y']); form_int($form_id, "col[$index][w]", "Label $i Width", $d['w']); form_int($form_id, "col[$index][h]", "Label $i Height", $d['h']); form_int($form_id, "col[$index][h_rows]", "Label $i Num Rows (0=auto)", $d['h_rows']); form_hidden($form_id, "col[$index][min_w]", $d['min_w']); } else { form_hidden($form_id, "col[$index][fontsize]", $d['fontsize']); form_hidden($form_id, "col[$index][x]", $d['x']); form_hidden($form_id, "col[$index][y]", $d['y']); form_hidden($form_id, "col[$index][w]", $d['w']); form_hidden($form_id, "col[$index][h]", $d['h']); form_hidden($form_id, "col[$index][min_w]", $d['min_w']); form_hidden($form_id, "col[$index][h_rows]", $d['h_rows']); } print("
"); ?> "); } ?>

Sort By

Group By

Distinct Column

Filter By

"; $q = mysql_query("SELECT system_report_id FROM reports WHERE 1 ORDER BY system_report_id DESC"); $r = mysql_fetch_assoc($q); $sid = $r['system_report_id'] + 1; $n = mysql_escape_string($report['name']); $c = mysql_escape_string($report['creator']); $d = mysql_escape_string($report['desc']); $t = mysql_escape_string($report['type']); echo "INSERT INTO `reports` (`id`, `system_report_id`, `name`, `desc`, `creator`, `type`) VALUES\n"; echo "\t('', '$sid', '$n', '$d', '$c', '$t');\n"; echo "INSERT INTO `reports_items` (`id`, `reports_id`, `type`, `ord`, `field`, `value`, `x`, `y`, `w`, `h`, `lines`, `face`, `align`) VALUES "; /* Do the options */ $x = 0; foreach($report['option'] as $k=>$v) { echo "\n\t('', LAST_INSERT_ID(), 'option', $x, '$k', '$v', 0, 0, 0, 0, 0, '', ''),"; $x++; } /* Do the fields */ $fs = array('col', 'group', 'sort', 'distinct', 'filter'); $first = true; foreach($fs as $f) { foreach($report[$f] as $x=>$v) { $k = $v['field']; $vx = intval($v['x']); $vy = intval($v['y']); $vw = intval($v['w']); $vh = intval($v['h']); $vlines = intval($v['lines']); if($vlines == 0) $vlines = 1; $face = $v['face']; $align = $v['align']. ' ' . $v['valign']; $value=mysql_escape_string(stripslashes($v['value'])); if(!$first) echo ','; $first = false; echo "\n\t('', LAST_INSERT_ID(), '$f', $x, '$k', '$value', $vx, $vy, $vw, $vh, $vlines, '$face', '$align')"; } } echo ";\n"; echo ""; } /* ---- Setup ------ */ $n_columns = intval($_POST['ncolumns']); $n = count($report['col']) + 1; if($n > $n_columns) $n_columns = $n; if($colaction == 'add') $n_columns+=3; $fieldvar = "report_{$report['type']}s_fields"; if(isset($$fieldvar)) $fields = $$fieldvar; echo "
"; echo "
"; echo ""; echo ""; echo "
"; echo "
"; echo "
"; echo ""; echo ""; echo "

Report Information

"; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; echo "
Name:
Created By:
Description:
Type: "; selector('type', array('student' => 'Student Report', 'judge' => 'Judge Report', 'award' => 'Award Report', 'committee' => 'Committee Member Report', 'school' => 'School Report', 'volunteer' => 'Volunteer Report', 'tour' => 'Tour Report', 'fair' => 'Feeder Fair Report', ), $report['type'], "onChange=\"reportReload();\""); echo ""; echo "
"; echo "

Report Data

"; echo ""; $x=0; //only go through the columns if there are columns to go through if(count($report['col'])) { foreach($report['col'] as $o=>$d) { echo ""; echo ""; $x++; $canvasLabels[]=$fields[$report['col'][$o]['field']]['name']; //['field']; } } for(;$x<$n_columns;$x++) { echo ""; echo ""; } echo ""; echo ""; echo "
Column ".($x + 1).": "; if(intval($x) != intval($o)) { echo ("WARNING, out of order!"); } field_selector("col[$o][field]", "col$o", $d['field']); echo "
Column ".($x + 1).": "; field_selector("col[$x][field]", "col$x", ''); echo "
"; echo ""; echo ""; echo "
\n"; $doCanvasSample = false; $doCanvasSampletcpdf = false; $l_w=$report_stock[$report['option']['stock']]['label_width']; $l_h=$report_stock[$report['option']['stock']]['label_height']; if($l_w && $l_h && $report['option']['type']=="label") { echo "

Label Data Locations

"; $doCanvasSample=true; $ratio=$l_h/$l_w; $canvaswidth=600; $canvasheight=round($canvaswidth*$ratio); echo "
"; echo "
\n"; echo "\n"; } if($l_w && $l_h && $report['option']['type']=="tcpdf_label") { echo "

Label Data Locations - TCPDF

"; $l_w *= 25.4; $l_h *= 25.4; $doCanvasSampletcpdf=true; $ratio=$l_h/$l_w; $canvaswidth=600; $canvasheight=round($canvaswidth*$ratio); echo "
"; echo "
\n"; echo "\n"; } echo ""; $x=0; if($report['option']['type'] == 'label' || $report['option']['type'] == 'tcpdf_label') { $fontlist = array('' => 'Default'); $fl = PDF::getFontList(); foreach($fl as $f) $fontlist[$f] = $f; // print_r($fl); foreach($report['col'] as $o=>$d) { $f = $d['field']; echo ""; echo ""; echo ""; } } echo "
Loc ".($o+1).": "; $script=""; foreach($locs as $k=>$v) { if($k=='Lines' && $report['option']['type'] != 'label') continue; echo "$k="; $script.="{$d[$v]},"; } if($report['option']['type'] == 'label') { echo 'Face='; selector("col[$x][face]", array('' => '', 'bold' => 'Bold'), $d['face']); } echo 'Align'; selector("col[$x][align]", array('center' => 'Center', 'left' => 'Left', 'right' => 'Right'), $d['align']); echo 'vAlign'; if($report['option']['type'] == 'label') { selector("col[$x][valign]", array('vcenter' => 'Center', 'vtop' => 'Top', 'vbottom' => 'Bottom'), $d['valign']); } else { selector("col[$x][valign]", array('middle' => 'Middle', 'top' => 'Top', 'bottom' => 'Bottom'), $d['valign']); echo 'Font='; selector("col[$x][fontname]", $fontlist, $d['fontname']); selector("col[$x][fontstyle]", array('' => '', 'bold' => 'Bold'), $d['fontstyle']); echo ""; echo 'pt '; echo 'OnOverflow='; selector("col[$x][on_overflow]", array('tuncate'=>'Truncate','...'=>'Add ...', 'scale'=>'Scale'), $d['on_overflow']); } if($f == 'static_text') { echo "
Text="; } else { echo ""; } if($doCanvasSample) echo "\n"; if($doCanvasSampletcpdf) echo "\n"; $x++; } for(;$x<$n_columns;$x++) { echo "
Loc ".($x+1).": "; foreach($locs as $k=>$v) { if($k=='Lines' && $report['option']['type'] != 'label') continue; echo "$k="; } if($report['option']['type'] == 'label') { echo 'Face='; selector("col[$x][face]", array('' => '', 'bold' => 'Bold'), ''); } echo 'Align'; selector("col[$x][align]", array('center' => 'Center', 'left' => 'Left', 'right' => 'Right'), 'center'); echo 'vAlign'; if($report['option']['type'] == 'label') { selector("col[$x][valign]", array('vcenter' => 'Center', 'vtop' => 'Top', 'vbottom' => 'Bottom'), 'top'); } else { selector("col[$x][valign]", array('middle' => 'Middle', 'top' => 'Top', 'bottom' => 'Bottom'), 'middle'); echo 'Font='; selector("col[$x][fontname]", $fontlist, ''); selector("col[$x][fontstyle]", array('' => '', 'bold' => 'Bold'), ''); echo ""; echo 'pt '; echo 'OnOverflow='; selector("col[$x][on_overflow]", array('Truncate'=>'truncate','Add ...'=>'...', 'Scale'=>'scale'),''); } echo ""; echo "
\n"; echo "

Grouping

"; for($x=0;$x<2;$x++) { echo "Group By".($x + 1).": "; $f = $report['group'][$x]['field']; field_selector("group[$x]", "group$x", $f); echo "
"; } echo "

Sorting

"; for($x=0;$x<3;$x++) { echo "Sort By".($x + 1).": "; $f = $report['sort'][$x]['field']; field_selector("sort[$x]", "sort$x",$f); echo "
"; } echo "

Distinct

"; echo "Distinct Column: "; $x=0; $f = $report['distinct'][$x]['field']; field_selector("distinct[$x]", "distinct0", $f); echo "

Filtering

"; echo ""; for($x=0;$x<3;$x++) { echo ""; } echo "
Filter".($x + 1).":"; field_selector("filter[$x][field]", "filter$x",$report['filter'][$x]['field']); echo "
"; selector("filter[$x][x]", $filter_ops,$report['filter'][$x]['x']); $v = $report['filter'][$x]['value']; echo "Text="; echo "
"; echo "

Options

"; foreach($report_options as $ok=>$o) { echo "{$o['desc']}:
\n"; } echo "
"; if($report['system_report_id'] != 0) { echo notice(i18n('This is a system report, it cannot be changed or deleted. To save changes you have made to it, please select the \'Save as a new report\' option.')); } echo ""; echo ""; echo "
"; send_footer(); ?>