<?php
/* vim: set expandtab tabstop=4 shiftwidth=4 encoding=utf-8: */
// +----------------------------------------------------------------------+
// | Eventum - Issue Tracking System |
// +----------------------------------------------------------------------+
// | Copyright (c) 2003, 2004, 2005, 2006, 2007, 2008 MySQL AB |
// | |
// | 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; either version 2 of the License, or |
// | (at your option) any later version. |
// | |
// | 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; if not, write to: |
// | |
// | Free Software Foundation, Inc. |
// | 59 Temple Place - Suite 330 |
// | Boston, MA 02111-1307, USA. |
// +----------------------------------------------------------------------+
// | Authors: Bryan Alsdorf <hide@address.com> |
// +----------------------------------------------------------------------+
//
// @(#) $Id: custom_fields.php 3555 2008-03-15 16:45:34Z glen $
//
require_once(dirname(__FILE__) . "/../init.php");
require_once(APP_INC_PATH . "class.template.php");
require_once(APP_INC_PATH . "class.auth.php");
require_once(APP_INC_PATH . "class.report.php");
require_once(APP_INC_PATH . "class.custom_field.php");
require_once(APP_INC_PATH . "db_access.php");
$tpl = new Template_API();
$tpl->setTemplate("reports/custom_fields.tpl.html");
Auth::checkAuthentication(APP_COOKIE);
if (Auth::getCurrentRole() <= User::getRoleID("Customer")) {
echo "Invalid role";
exit;
}
$prj_id = Auth::getCurrentProject();
// get list of fields and convert info useful arrays
$fields = Custom_Field::getListByProject($prj_id, '');
$custom_fields = array();
$options = array();
if (is_array($fields) && count($fields) > 0) {
foreach ($fields as $field) {
$custom_fields[$field["fld_id"]] = $field["fld_title"];
$options[$field["fld_id"]] = Custom_Field::getOptions($field["fld_id"]);
}
} else {
echo ev_gettext("No custom fields for this project");
exit;
}
if ((!empty($_REQUEST['start']['Year'])) && (!empty($_REQUEST['start']['Month'])) &&(!empty($_REQUEST['start']['Day']))) {
$start = join('-', $_REQUEST['start']);
} else {
$start = false;
}
if ((!empty($_REQUEST['end']['Year'])) && (!empty($_REQUEST['end']['Month'])) &&(!empty($_REQUEST['end']['Day']))) {
$end = join('-', $_REQUEST['end']);
} else {
$end = false;
}
if (count(@$_GET['custom_field']) > 0) {
$data = Report::getCustomFieldReport(@$_GET["custom_field"], @$_GET["custom_options"], @$_GET["group_by"], $start, $end, true, @$_REQUEST['interval'],
@$_REQUEST['assignee']);
}
if (($start == false) || ($end = false)) {
$start = '--';
$end = '--';
}
$tpl->assign(array(
"custom_fields" => $custom_fields,
"custom_field" => @$_GET["custom_field"],
"options" => $options,
"custom_options" => @$_GET["custom_options"],
"group_by" => @$_GET["group_by"],
"selected_options" => @$_REQUEST['custom_options'],
"data" => @$data,
"start_date"=> $start,
"end_date" => $end,
"assignees" => Project::getUserAssocList($prj_id, 'active', User::getRoleID("Customer")),
"assignee" => @$_REQUEST['assignee'],
));
if (isset($_GET["custom_field"])) {
$tpl->assign(array(
"field_info" => Custom_Field::getDetails($_GET['custom_field'])
));
}
$tpl->displayTemplate();