本文整理匯總了PHP中thebuggenie\core\entities\Issue::getFirstAffectedBuild方法的典型用法代碼示例。如果您正苦於以下問題:PHP Issue::getFirstAffectedBuild方法的具體用法?PHP Issue::getFirstAffectedBuild怎麽用?PHP Issue::getFirstAffectedBuild使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類thebuggenie\core\entities\Issue
的用法示例。
在下文中一共展示了Issue::getFirstAffectedBuild方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: resultGrouping
static function resultGrouping(entities\Issue $issue, $groupby, $cc, $prevgroup_id)
{
$i18n = framework\Context::getI18n();
$showtablestart = false;
$showheader = false;
$groupby_id = 0;
$groupby_description = '';
if ($cc == 1) {
$showtablestart = true;
}
if ($groupby != '') {
switch ($groupby) {
case 'category':
if ($issue->getCategory() instanceof entities\Category) {
$groupby_id = $issue->getCategory()->getID();
$groupby_description = $issue->getCategory()->getName();
} else {
$groupby_id = 0;
$groupby_description = $i18n->__('Unknown');
}
break;
case 'status':
if ($issue->getStatus() instanceof entities\Status) {
$groupby_id = $issue->getStatus()->getID();
$groupby_description = $issue->getStatus()->getName();
} else {
$groupby_id = 0;
$groupby_description = $i18n->__('Unknown');
}
break;
case 'severity':
if ($issue->getSeverity() instanceof entities\Severity) {
$groupby_id = $issue->getSeverity()->getID();
$groupby_description = $issue->getSeverity()->getName();
} else {
$groupby_id = 0;
$groupby_description = $i18n->__('Unknown');
}
break;
case 'resolution':
if ($issue->getResolution() instanceof entities\Resolution) {
$groupby_id = $issue->getResolution()->getID();
$groupby_description = $issue->getResolution()->getName();
} else {
$groupby_id = 0;
$groupby_description = $i18n->__('Unknown');
}
break;
case 'edition':
if ($issue->getEditions()) {
$groupby_id = $issue->getFirstAffectedEdition()->getID();
$groupby_description = $issue->getFirstAffectedEdition()->getName();
} else {
$groupby_id = 0;
$groupby_description = $i18n->__('None');
}
break;
case 'build':
if ($issue->getBuilds()) {
$groupby_id = $issue->getFirstAffectedBuild()->getID();
$groupby_description = $issue->getFirstAffectedBuild()->getName();
} else {
$groupby_id = 0;
$groupby_description = $i18n->__('None');
}
break;
case 'component':
if ($issue->getComponents()) {
$groupby_id = $issue->getFirstAffectedComponent()->getID();
$groupby_description = $issue->getFirstAffectedComponent()->getName();
} else {
$groupby_id = 0;
$groupby_description = $i18n->__('None');
}
break;
case 'priority':
if ($issue->getPriority() instanceof entities\Priority) {
$groupby_id = $issue->getPriority()->getID();
$groupby_description = $issue->getPriority()->getName();
} else {
$groupby_id = 0;
$groupby_description = $i18n->__('Unknown');
}
break;
case 'issuetype':
if ($issue->getIssueType() instanceof entities\Issuetype) {
$groupby_id = $issue->getIssueType()->getID();
$groupby_description = $issue->getIssueType()->getName();
} else {
$groupby_id = 0;
$groupby_description = $i18n->__('Unknown');
}
break;
case 'milestone':
if ($issue->getMilestone() instanceof entities\Milestone) {
$groupby_id = $issue->getMilestone()->getID();
$groupby_description = $issue->getMilestone()->getName();
} else {
$groupby_id = 0;
$groupby_description = $i18n->__('Not targetted');
//.........這裏部分代碼省略.........