Page MenuHomePhorge

DivinerSectionView.php
No OneTemporary

Size
870 B
Referenced Files
None
Subscribers
None

DivinerSectionView.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;
}
protected function getTagName() {
return 'div';
}
protected function getTagAttributes() {
return array(
'class' => 'diviner-document-section',
);
}
protected function getTagContent() {
require_celerity_resource('diviner-shared-css');
$header = id(new PHUIHeaderView())
->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);
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, Jun 30, 11:11 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
265794
Default Alt Text
DivinerSectionView.php (870 B)

Event Timeline