Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96484255
PhabricatorReleephApplicationConfigOptions.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Dec 27, 04:38
Size
2 KB
Mime Type
text/x-php
Expires
Sun, Dec 29, 04:38 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23191281
Attached To
rPH Phabricator
PhabricatorReleephApplicationConfigOptions.php
View Options
<?php
final
class
PhabricatorReleephApplicationConfigOptions
extends
PhabricatorApplicationConfigOptions
{
public
function
getName
()
{
return
pht
(
'Releeph'
);
}
public
function
getDescription
()
{
return
pht
(
'Options for configuring Releeph, the release branch tool.'
);
}
public
function
getOptions
()
{
$default_fields
=
array
(
new
ReleephSummaryFieldSpecification
(),
new
ReleephRequestorFieldSpecification
(),
new
ReleephSeverityFieldSpecification
(),
new
ReleephIntentFieldSpecification
(),
new
ReleephReasonFieldSpecification
(),
new
ReleephAuthorFieldSpecification
(),
new
ReleephRevisionFieldSpecification
(),
new
ReleephOriginalCommitFieldSpecification
(),
new
ReleephBranchCommitFieldSpecification
(),
new
ReleephDiffSizeFieldSpecification
(),
new
ReleephDiffChurnFieldSpecification
(),
new
ReleephDiffMessageFieldSpecification
(),
new
ReleephCommitMessageFieldSpecification
(),
);
$default
=
array
();
foreach
(
$default_fields
as
$default_field
)
{
$default
[
$default_field
->
getFieldKey
()]
=
true
;
}
foreach
(
$default
as
$key
=>
$enabled
)
{
$default
[
$key
]
=
array
(
'disabled'
=>
!
$enabled
,
);
}
$custom_field_type
=
'custom:PhabricatorCustomFieldConfigOptionType'
;
return
array
(
$this
->
newOption
(
'releeph.installed'
,
'bool'
,
false
)
->
setSummary
(
pht
(
'Enable the Releeph application.'
))
->
setDescription
(
pht
(
'Releeph, a tool for managing release branches, will eventually '
.
'fit in to the Phabricator suite as a general purpose tool. '
.
'However Releeph is currently unstable in multiple ways that may '
.
'not migrate properly for you: the code is still in alpha stage '
.
'of design, the storage format is likely to change in unexpected '
.
'ways, and the workflows presented are very specific to a core '
.
'set of alpha testers at Facebook. For the time being you are '
.
'strongly discouraged from relying on Releeph being at all '
.
'stable.'
)),
$this
->
newOption
(
'releeph.fields'
,
$custom_field_type
,
$default
)
->
setCustomData
(
'ReleephFieldSpecification'
),
$this
->
newOption
(
'releeph.default-branch-template'
,
'string'
,
'releases/%P/%p-%Y%m%d-%v'
)
->
setDescription
(
pht
(
'The default branch template for new branches in unconfigured '
.
'Releeph projects. This is also configurable on a per-project '
.
'basis.'
)),
);
}
}
Event Timeline
Log In to Comment