1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-17 02:01:13 +01:00
phorge-phorge/src/view/form/PHUIInfoView.php

130 lines
2.5 KiB
PHP
Raw Normal View History

<?php
final class PHUIInfoView extends AphrontView {
2011-02-06 01:43:28 +01:00
const SEVERITY_ERROR = 'error';
const SEVERITY_WARNING = 'warning';
2011-02-06 07:36:21 +01:00
const SEVERITY_NOTICE = 'notice';
const SEVERITY_NODATA = 'nodata';
const SEVERITY_SUCCESS = 'success';
2011-02-06 01:43:28 +01:00
private $title;
private $errors;
2011-02-06 01:43:28 +01:00
private $severity;
private $id;
private $buttons = array();
private $isHidden;
public function setTitle($title) {
$this->title = $title;
return $this;
}
2011-02-06 01:43:28 +01:00
public function setSeverity($severity) {
$this->severity = $severity;
return $this;
}
public function setErrors(array $errors) {
$this->errors = $errors;
return $this;
}
public function setID($id) {
$this->id = $id;
return $this;
}
public function setIsHidden($bool) {
$this->isHidden = $bool;
return $this;
}
public function addButton(PHUIButtonView $button) {
$this->buttons[] = $button;
return $this;
}
public function render() {
require_celerity_resource('phui-info-view-css');
2011-02-06 01:43:28 +01:00
$errors = $this->errors;
if ($errors) {
$list = array();
foreach ($errors as $error) {
$list[] = phutil_tag(
'li',
array(),
$error);
}
$list = phutil_tag(
'ul',
array(
'class' => 'phui-info-view-list',
),
$list);
} else {
$list = null;
}
$title = $this->title;
if (strlen($title)) {
$title = phutil_tag(
'h1',
array(
'class' => 'phui-info-view-head',
),
$title);
} else {
$title = null;
}
2011-02-06 01:43:28 +01:00
$this->severity = nonempty($this->severity, self::SEVERITY_ERROR);
$classes = array();
$classes[] = 'phui-info-view';
$classes[] = 'phui-info-severity-'.$this->severity;
$classes[] = 'grouped';
$classes = implode(' ', $classes);
2011-02-06 01:43:28 +01:00
2013-02-13 23:50:15 +01:00
$children = $this->renderChildren();
if ($list) {
$children[] = $list;
}
$body = null;
if (!empty($children)) {
$body = phutil_tag(
'div',
array(
'class' => 'phui-info-view-body',
),
$children);
}
$buttons = null;
if (!empty($this->buttons)) {
$buttons = phutil_tag(
'div',
array(
'class' => 'phui-info-view-actions',
),
$this->buttons);
}
return phutil_tag(
'div',
array(
'id' => $this->id,
'class' => $classes,
'style' => $this->isHidden ? 'display: none;' : null,
),
array(
$buttons,
$title,
$body,
));
}
}