Changeset View
Changeset View
Standalone View
Standalone View
src/applications/release/config/PhabricatorReleaseConfigOptions.php
| Show All 28 Lines | return array( | ||||
| 'wild', | 'wild', | ||||
| array()) | array()) | ||||
| ->setSummary(pht('Custom fields for Releases.')) | ->setSummary(pht('Custom fields for Releases.')) | ||||
| ->setDescription(pht( | ->setDescription(pht( | ||||
| 'Array of custom fields for Release objects. For details, see '. | 'Array of custom fields for Release objects. For details, see '. | ||||
| '**[[ %s | Configuring Custom Fields ]]** in the documentation.', | '**[[ %s | Configuring Custom Fields ]]** in the documentation.', | ||||
| $custom_fields_href)), | $custom_fields_href)), | ||||
| $this->newOption( | $this->newOption( | ||||
| 'release.changerequest.customFields', | |||||
| 'wild', | |||||
| array()) | |||||
| ->setSummary(pht('Custom fields for Change Requests.')) | |||||
| ->setDescription(pht( | |||||
| 'Array of custom fields for Change Requests. For details, see '. | |||||
| '**[[ %s | Configuring Custom Fields ]]** in the documentation.', | |||||
| $custom_fields_href)), | |||||
| $this->newOption( | |||||
| 'release.show-debug-tools', | 'release.show-debug-tools', | ||||
| 'bool', | 'bool', | ||||
| true) | true) | ||||
| ->setDescription(pht( | ->setDescription(pht( | ||||
| 'Show some actions and options that are only useful for developing '. | 'Show some actions and options that are only useful for developing '. | ||||
| 'this prototype application.')), | 'this prototype application.')), | ||||
| ); | ); | ||||
| } | } | ||||
| } | } | ||||