3 final class ConduitAPIDocumentationPage
9 private $content = array();
11 public function setName($name) {
16 public function getName() {
20 public function setAnchor($anchor) {
21 $this->anchor
= $anchor;
25 public function getAnchor() {
29 public function setContent($content) {
30 $this->content
= $content;
34 public function getContent() {
35 return $this->content
;
38 public function setIconIcon($icon_icon) {
39 $this->iconIcon
= $icon_icon;
43 public function getIconIcon() {
44 return $this->iconIcon
;
47 public function newView() {
48 $anchor_name = $this->getAnchor();
49 $anchor_view = id(new PhabricatorAnchorView())
50 ->setAnchorName($anchor_name);
52 $content = $this->content
;