Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107110600
PHUIWorkboardView.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
Fri, Apr 4, 18:12
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Apr 6, 18:12 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25348021
Attached To
rPH Phabricator
PHUIWorkboardView.php
View Options
<?php
final
class
PHUIWorkboardView
extends
AphrontTagView
{
private
$panels
=
array
();
private
$fluidLayout
=
false
;
private
$fluidishLayout
=
false
;
private
$actions
=
array
();
public
function
addPanel
(
PHUIWorkpanelView
$panel
)
{
$this
->
panels
[]
=
$panel
;
return
$this
;
}
public
function
setFluidLayout
(
$layout
)
{
$this
->
fluidLayout
=
$layout
;
return
$this
;
}
public
function
setFluidishLayout
(
$layout
)
{
$this
->
fluidishLayout
=
$layout
;
return
$this
;
}
public
function
addAction
(
PHUIIconView
$action
)
{
$this
->
actions
[]
=
$action
;
return
$this
;
}
protected
function
getTagAttributes
()
{
return
array
(
'class'
=>
'phui-workboard-view'
,
);
}
protected
function
getTagContent
()
{
require_celerity_resource
(
'phui-workboard-view-css'
);
$action_list
=
null
;
if
(!
empty
(
$this
->
actions
))
{
$items
=
array
();
foreach
(
$this
->
actions
as
$action
)
{
$items
[]
=
phutil_tag
(
'li'
,
array
(
'class'
=>
'phui-workboard-action-item'
,
),
$action
);
}
$action_list
=
phutil_tag
(
'ul'
,
array
(
'class'
=>
'phui-workboard-action-list'
,
),
$items
);
}
$view
=
new
AphrontMultiColumnView
();
$view
->
setGutter
(
AphrontMultiColumnView
::
GUTTER_MEDIUM
);
if
(
$this
->
fluidLayout
)
{
$view
->
setFluidLayout
(
$this
->
fluidLayout
);
}
if
(
$this
->
fluidishLayout
)
{
$view
->
setFluidishLayout
(
$this
->
fluidishLayout
);
}
foreach
(
$this
->
panels
as
$panel
)
{
$view
->
addColumn
(
$panel
);
}
$board
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phui-workboard-view-shadow'
,
),
$view
);
return
array
(
$action_list
,
$board
,
);
}
}
Event Timeline
Log In to Comment