Page MenuHomePhabricator

D11132.id26734.diff
No OneTemporary

D11132.id26734.diff

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

Mime Type
text/plain
Expires
Tue, Mar 25, 7:58 AM (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)

Event Timeline