本文整理匯總了PHP中PhabricatorProject::supportsSubprojects方法的典型用法代碼示例。如果您正苦於以下問題:PHP PhabricatorProject::supportsSubprojects方法的具體用法?PHP PhabricatorProject::supportsSubprojects怎麽用?PHP PhabricatorProject::supportsSubprojects使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類PhabricatorProject
的用法示例。
在下文中一共展示了PhabricatorProject::supportsSubprojects方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: buildPropertyList
private function buildPropertyList(PhabricatorProject $project, array $milestones, array $subprojects)
{
$viewer = $this->getViewer();
$view = id(new PHUIPropertyListView())->setUser($viewer);
$view->addProperty(pht('Prototype'), $this->renderStatus('fa-exclamation-triangle red', pht('Warning'), pht('Subprojects and milestones are only partially implemented.')));
if (!$project->supportsMilestones()) {
$milestone_status = $this->renderStatus('fa-times grey', pht('Already Milestone'), pht('This project is already a milestone, and milestones may not ' . 'have their own milestones.'));
} else {
if (!$milestones) {
$milestone_status = $this->renderStatus('fa-check grey', pht('None Created'), pht('You can create milestones for this project.'));
} else {
$milestone_status = $this->renderStatus('fa-check green', pht('Has Milestones'), pht('This project has milestones.'));
}
}
$view->addProperty(pht('Milestones'), $milestone_status);
if (!$project->supportsSubprojects()) {
$subproject_status = $this->renderStatus('fa-times grey', pht('Milestone'), pht('This project is a milestone, and milestones may not have ' . 'subprojects.'));
} else {
if (!$subprojects) {
$subproject_status = $this->renderStatus('fa-check grey', pht('None Created'), pht('You can create subprojects for this project.'));
} else {
$subproject_status = $this->renderStatus('fa-check green', pht('Has Subprojects'), pht('This project has subprojects.'));
}
}
$view->addProperty(pht('Subprojects'), $subproject_status);
return $view;
}