Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106904897
AphrontFormToggleButtonsControl.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, Apr 2, 08:33
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Apr 4, 08:33 (2 d)
Engine
blob
Format
Raw Data
Handle
25278664
Attached To
rPH Phabricator
AphrontFormToggleButtonsControl.php
View Options
<?php
final
class
AphrontFormToggleButtonsControl
extends
AphrontFormControl
{
private
$baseURI
;
private
$param
;
private
$buttons
;
public
function
setBaseURI
(
PhutilURI
$uri
,
$param
)
{
$this
->
baseURI
=
$uri
;
$this
->
param
=
$param
;
return
$this
;
}
public
function
setButtons
(
array
$buttons
)
{
$this
->
buttons
=
$buttons
;
return
$this
;
}
protected
function
getCustomControlClass
()
{
return
'aphront-form-control-togglebuttons'
;
}
protected
function
renderInput
()
{
if
(!
$this
->
baseURI
)
{
throw
new
Exception
(
'Call setBaseURI() before render()!'
);
}
$selected
=
$this
->
getValue
();
$out
=
array
();
foreach
(
$this
->
buttons
as
$value
=>
$label
)
{
if
(
$value
==
$selected
)
{
$more
=
' toggle-selected toggle-fixed'
;
}
else
{
$more
=
null
;
}
$out
[]
=
phutil_tag
(
'a'
,
array
(
'class'
=>
'toggle'
.
$more
,
'href'
=>
$this
->
baseURI
->
alter
(
$this
->
param
,
$value
),
),
$label
);
}
return
implode
(
''
,
$out
);
}
}
Event Timeline
Log In to Comment