Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F995783
PHUIBoxView.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
PHUIBoxView.php
View Options
<?php
final
class
PHUIBoxView
extends
AphrontTagView
{
private
$margin
=
array
();
private
$padding
=
array
();
private
$border
=
false
;
public
function
addMargin
(
$margin
)
{
$this
->
margin
[]
=
$margin
;
return
$this
;
}
public
function
addPadding
(
$padding
)
{
$this
->
padding
[]
=
$padding
;
return
$this
;
}
public
function
setBorder
(
$border
)
{
$this
->
border
=
$border
;
return
$this
;
}
protected
function
getTagAttributes
()
{
$outer_classes
=
array
();
$outer_classes
[]
=
'phui-box'
;
if
(
$this
->
border
)
{
$outer_classes
[]
=
'phui-box-border'
;
}
foreach
(
$this
->
margin
as
$margin
)
{
$outer_classes
[]
=
$margin
;
}
return
array
(
'class'
=>
$outer_classes
);
}
public
function
getTagName
()
{
return
'div'
;
}
public
function
getTagContent
()
{
require_celerity_resource
(
'phui-box-css'
);
$inner_classes
=
array
();
$inner_classes
[]
=
'phui-box-inner'
;
foreach
(
$this
->
padding
as
$padding
)
{
$inner_classes
[]
=
$padding
;
}
return
phutil_tag
(
'div'
,
array
(
'class'
=>
implode
(
' '
,
$inner_classes
)
),
$this
->
renderChildren
());
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Jun 19, 1:06 AM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
241539
Default Alt Text
PHUIBoxView.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment