Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122621139
ReleephFieldSelector.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
Mon, Jul 21, 01:54
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Jul 23, 01:54 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27527553
Attached To
rPH Phabricator
ReleephFieldSelector.php
View Options
<?php
abstract
class
ReleephFieldSelector
extends
Phobject
{
final
public
function
__construct
()
{
// <empty>
}
abstract
public
function
getFieldSpecifications
();
public
function
sortFieldsForCommitMessage
(
array
$fields
)
{
assert_instances_of
(
$fields
,
'ReleephFieldSpecification'
);
return
$fields
;
}
protected
static
function
selectFields
(
array
$fields
,
array
$classes
)
{
assert_instances_of
(
$fields
,
'ReleephFieldSpecification'
);
$map
=
array
();
foreach
(
$fields
as
$field
)
{
$map
[
get_class
(
$field
)]
=
$field
;
}
$result
=
array
();
foreach
(
$classes
as
$class
)
{
$field
=
idx
(
$map
,
$class
);
if
(!
$field
)
{
throw
new
Exception
(
pht
(
"Tried to select a in instance of '%s' but that field "
.
"is not configured for this project!"
,
$class
));
}
if
(
idx
(
$result
,
$class
))
{
throw
new
Exception
(
pht
(
"You have asked to select the field '%s' more than once!"
,
$class
));
}
$result
[
$class
]
=
$field
;
}
return
$result
;
}
}
Event Timeline
Log In to Comment