* @license GNU General Public License, version 2 or later (GPL-2+) * * For the full copyright and license information, * please see the COPYING and AUTHORS files * that were distributed with this source code. */ require_once __DIR__ . '/../../init.php'; $tpl = new Template_Helper(); $tpl->setTemplate('manage/email_responses.tpl.html'); Auth::checkAuthentication(); $role_id = Auth::getCurrentRole(); if ($role_id < User::ROLE_MANAGER) { Misc::setMessage(ev_gettext('Sorry, you are not allowed to access this page.'), Misc::MSG_ERROR); $tpl->displayTemplate(); exit; } if (@$_POST['cat'] == 'new') { $res = Email_Response::insert(); Misc::mapMessages($res, array(1 => array(ev_gettext('Thank you, the email response was added successfully.'), Misc::MSG_INFO), -1 => array(ev_gettext('An error occurred while trying to add the new email response.'), Misc::MSG_INFO), -2 => array(ev_gettext('Please enter the title for this new issue resolution.'), Misc::MSG_ERROR))); } elseif (@$_POST['cat'] == 'update') { $res = Email_Response::update(); Misc::mapMessages($res, array(1 => array(ev_gettext('Thank you, the email response was updated successfully.'), Misc::MSG_INFO), -1 => array(ev_gettext('An error occurred while trying to update the new email response.'), Misc::MSG_INFO), -2 => array(ev_gettext('Please enter the title for this issue resolution.'), Misc::MSG_ERROR))); } elseif (@$_POST['cat'] == 'delete') { Email_Response::remove(); } if (@$_GET['cat'] == 'edit') { $tpl->assign('info', Email_Response::getDetails($_GET['id'])); } $tpl->assign('project_list', Project::getAll()); $tpl->assign('list', Email_Response::getList()); $tpl->displayTemplate();
include_once "../config.inc.php"; include_once APP_INC_PATH . "class.template.php"; include_once APP_INC_PATH . "class.auth.php"; include_once APP_INC_PATH . "class.user.php"; include_once APP_INC_PATH . "class.email_response.php"; include_once APP_INC_PATH . "db_access.php"; $tpl = new Template_API(); $tpl->setTemplate("manage/index.tpl.html"); Auth::checkAuthentication(APP_COOKIE); $tpl->assign("type", "email_responses"); $role_id = Auth::getCurrentRole(); if ($role_id == User::getRoleID('administrator') || $role_id == User::getRoleID('manager')) { if ($role_id == User::getRoleID('administrator')) { $tpl->assign("show_setup_links", true); } if (@$HTTP_POST_VARS["cat"] == "new") { $tpl->assign("result", Email_Response::insert()); } elseif (@$HTTP_POST_VARS["cat"] == "update") { $tpl->assign("result", Email_Response::update()); } elseif (@$HTTP_POST_VARS["cat"] == "delete") { Email_Response::remove(); } if (@$HTTP_GET_VARS["cat"] == "edit") { $tpl->assign("info", Email_Response::getDetails($HTTP_GET_VARS["id"])); } $tpl->assign("project_list", Project::getAll()); $tpl->assign("list", Email_Response::getList()); } else { $tpl->assign("show_not_allowed_msg", true); } $tpl->displayTemplate();