Changeset View
Changeset View
Standalone View
Standalone View
src/applications/project/storage/PhabricatorProjectColumn.php
| <?php | <?php | ||||
| final class PhabricatorProjectColumn | final class PhabricatorProjectColumn | ||||
| extends PhabricatorProjectDAO | extends PhabricatorProjectDAO | ||||
| implements | implements | ||||
| PhabricatorApplicationTransactionInterface, | PhabricatorApplicationTransactionInterface, | ||||
| PhabricatorPolicyInterface, | PhabricatorPolicyInterface, | ||||
| PhabricatorDestructibleInterface, | PhabricatorDestructibleInterface, | ||||
| PhabricatorExtendedPolicyInterface, | PhabricatorExtendedPolicyInterface, | ||||
| PhabricatorConduitResultInterface { | PhabricatorConduitResultInterface { | ||||
| const STATUS_ACTIVE = 0; | const STATUS_ACTIVE = 0; | ||||
| const STATUS_HIDDEN = 1; | const STATUS_HIDDEN = 1; | ||||
| const DEFAULT_ORDER = 'natural'; | |||||
| const ORDER_NATURAL = 'natural'; | |||||
| const ORDER_PRIORITY = 'priority'; | |||||
| const NODETYPE_HEADER = 0; | |||||
| const NODETYPE_CARD = 1; | |||||
| protected $name; | protected $name; | ||||
| protected $status; | protected $status; | ||||
| protected $projectPHID; | protected $projectPHID; | ||||
| protected $proxyPHID; | protected $proxyPHID; | ||||
| protected $sequence; | protected $sequence; | ||||
| protected $properties = array(); | protected $properties = array(); | ||||
| private $project = self::ATTACHABLE; | private $project = self::ATTACHABLE; | ||||
| ▲ Show 20 Lines • Show All 268 Lines • Show Last 20 Lines | |||||