Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112268713
AphrontFormHandlesControl.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, May 9, 12:11
Size
1 KB
Mime Type
text/x-php
Expires
Sun, May 11, 12:11 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
26058465
Attached To
rPH Phabricator
AphrontFormHandlesControl.php
View Options
<?php
final
class
AphrontFormHandlesControl
extends
AphrontFormControl
{
private
$isInvisible
;
protected
function
getCustomControlClass
()
{
return
'aphront-form-control-handles'
;
}
public
function
setIsInvisible
(
$is_invisible
)
{
$this
->
isInvisible
=
$is_invisible
;
return
$this
;
}
public
function
getIsInvisible
()
{
return
$this
->
isInvisible
;
}
protected
function
shouldRender
()
{
return
(
bool
)
$this
->
getValue
();
}
public
function
getLabel
()
{
// TODO: This is a bit funky and still rendering a few pixels of padding
// on the form, but there's currently no way to get a control to only emit
// hidden inputs. Clean this up eventually.
if
(
$this
->
getIsInvisible
())
{
return
null
;
}
return
parent
::
getLabel
();
}
protected
function
renderInput
()
{
$value
=
$this
->
getValue
();
$viewer
=
$this
->
getUser
();
$out
=
array
();
if
(!
$this
->
getIsInvisible
())
{
$list
=
$viewer
->
renderHandleList
(
$value
);
$list
=
id
(
new
PHUIBoxView
())
->
addPadding
(
PHUI
::
PADDING_SMALL_TOP
)
->
appendChild
(
$list
);
$out
[]
=
$list
;
}
$inputs
=
array
();
foreach
(
$value
as
$phid
)
{
$inputs
[]
=
phutil_tag
(
'input'
,
array
(
'type'
=>
'hidden'
,
'name'
=>
$this
->
getName
().
'[]'
,
'value'
=>
$phid
,
));
}
$out
[]
=
$inputs
;
return
$out
;
}
}
Event Timeline
Log In to Comment