mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-19 03:50:54 +01:00
Remove PHUICalendarWidgetView
Summary: This class is unused after D11547. Test Plan: `grep` Reviewers: chad, epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D12569
This commit is contained in:
parent
0275feb537
commit
8ce8a761ef
2 changed files with 0 additions and 41 deletions
|
@ -1150,7 +1150,6 @@ phutil_register_library_map(array(
|
|||
'PHUIButtonView' => 'view/phui/PHUIButtonView.php',
|
||||
'PHUICalendarListView' => 'view/phui/calendar/PHUICalendarListView.php',
|
||||
'PHUICalendarMonthView' => 'view/phui/calendar/PHUICalendarMonthView.php',
|
||||
'PHUICalendarWidgetView' => 'view/phui/calendar/PHUICalendarWidgetView.php',
|
||||
'PHUIColorPalletteExample' => 'applications/uiexample/examples/PHUIColorPalletteExample.php',
|
||||
'PHUICrumbView' => 'view/phui/PHUICrumbView.php',
|
||||
'PHUICrumbsView' => 'view/phui/PHUICrumbsView.php',
|
||||
|
@ -4449,7 +4448,6 @@ phutil_register_library_map(array(
|
|||
'PHUIButtonView' => 'AphrontTagView',
|
||||
'PHUICalendarListView' => 'AphrontTagView',
|
||||
'PHUICalendarMonthView' => 'AphrontView',
|
||||
'PHUICalendarWidgetView' => 'AphrontTagView',
|
||||
'PHUIColorPalletteExample' => 'PhabricatorUIExample',
|
||||
'PHUICrumbView' => 'AphrontView',
|
||||
'PHUICrumbsView' => 'AphrontView',
|
||||
|
|
|
@ -1,39 +0,0 @@
|
|||
<?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;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue