[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/applications/notification/controller/ -> PhabricatorNotificationController.php (source)

   1  <?php
   2  
   3  abstract class PhabricatorNotificationController
   4    extends PhabricatorController {
   5  
   6    public function buildStandardPageResponse($view, array $data) {
   7  
   8      $page = $this->buildStandardPageView();
   9  
  10      $page->setApplicationName(pht('Notification'));
  11      $page->setBaseURI('/notification/');
  12      $page->setTitle(idx($data, 'title'));
  13      $page->setGlyph('!');
  14      $page->appendChild($view);
  15  
  16      $response = new AphrontWebpageResponse();
  17      return $response->setContent($page->render());
  18  
  19    }
  20  
  21  }


Generated: Sun Nov 30 09:20:46 2014 Cross-referenced by PHPXref 0.7.1