mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-10 06:41:04 +01:00
48561a8b1f
Summary: Created with spatch: lang=diff - phutil_render_tag + phutil_tag (X, Y, - phutil_escape_html( Z - ) ) Test Plan: Loaded homepage Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4501
48 lines
934 B
PHP
48 lines
934 B
PHP
<?php
|
|
|
|
final class PhabricatorApplicationStatusView extends AphrontView {
|
|
|
|
private $count;
|
|
private $text;
|
|
private $type;
|
|
|
|
const TYPE_NEEDS_ATTENTION = 'needs';
|
|
const TYPE_INFO = 'info';
|
|
const TYPE_OKAY = 'okay';
|
|
const TYPE_WARNING = 'warning';
|
|
const TYPE_EMPTY = 'empty';
|
|
|
|
public function setType($type) {
|
|
$this->type = $type;
|
|
return $this;
|
|
}
|
|
|
|
public function setText($text) {
|
|
$this->text = $text;
|
|
return $this;
|
|
}
|
|
|
|
public function setCount($count) {
|
|
$this->count = $count;
|
|
return $this;
|
|
}
|
|
|
|
public function getCount() {
|
|
return $this->count;
|
|
}
|
|
|
|
public function render() {
|
|
$classes = array(
|
|
'phabricator-application-status',
|
|
'phabricator-application-status-type-'.$this->type,
|
|
);
|
|
|
|
return phutil_tag(
|
|
'span',
|
|
array(
|
|
'class' => implode(' ', $classes),
|
|
),
|
|
$this->text);
|
|
}
|
|
|
|
}
|