Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F971988
PHUIDocumentView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
4 KB
Referenced Files
None
Subscribers
None
PHUIDocumentView.php
View Options
<?php
final
class
PHUIDocumentView
extends
AphrontTagView
{
private
$header
;
private
$bookname
;
private
$bookdescription
;
private
$fluid
;
private
$toc
;
private
$foot
;
private
$curtain
;
private
$banner
;
public
function
setHeader
(
PHUIHeaderView
$header
)
{
$header
->
setTall
(
true
);
$this
->
header
=
$header
;
return
$this
;
}
public
function
setBook
(
$name
,
$description
)
{
$this
->
bookname
=
$name
;
$this
->
bookdescription
=
$description
;
return
$this
;
}
public
function
setFluid
(
$fluid
)
{
$this
->
fluid
=
$fluid
;
return
$this
;
}
public
function
setToc
(
$toc
)
{
$this
->
toc
=
$toc
;
return
$this
;
}
public
function
setFoot
(
$foot
)
{
$this
->
foot
=
$foot
;
return
$this
;
}
public
function
setCurtain
(
PHUICurtainView
$curtain
)
{
$this
->
curtain
=
$curtain
;
return
$this
;
}
public
function
getCurtain
()
{
return
$this
->
curtain
;
}
public
function
setBanner
(
$banner
)
{
$this
->
banner
=
$banner
;
return
$this
;
}
public
function
getBanner
()
{
return
$this
->
banner
;
}
protected
function
getTagAttributes
()
{
$classes
=
array
();
$classes
[]
=
'phui-document-container'
;
if
(
$this
->
fluid
)
{
$classes
[]
=
'phui-document-fluid'
;
}
if
(
$this
->
foot
)
{
$classes
[]
=
'document-has-foot'
;
}
return
array
(
'class'
=>
implode
(
' '
,
$classes
),
);
}
protected
function
getTagContent
()
{
require_celerity_resource
(
'phui-document-view-css'
);
require_celerity_resource
(
'phui-document-view-pro-css'
);
Javelin
::
initBehavior
(
'phabricator-reveal-content'
);
$classes
=
array
();
$classes
[]
=
'phui-document-view'
;
$classes
[]
=
'phui-document-view-pro'
;
if
(
$this
->
curtain
)
{
$classes
[]
=
'has-curtain'
;
}
else
{
$classes
[]
=
'has-no-curtain'
;
}
if
(
$this
->
curtain
)
{
$action_list
=
$this
->
curtain
->
getActionList
();
$this
->
header
->
setActionListID
(
$action_list
->
getID
());
}
$book
=
null
;
if
(
$this
->
bookname
)
{
$book
=
pht
(
'%s (%s)'
,
$this
->
bookname
,
$this
->
bookdescription
);
}
$main_content
=
$this
->
renderChildren
();
if
(
$book
)
{
$this
->
header
->
setSubheader
(
$book
);
}
$table_of_contents
=
null
;
if
(
$this
->
toc
)
{
$toc
=
array
();
$toc_id
=
celerity_generate_unique_node_id
();
$toc
[]
=
id
(
new
PHUIButtonView
())
->
setTag
(
'a'
)
->
setIcon
(
'fa-align-left'
)
->
setButtonType
(
PHUIButtonView
::
BUTTONTYPE_SIMPLE
)
->
addClass
(
'phui-document-toc'
)
->
addSigil
(
'jx-toggle-class'
)
->
setMetaData
(
array
(
'map'
=>
array
(
$toc_id
=>
'phui-document-toc-open'
,
),
));
$toc
[]
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phui-list-sidenav phui-document-toc-list'
,
),
$this
->
toc
);
$table_of_contents
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phui-document-toc-container'
,
'id'
=>
$toc_id
,
),
$toc
);
}
$foot_content
=
null
;
if
(
$this
->
foot
)
{
$foot_content
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phui-document-foot-content'
,
),
$this
->
foot
);
}
$curtain
=
null
;
if
(
$this
->
curtain
)
{
$curtain
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phui-document-curtain'
,
),
$this
->
curtain
);
}
$main_content
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phui-document-content-view'
,
),
$main_content
);
$content_inner
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phui-document-inner'
,
),
array
(
$table_of_contents
,
$this
->
header
,
$this
->
banner
,
phutil_tag
(
'div'
,
array
(
'class'
=>
'phui-document-content-outer'
,
),
phutil_tag
(
'div'
,
array
(
'class'
=>
'phui-document-content-inner'
,
),
array
(
$main_content
,
$curtain
,
))),
$foot_content
,
));
$content
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phui-document-content'
,
),
$content_inner
);
return
phutil_tag
(
'div'
,
array
(
'class'
=>
implode
(
' '
,
$classes
),
),
$content
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jun 18, 6:00 AM (1 d, 17 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
224078
Default Alt Text
PHUIDocumentView.php (4 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment