Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100720572
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
Sun, Feb 2, 04:39
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Feb 4, 04:39 (1 d, 20 h)
Engine
blob
Format
Raw Data
Handle
24020470
Attached To
rPH Phabricator
ReleephFieldSelector.php
View Options
<?php
/**
* Control the rendering of ReleephRequestHeaderView, and the layout of the
* ReleephRequest search dialog (in ReleephBranchViewController.)
*/
abstract
class
ReleephFieldSelector
{
final
public
function
__construct
()
{
// <empty>
}
abstract
public
function
getFieldSpecifications
();
abstract
public
function
arrangeFieldsForHeaderView
(
array
$fields
);
abstract
public
function
arrangeFieldsForSelectForm
(
array
$fields
);
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
(
"Tried to select a in instance of '{$class}' but that field "
.
"is not configured for this project!"
);
}
if
(
idx
(
$result
,
$class
))
{
throw
new
Exception
(
"You have asked to select the field '{$class}' "
.
"more than once!"
);
}
$result
[
$class
]
=
$field
;
}
return
$result
;
}
}
Event Timeline
Log In to Comment