mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 03:12:41 +01:00
d06788c1e5
Summary: This is just renaming to PHUI (I like shorter text :) Test Plan: reload workboard examples page, seems to not fatal and looks very appealing Reviewers: epriestley Reviewed By: epriestley CC: Korvin, aran Differential Revision: https://secure.phabricator.com/D6904
70 lines
1.5 KiB
PHP
70 lines
1.5 KiB
PHP
<?php
|
|
|
|
final class PHUIWorkboardView extends AphrontView {
|
|
|
|
private $panels = array();
|
|
private $fluidLayout = 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 addAction(PHUIIconView $action) {
|
|
$this->actions[] = $action;
|
|
return $this;
|
|
}
|
|
|
|
public function render() {
|
|
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);
|
|
$view->setFluidLayout($this->fluidLayout);
|
|
foreach ($this->panels as $panel) {
|
|
$view->addColumn($panel);
|
|
}
|
|
|
|
$board = phutil_tag(
|
|
'div',
|
|
array(
|
|
'class' => 'phui-workboard-view-shadow'
|
|
),
|
|
$view);
|
|
|
|
return phutil_tag(
|
|
'div',
|
|
array(
|
|
'class' => 'phui-workboard-view'
|
|
),
|
|
array(
|
|
$action_list,
|
|
$board
|
|
));
|
|
}
|
|
}
|