Page MenuHomePhorge

PhabricatorNotificationAdHocFeedStory.php
No OneTemporary

Size
572 B
Referenced Files
None
Subscribers
None

PhabricatorNotificationAdHocFeedStory.php

<?php
final class PhabricatorNotificationAdHocFeedStory extends PhabricatorFeedStory {
public function getPrimaryObjectPHID() {
return $this->getAuthorPHID();
}
public function renderView() {
$data = $this->getStoryData();
$author_phid = $data->getAuthorPHID();
$view = $this->newStoryView();
$view->setTitle($data->getValue('title'));
$view->setImage($this->getHandle($author_phid)->getImageURI());
return $view;
}
public function renderText() {
$data = $this->getStoryData();
return $data->getValue('title');
}
}

File Metadata

Mime Type
text/x-php
Expires
Sat, May 3, 8:52 AM (1 d, 8 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
59820
Default Alt Text
PhabricatorNotificationAdHocFeedStory.php (572 B)

Event Timeline