Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F103665807
PhabricatorWorkboardView.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
Mon, Mar 3, 20:48
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Mar 5, 20:48 (2 d)
Engine
blob
Format
Raw Data
Handle
24633246
Attached To
rPH Phabricator
PhabricatorWorkboardView.php
View Options
<?php
final
class
PhabricatorWorkboardView
extends
AphrontView
{
private
$panels
=
array
();
private
$fluidLayout
=
false
;
private
$actions
=
array
();
public
function
addPanel
(
PhabricatorWorkpanelView
$panel
)
{
$this
->
panels
[]
=
$panel
;
return
$this
;
}
public
function
setFluidLayout
(
$layout
)
{
$this
->
fluidLayout
=
$layout
;
return
$this
;
}
public
function
addAction
(
PhabricatorActionIconView
$action
)
{
$this
->
actions
[]
=
$action
;
return
$this
;
}
public
function
render
()
{
require_celerity_resource
(
'phabricator-workboard-view-css'
);
$action_list
=
null
;
if
(!
empty
(
$this
->
actions
))
{
$items
=
array
();
foreach
(
$this
->
actions
as
$action
)
{
$items
[]
=
phutil_tag
(
'li'
,
array
(
'class'
=>
'phabricator-workboard-action-item'
),
$action
);
}
$action_list
=
phutil_tag
(
'ul'
,
array
(
'class'
=>
'phabricator-workboard-action-list'
),
$items
);
}
$view
=
new
AphrontMultiColumnView
();
$view
->
setGutter
(
AphrontMultiColumnView
::
GUTTER_MEDIUM
);
$view
->
setFluidLayout
(
$this
->
fluidLayout
);
foreach
(
$this
->
panels
as
$panel
)
{
$view
->
addColumn
(
$panel
);
}
$board
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phabricator-workboard-view-shadow'
),
$view
);
return
phutil_tag
(
'div'
,
array
(
'class'
=>
'phabricator-workboard-view'
),
array
(
$action_list
,
$board
));
}
}
Event Timeline
Log In to Comment