Page Menu
Home
GnuPG
Search
Configure Global Search
Log In
Files
F29935094
PHUIButtonBarView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Size
923 B
Subscribers
None
PHUIButtonBarView.php
View Options
<?php
final
class
PHUIButtonBarView
extends
AphrontTagView
{
private
$buttons
=
array
();
public
function
addButton
(
$button
)
{
$this
->
buttons
[]
=
$button
;
return
$this
;
}
protected
function
getTagAttributes
()
{
return
array
(
'class'
=>
'phui-button-bar'
);
}
public
function
getTagName
()
{
return
'div'
;
}
public
function
getTagContent
()
{
require_celerity_resource
(
'phui-button-css'
);
$i
=
1
;
$j
=
count
(
$this
->
buttons
);
foreach
(
$this
->
buttons
as
$button
)
{
// LeeLoo Dallas Multi-Pass
if
(
$j
>
1
)
{
if
(
$i
==
1
)
{
$button
->
addClass
(
'phui-button-bar-first'
);
}
elseif
(
$i
==
$j
)
{
$button
->
addClass
(
'phui-button-bar-last'
);
}
elseif
(
$j
>
1
)
{
$button
->
addClass
(
'phui-button-bar-middle'
);
}
}
$this
->
appendChild
(
$button
);
$i
++;
}
return
$this
->
renderChildren
();
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Oct 17, 7:58 AM (1 d, 17 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
02/86/f29d2d411c7ead9b3b74fc5a6f5f
Attached To
rPHAB Phabricator
Event Timeline
Log In to Comment