Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F950658
PHUIButtonBarView.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
PHUIButtonBarView.php
View Options
<?php
final
class
PHUIButtonBarView
extends
AphrontTagView
{
private
$buttons
=
array
();
private
$borderless
;
public
function
addButton
(
$button
)
{
$this
->
buttons
[]
=
$button
;
return
$this
;
}
public
function
setBorderless
(
$borderless
)
{
$this
->
borderless
=
$borderless
;
return
$this
;
}
protected
function
getTagAttributes
()
{
$classes
=
array
();
$classes
[]
=
'phui-button-bar'
;
if
(
$this
->
borderless
)
{
$classes
[]
=
'phui-button-bar-borderless'
;
}
return
array
(
'class'
=>
implode
(
' '
,
$classes
));
}
protected
function
getTagName
()
{
return
'span'
;
}
protected
function
getTagContent
()
{
require_celerity_resource
(
'phui-button-bar-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'
);
}
else
if
(
$i
==
$j
)
{
$button
->
addClass
(
'phui-button-bar-last'
);
}
else
if
(
$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
Tue, Jun 17, 2:13 PM (1 d, 8 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
224277
Default Alt Text
PHUIButtonBarView.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment