Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14034070
D12569.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D12569.diff
View Options
diff --git a/src/__phutil_library_map__.php b/src/__phutil_library_map__.php
--- a/src/__phutil_library_map__.php
+++ b/src/__phutil_library_map__.php
@@ -1150,7 +1150,6 @@
'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 @@
'PHUIButtonView' => 'AphrontTagView',
'PHUICalendarListView' => 'AphrontTagView',
'PHUICalendarMonthView' => 'AphrontView',
- 'PHUICalendarWidgetView' => 'AphrontTagView',
'PHUIColorPalletteExample' => 'PhabricatorUIExample',
'PHUICrumbView' => 'AphrontView',
'PHUICrumbsView' => 'AphrontView',
diff --git a/src/view/phui/calendar/PHUICalendarWidgetView.php b/src/view/phui/calendar/PHUICalendarWidgetView.php
deleted file mode 100644
--- a/src/view/phui/calendar/PHUICalendarWidgetView.php
+++ /dev/null
@@ -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;
- }
-}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Nov 10, 9:59 PM (1 w, 1 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6718694
Default Alt Text
D12569.diff (2 KB)
Attached To
Mode
D12569: Remove PHUICalendarWidgetView
Attached
Detach File
Event Timeline
Log In to Comment