mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 17:52:43 +01:00
14ae5eee1c
Summary: This reverts commit 8ce8a761ef
.
Test Plan: N/A
Reviewers: chad, #blessed_reviewers, epriestley
Reviewed By: #blessed_reviewers, epriestley
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D12573
39 lines
789 B
PHP
39 lines
789 B
PHP
<?php
|
|
|
|
final class PHUICalendarWidgetView extends AphrontTagView {
|
|
|
|
private $header;
|
|
private $list;
|
|
|
|
public function setHeader($date) {
|
|
$this->header = $date;
|
|
return $this;
|
|
}
|
|
|
|
public function setCalendarList(PHUICalendarListView $list) {
|
|
$this->list = $list;
|
|
return $this;
|
|
}
|
|
|
|
protected function getTagName() {
|
|
return 'div';
|
|
}
|
|
|
|
protected function getTagAttributes() {
|
|
require_celerity_resource('phui-calendar-list-css');
|
|
return array('class' => 'phui-calendar-list-container');
|
|
}
|
|
|
|
protected function getTagContent() {
|
|
|
|
$header = id(new PHUIHeaderView())
|
|
->setHeader($this->header);
|
|
|
|
$box = id(new PHUIObjectBoxView())
|
|
->setHeader($header)
|
|
->setFlush(true)
|
|
->appendChild($this->list);
|
|
|
|
return $box;
|
|
}
|
|
}
|