Exemple #1
0
         $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']));
         }
         $tpl->assign("backend_uses_support_levels", $backend_uses_support_levels);
     }
     $tpl->assign('issues', Reminder::getIssueAssocListByProject($info['rem_prj_id']));
     $tpl->assign("info", $info);
     // wouldn't make much sense to create a reminder for a 'Not Prioritized'
     // issue, so let's remove that as an option
     $priorities = array_flip(Priority::getAssocList($info['rem_prj_id']));
     unset($priorities['Not Prioritized']);
     $tpl->assign("priorities", array_flip($priorities));
 } elseif (@$HTTP_GET_VARS["cat"] == "change_rank") {
     Reminder::changeRank($HTTP_GET_VARS['id'], $HTTP_GET_VARS['rank']);
 } elseif (!empty($HTTP_GET_VARS['prj_id'])) {
     $tpl->assign("info", array('rem_prj_id' => $HTTP_GET_VARS['prj_id']));
     $tpl->assign('issues', Reminder::getIssueAssocListByProject($HTTP_GET_VARS['prj_id']));
     // wouldn't make much sense to create a reminder for a 'Not Prioritized'
     // issue, so let's remove that as an option
     $priorities = array_flip(Priority::getAssocList($HTTP_GET_VARS['prj_id']));
     unset($priorities['Not Prioritized']);
     $tpl->assign("priorities", array_flip($priorities));
     // only show customers and support levels if the selected project really needs it
     $project_has_customer_integration = Customer::hasCustomerIntegration($HTTP_GET_VARS['prj_id']);
     $tpl->assign("project_has_customer_integration", $project_has_customer_integration);
     if ($project_has_customer_integration) {
         $tpl->assign("customers", Customer::getAssocList($HTTP_GET_VARS['prj_id']));
         $backend_uses_support_levels = Customer::doesBackendUseSupportLevels($HTTP_GET_VARS['prj_id']);
         if ($backend_uses_support_levels) {
Exemple #2
0
    if ($project_has_customer_integration) {
        $crm = CRM::getInstance($info['rem_prj_id']);
        $tpl->assign('customers', $crm->getCustomerAssocList());
        $tpl->assign('support_levels', $crm->getSupportLevelAssocList());
    }
    $tpl->assign('issues', Reminder::getIssueAssocListByProject($info['rem_prj_id']));
    $tpl->assign('info', $info);
    // wouldn't make much sense to create a reminder for a 'Not Prioritized'
    // issue, so let's remove that as an option
    $priorities = array_flip(Priority::getAssocList($info['rem_prj_id']));
    unset($priorities['Not Prioritized']);
    $tpl->assign('priorities', array_flip($priorities));
    $tpl->assign('severities', Severity::getAssocList($info['rem_prj_id']));
    $tpl->assign('products', Product::getAssocList());
} elseif (@$_GET['cat'] == 'change_rank') {
    Reminder::changeRank($_GET['id'], $_GET['rank']);
} elseif (!empty($_GET['prj_id'])) {
    $tpl->assign('info', array('rem_prj_id' => $_GET['prj_id']));
    $tpl->assign('issues', Reminder::getIssueAssocListByProject($_GET['prj_id']));
    // wouldn't make much sense to create a reminder for a 'Not Prioritized'
    // issue, so let's remove that as an option
    $priorities = array_flip(Priority::getAssocList($_GET['prj_id']));
    unset($priorities['Not Prioritized']);
    $tpl->assign('priorities', array_flip($priorities));
    $tpl->assign('severities', Severity::getAssocList($_GET['prj_id']));
    $tpl->assign('products', Product::getAssocList());
    // only show customers and support levels if the selected project really needs it
    $project_has_customer_integration = CRM::hasCustomerIntegration($_GET['prj_id']);
    $tpl->assign('project_has_customer_integration', $project_has_customer_integration);
    if ($project_has_customer_integration) {
        $crm = CRM::getInstance($_GET['prj_id']);