Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15428381
D11132.id26734.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
D11132.id26734.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
@@ -1720,7 +1720,6 @@
'PhabricatorFeedStoryPhriction' => 'applications/feed/story/PhabricatorFeedStoryPhriction.php',
'PhabricatorFeedStoryPublisher' => 'applications/feed/PhabricatorFeedStoryPublisher.php',
'PhabricatorFeedStoryReference' => 'applications/feed/storage/PhabricatorFeedStoryReference.php',
- 'PhabricatorFeedStoryStatus' => 'applications/feed/story/PhabricatorFeedStoryStatus.php',
'PhabricatorFeedStoryTypeConstants' => 'applications/feed/constants/PhabricatorFeedStoryTypeConstants.php',
'PhabricatorFile' => 'applications/files/storage/PhabricatorFile.php',
'PhabricatorFileBundleLoader' => 'applications/files/query/PhabricatorFileBundleLoader.php',
@@ -4896,7 +4895,6 @@
'PhabricatorFeedStoryNotification' => 'PhabricatorFeedDAO',
'PhabricatorFeedStoryPhriction' => 'PhabricatorFeedStory',
'PhabricatorFeedStoryReference' => 'PhabricatorFeedDAO',
- 'PhabricatorFeedStoryStatus' => 'PhabricatorFeedStory',
'PhabricatorFeedStoryTypeConstants' => 'PhabricatorFeedConstants',
'PhabricatorFile' => array(
'PhabricatorFileDAO',
diff --git a/src/applications/feed/story/PhabricatorFeedStoryStatus.php b/src/applications/feed/story/PhabricatorFeedStoryStatus.php
deleted file mode 100644
--- a/src/applications/feed/story/PhabricatorFeedStoryStatus.php
+++ /dev/null
@@ -1,36 +0,0 @@
-<?php
-
-final class PhabricatorFeedStoryStatus extends PhabricatorFeedStory {
-
- public function getPrimaryObjectPHID() {
- return $this->getAuthorPHID();
- }
-
- public function renderView() {
- $data = $this->getStoryData();
-
- $author_phid = $data->getAuthorPHID();
-
- $view = $this->newStoryView();
- $view->setAppIcon('calendar-dark');
-
- $view->setTitle($this->linkTo($author_phid));
- $view->setImage($this->getHandle($author_phid)->getImageURI());
-
- $content = $this->renderSummary($data->getValue('content'), $len = null);
- $view->appendChild($content);
-
- return $view;
- }
-
- public function renderText() {
- $author_handle = $this->getHandle($this->getPrimaryObjectPHID());
- $author_name = $author_handle->getLinkName();
- $author_uri = PhabricatorEnv::getURI($author_handle->getURI());
-
- $text = pht('% updated their status %s', $author_name, $author_uri);
-
- return $text;
- }
-
-}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Mar 24, 8:00 PM (1 w, 5 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7312842
Default Alt Text
D11132.id26734.diff (2 KB)
Attached To
Mode
D11132: Remove an unused feed story class
Attached
Detach File
Event Timeline
Log In to Comment