mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 03:02:43 +01:00
44 lines
868 B
PHP
44 lines
868 B
PHP
|
<?php
|
||
|
|
||
|
final class DivinerSectionView extends AphrontTagView {
|
||
|
|
||
|
private $header;
|
||
|
private $content;
|
||
|
|
||
|
public function addContent($content) {
|
||
|
$this->content[] = $content;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function setHeader($text) {
|
||
|
$this->header = $text;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function getTagName() {
|
||
|
return 'div';
|
||
|
}
|
||
|
|
||
|
public function getTagAttributes() {
|
||
|
return array(
|
||
|
'class' => 'diviner-document-section',
|
||
|
);
|
||
|
}
|
||
|
|
||
|
public function getTagContent() {
|
||
|
require_celerity_resource('diviner-shared-css');
|
||
|
|
||
|
$header = id(new PhabricatorHeaderView())
|
||
|
->setBleedHeader(true)
|
||
|
->setHeader($this->header);
|
||
|
|
||
|
$content = id(new PHUIBoxView())
|
||
|
->addPadding(PHUI::PADDING_LARGE_LEFT)
|
||
|
->addPadding(PHUI::PADDING_LARGE_RIGHT)
|
||
|
->appendChild($this->content);
|
||
|
|
||
|
return array($header, $content);
|
||
|
}
|
||
|
|
||
|
}
|