Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F452510
AphrontFormToggleButtonsControl.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
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
$out
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 5, 12:40 AM (1 d, 10 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
68817
Default Alt Text
AphrontFormToggleButtonsControl.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment