コード例 #1
0
 public function renderNotificationView()
 {
     $data = $this->getStoryData();
     $view = new PhabricatorNotificationStoryView();
     $view->setTitle('A wild notifcation appeared!');
     $view->setEpoch($data->getEpoch());
     $view->appendChild('This is an unrenderable feed story of type ' . '"' . phutil_escape_html($data->getStoryType()) . '".');
     return $view;
 }