getViewer(); $menu = id(new PHUIObjectItemListView()) ->setViewer($viewer) ->setBig(true); $menu->addItem( id(new PHUIObjectItemView()) ->setHeader(pht('Devices')) ->setHref($this->getApplicationURI('device/')) ->setImageIcon('fa-server') ->setClickable(true) ->addAttribute( pht( 'Create an inventory of physical and virtual hosts and '. 'devices.'))); $menu->addItem( id(new PHUIObjectItemView()) ->setHeader(pht('Services')) ->setHref($this->getApplicationURI('service/')) ->setImageIcon('fa-plug') ->setClickable(true) ->addAttribute( pht( 'Create and update services, and map them to interfaces on '. 'devices.'))); $menu->addItem( id(new PHUIObjectItemView()) ->setHeader(pht('Networks')) ->setHref($this->getApplicationURI('network/')) ->setImageIcon('fa-globe') ->setClickable(true) ->addAttribute( pht( 'Manage public and private networks.'))); $menu->addItem( id(new PHUIObjectItemView()) ->setHeader(pht('Namespaces')) ->setHref($this->getApplicationURI('namespace/')) ->setImageIcon('fa-asterisk') ->setClickable(true) ->addAttribute( pht('Control who can create new named services and devices.'))); $docs_uri = PhabricatorEnv::getDoclink( 'Almanac User Guide'); $menu->addItem( id(new PHUIObjectItemView()) ->setHeader(pht('Documentation')) ->setHref($docs_uri) ->setImageIcon('fa-book') ->setClickable(true) ->addAttribute(pht('Browse documentation for Almanac.'))); $crumbs = $this->buildApplicationCrumbs(); $crumbs->addTextCrumb(pht('Console')); $crumbs->setBorder(true); $box = id(new PHUIObjectBoxView()) ->setHeaderText(pht('Almanac Console')) ->setBackground(PHUIObjectBoxView::WHITE_CONFIG) ->setObjectList($menu); $launcher_view = id(new PHUILauncherView()) ->appendChild($box); $view = id(new PHUITwoColumnView()) ->setFooter($launcher_view); return $this->newPage() ->setTitle(pht('Almanac Console')) ->setCrumbs($crumbs) ->appendChild($view); } }