Changeset View
Changeset View
Standalone View
Standalone View
src/applications/owners/storage/PhabricatorOwnersPackage.php
| Show First 20 Lines • Show All 65 Lines • ▼ Show 20 Lines | final class PhabricatorOwnersPackage | ||||
| public static function getAutoreviewOptionsMap() { | public static function getAutoreviewOptionsMap() { | ||||
| return array( | return array( | ||||
| self::AUTOREVIEW_NONE => array( | self::AUTOREVIEW_NONE => array( | ||||
| 'name' => pht('No Autoreview'), | 'name' => pht('No Autoreview'), | ||||
| ), | ), | ||||
| self::AUTOREVIEW_SUBSCRIBE => array( | self::AUTOREVIEW_SUBSCRIBE => array( | ||||
| 'name' => pht('Subscribe to Changes'), | 'name' => pht('Subscribe to Changes'), | ||||
| ), | ), | ||||
| // TODO: Implement these. | self::AUTOREVIEW_REVIEW => array( | ||||
| // self::AUTOREVIEW_REVIEW => array( | 'name' => pht('Review Changes'), | ||||
| // 'name' => pht('Review Changes'), | ), | ||||
| // ), | self::AUTOREVIEW_BLOCK => array( | ||||
| // self::AUTOREVIEW_BLOCK => array( | 'name' => pht('Review Changes (Blocking)'), | ||||
| // 'name' => pht('Review Changes (Blocking)'), | ), | ||||
| // ), | |||||
| ); | ); | ||||
| } | } | ||||
| protected function getConfiguration() { | protected function getConfiguration() { | ||||
| return array( | return array( | ||||
| // This information is better available from the history table. | // This information is better available from the history table. | ||||
| self::CONFIG_TIMESTAMPS => false, | self::CONFIG_TIMESTAMPS => false, | ||||
| self::CONFIG_AUX_PHID => true, | self::CONFIG_AUX_PHID => true, | ||||
| ▲ Show 20 Lines • Show All 410 Lines • Show Last 20 Lines | |||||