Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102362277
ReleephBranchPreviewView.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
Wed, Feb 19, 22:18
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Feb 21, 22:18 (2 d)
Engine
blob
Format
Raw Data
Handle
24338591
Attached To
rPH Phabricator
ReleephBranchPreviewView.php
View Options
<?php
final
class
ReleephBranchPreviewView
extends
AphrontFormControl
{
private
$statics
=
array
();
private
$dynamics
=
array
();
public
function
addControl
(
$param_name
,
AphrontFormControl
$control
)
{
$celerity_id
=
celerity_generate_unique_node_id
();
$control
->
setID
(
$celerity_id
);
$this
->
dynamics
[
$param_name
]
=
$celerity_id
;
return
$this
;
}
public
function
addStatic
(
$param_name
,
$value
)
{
$this
->
statics
[
$param_name
]
=
$value
;
return
$this
;
}
protected
function
getCustomControlClass
()
{
require_celerity_resource
(
'releeph-preview-branch'
);
return
'releeph-preview-branch'
;
}
protected
function
renderInput
()
{
static
$required_params
=
array
(
'arcProjectID'
,
'projectName'
,
'isSymbolic'
,
'template'
,
);
$all_params
=
array_merge
(
$this
->
statics
,
$this
->
dynamics
);
foreach
(
$required_params
as
$param_name
)
{
if
(
idx
(
$all_params
,
$param_name
)
===
null
)
{
throw
new
Exception
(
pht
(
"'%s' is not set as either a static or dynamic!"
,
$param_name
));
}
}
$output_id
=
celerity_generate_unique_node_id
();
Javelin
::
initBehavior
(
'releeph-preview-branch'
,
array
(
'uri'
=>
'/releeph/branch/preview/'
,
'outputID'
=>
$output_id
,
'params'
=>
array
(
'static'
=>
$this
->
statics
,
'dynamic'
=>
$this
->
dynamics
,
),
));
return
phutil_tag
(
'div'
,
array
(
'id'
=>
$output_id
,
),
''
);
}
}
Event Timeline
Log In to Comment