mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 16:22:43 +01:00
Config Projects Extra Fields: link to the doc (like User)
Summary: Add a documentation link in a specific Config page, that is: Config > Setting > projects.custom-field-definitions Comparison example: | User | People | |-----------|------------| |{F1633919} | {F1633920} | This change is a boring follow-up of this one: https://we.phorge.it/D25507 Test Plan: Visit the page and click on the new link: - /config/edit/projects.custom-field-definitions/ Visit this page that was the inspirational page: - /config/edit/user.custom-field-definitions/ Check that no nuclear implosion is raised. Reviewers: O1 Blessed Committers, aklapper Reviewed By: O1 Blessed Committers, aklapper Subscribers: aklapper, tobiaswiese, Matthew, Cigaryno Differential Revision: https://we.phorge.it/D25552
This commit is contained in:
parent
216d308507
commit
48e121c485
1 changed files with 11 additions and 3 deletions
|
@ -105,6 +105,16 @@ EOTEXT
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
$fields_description = $this->deformat(pht(<<<EOTEXT
|
||||||
|
List of custom fields for project tags.
|
||||||
|
|
||||||
|
For details on adding new fields, see [[ %s | %s ]] in the
|
||||||
|
documentation.
|
||||||
|
EOTEXT
|
||||||
|
,
|
||||||
|
PhabricatorEnv::getDoclink('Configuring Custom Fields'),
|
||||||
|
pht('Configuring Custom Fields')));
|
||||||
|
|
||||||
$subtype_description = $this->deformat(pht(<<<EOTEXT
|
$subtype_description = $this->deformat(pht(<<<EOTEXT
|
||||||
Allows you to define project subtypes. For a more detailed description of
|
Allows you to define project subtypes. For a more detailed description of
|
||||||
subtype configuration, see @{config:maniphest.subtypes}.
|
subtype configuration, see @{config:maniphest.subtypes}.
|
||||||
|
@ -114,9 +124,7 @@ EOTEXT
|
||||||
return array(
|
return array(
|
||||||
$this->newOption('projects.custom-field-definitions', 'wild', array())
|
$this->newOption('projects.custom-field-definitions', 'wild', array())
|
||||||
->setSummary(pht('Custom Projects fields.'))
|
->setSummary(pht('Custom Projects fields.'))
|
||||||
->setDescription(
|
->setDescription($fields_description)
|
||||||
pht(
|
|
||||||
'Array of custom fields for Projects.'))
|
|
||||||
->addExample(
|
->addExample(
|
||||||
'{"mycompany:motto": {"name": "Project Motto", '.
|
'{"mycompany:motto": {"name": "Project Motto", '.
|
||||||
'"type": "text"}}',
|
'"type": "text"}}',
|
||||||
|
|
Loading…
Reference in a new issue