mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 17:52:43 +01:00
809e5a0389
Summary: Fixes T4408. I had to add a "status" to colum. I think we'll need this once we get fancier anyway but for now we have "active" and deleted. Test Plan: deleted a column. noted reloaded workboard with all those tasks back in the default colun. loaded a task and saw the initial transaction had a "Disabled" icon next to the deleted workboard. also saw the new transaction back to the default column worked. Reviewers: epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T4408 Differential Revision: https://secure.phabricator.com/D8544
86 lines
2 KiB
PHP
86 lines
2 KiB
PHP
<?php
|
|
|
|
final class PhabricatorProjectColumn
|
|
extends PhabricatorProjectDAO
|
|
implements PhabricatorPolicyInterface {
|
|
|
|
const STATUS_ACTIVE = 0;
|
|
const STATUS_DELETED = 1;
|
|
|
|
protected $name;
|
|
protected $status;
|
|
protected $projectPHID;
|
|
protected $sequence;
|
|
|
|
private $project = self::ATTACHABLE;
|
|
|
|
public static function initializeNewColumn(PhabricatorUser $user) {
|
|
return id(new PhabricatorProjectColumn())
|
|
->setName('')
|
|
->setStatus(self::STATUS_ACTIVE);
|
|
}
|
|
|
|
public function getConfiguration() {
|
|
return array(
|
|
self::CONFIG_AUX_PHID => true,
|
|
) + parent::getConfiguration();
|
|
}
|
|
|
|
public function generatePHID() {
|
|
return PhabricatorPHID::generateNewPHID(
|
|
PhabricatorProjectPHIDTypeColumn::TYPECONST);
|
|
}
|
|
|
|
public function attachProject(PhabricatorProject $project) {
|
|
$this->project = $project;
|
|
return $this;
|
|
}
|
|
|
|
public function getProject() {
|
|
return $this->assertAttached($this->project);
|
|
}
|
|
|
|
public function isDefaultColumn() {
|
|
return ($this->getSequence() == 0);
|
|
}
|
|
|
|
public function getDisplayName() {
|
|
if ($this->isDefaultColumn()) {
|
|
return pht('Backlog');
|
|
}
|
|
return $this->getName();
|
|
}
|
|
|
|
public function getHeaderColor() {
|
|
if ($this->isDefaultColumn()) {
|
|
return PhabricatorActionHeaderView::HEADER_DARK_GREY;
|
|
}
|
|
return PhabricatorActionHeaderView::HEADER_GREY;
|
|
}
|
|
|
|
|
|
/* -( PhabricatorPolicyInterface )----------------------------------------- */
|
|
|
|
|
|
public function getCapabilities() {
|
|
return array(
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
PhabricatorPolicyCapability::CAN_EDIT,
|
|
);
|
|
}
|
|
|
|
public function getPolicy($capability) {
|
|
return $this->getProject()->getPolicy($capability);
|
|
}
|
|
|
|
public function hasAutomaticCapability($capability, PhabricatorUser $viewer) {
|
|
return $this->getProject()->hasAutomaticCapability(
|
|
$capability,
|
|
$viewer);
|
|
}
|
|
|
|
public function describeAutomaticCapability($capability) {
|
|
return pht('Users must be able to see a project to see its board.');
|
|
}
|
|
|
|
}
|