include_once APP_INC_PATH . "class.issue.php"; $tpl = new Template_API(); $tpl->setTemplate("manage/index.tpl.html"); Auth::checkAuthentication(APP_COOKIE); $tpl->assign("type", "reminders"); $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", Reminder::insert()); } elseif (@$HTTP_POST_VARS["cat"] == "update") { $tpl->assign("result", Reminder::update()); } elseif (@$HTTP_POST_VARS["cat"] == "delete") { Reminder::remove(); } if (@$HTTP_GET_VARS["cat"] == "edit") { $info = Reminder::getDetails($HTTP_GET_VARS["id"]); if (!empty($HTTP_GET_VARS['prj_id'])) { $info['rem_prj_id'] = $HTTP_GET_VARS['prj_id']; } // only show customers and support levels if the selected project really needs it $project_has_customer_integration = Customer::hasCustomerIntegration($info['rem_prj_id']); $tpl->assign("project_has_customer_integration", $project_has_customer_integration); if ($project_has_customer_integration) { $tpl->assign("customers", Customer::getAssocList($info['rem_prj_id'])); $backend_uses_support_levels = Customer::doesBackendUseSupportLevels($info['rem_prj_id']); if ($backend_uses_support_levels) { $tpl->assign("support_levels", Customer::getSupportLevelAssocList($info['rem_prj_id'])); }