[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 <?php 2 3 abstract class ReleephProductController extends ReleephController { 4 5 private $product; 6 7 protected function setProduct(ReleephProject $product) { 8 $this->product = $product; 9 return $this; 10 } 11 12 protected function getProduct() { 13 return $this->product; 14 } 15 16 protected function buildApplicationCrumbs() { 17 $crumbs = parent::buildApplicationCrumbs(); 18 19 $product = $this->getProduct(); 20 if ($product) { 21 $crumbs->addTextCrumb( 22 $product->getName(), 23 $this->getProductViewURI($product)); 24 } 25 26 return $crumbs; 27 } 28 29 30 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Sun Nov 30 09:20:46 2014 | Cross-referenced by PHPXref 0.7.1 |