Differential D13200 Diff 31965 src/applications/maniphest/config/PhabricatorManiphestConfigOptions.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/maniphest/config/PhabricatorManiphestConfigOptions.php
| Show First 20 Lines • Show All 206 Lines • ▼ Show 20 Lines | |||||
| Examining the default configuration and examples below will probably be helpful | Examining the default configuration and examples below will probably be helpful | ||||
| in understanding these options. | in understanding these options. | ||||
| EOTEXT | EOTEXT | ||||
| )); | )); | ||||
| $status_example = array( | $status_example = array( | ||||
| 'open' => array( | 'open' => array( | ||||
| 'name' => 'Open', | 'name' => pht('Open'), | ||||
| 'special' => 'default', | 'special' => 'default', | ||||
| ), | ), | ||||
| 'closed' => array( | 'closed' => array( | ||||
| 'name' => 'Closed', | 'name' => pht('Closed'), | ||||
| 'special' => 'closed', | 'special' => 'closed', | ||||
| 'closed' => true, | 'closed' => true, | ||||
| ), | ), | ||||
| 'duplicate' => array( | 'duplicate' => array( | ||||
| 'name' => 'Duplicate', | 'name' => pht('Duplicate'), | ||||
| 'special' => 'duplicate', | 'special' => 'duplicate', | ||||
| 'closed' => true, | 'closed' => true, | ||||
| ), | ), | ||||
| ); | ); | ||||
| $json = new PhutilJSON(); | $json = new PhutilJSON(); | ||||
| $status_example = $json->encodeFormatted($status_example); | $status_example = $json->encodeFormatted($status_example); | ||||
| ▲ Show 20 Lines • Show All 95 Lines • Show Last 20 Lines | |||||