[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 <?php 2 3 abstract class PhameBlogSkin extends PhabricatorController { 4 5 private $blog; 6 private $baseURI; 7 private $preview; 8 private $specification; 9 10 public function setSpecification(PhameSkinSpecification $specification) { 11 $this->specification = $specification; 12 return $this; 13 } 14 15 public function getSpecification() { 16 return $this->specification; 17 } 18 19 public function setPreview($preview) { 20 $this->preview = $preview; 21 return $this; 22 } 23 24 public function getPreview() { 25 return $this->preview; 26 } 27 28 final public function setBaseURI($base_uri) { 29 $this->baseURI = $base_uri; 30 return $this; 31 } 32 33 final public function getURI($path) { 34 return $this->baseURI.$path; 35 } 36 37 final public function setBlog(PhameBlog $blog) { 38 $this->blog = $blog; 39 return $this; 40 } 41 42 final public function getBlog() { 43 return $this->blog; 44 } 45 46 }
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 |