本文整理汇总了PHP中Reminder::changeRank方法的典型用法代码示例。如果您正苦于以下问题:PHP Reminder::changeRank方法的具体用法?PHP Reminder::changeRank怎么用?PHP Reminder::changeRank使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Reminder
的用法示例。
在下文中一共展示了Reminder::changeRank方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array_flip
$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) {
示例2: array_flip
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']);