Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90544723
DivinerSectionView.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
Sat, Nov 2, 15:18
Size
822 B
Mime Type
text/x-php
Expires
Mon, Nov 4, 15:18 (2 d)
Engine
blob
Format
Raw Data
Handle
22074761
Attached To
rPH Phabricator
DivinerSectionView.php
View Options
<?php
final
class
DivinerSectionView
extends
AphrontTagView
{
private
$header
;
private
$content
;
public
function
addContent
(
$content
)
{
$this
->
content
[]
=
$content
;
return
$this
;
}
public
function
setHeader
(
$text
)
{
$this
->
header
=
$text
;
return
$this
;
}
protected
function
getTagName
()
{
return
'div'
;
}
protected
function
getTagAttributes
()
{
return
array
(
'class'
=>
'diviner-document-section'
,
);
}
protected
function
getTagContent
()
{
require_celerity_resource
(
'diviner-shared-css'
);
$header
=
id
(
new
PHUIHeaderView
())
->
setBleedHeader
(
true
)
->
addClass
(
'diviner-section-header'
)
->
setHeader
(
$this
->
header
);
$content
=
phutil_tag_div
(
'diviner-section-content'
,
$this
->
content
);
return
array
(
$header
,
$content
);
}
}
Event Timeline
Log In to Comment