Remove product literal strings in "pht()", part 5
[phabricator.git] / src / applications / guides / view / PhabricatorGuideItemView.php
blobe32515195cb9e5d4018bec4bea41e5238fb41603
1 <?php
3 final class PhabricatorGuideItemView extends Phobject {
5 private $title;
6 private $href;
7 private $description;
8 private $icon;
9 private $iconBackground;
10 private $skipHref;
12 public function setTitle($title) {
13 $this->title = $title;
14 return $this;
17 public function setDescription($description) {
18 $this->description = $description;
19 return $this;
22 public function setHref($href) {
23 $this->href = $href;
24 return $this;
27 public function setIcon($icon) {
28 $this->icon = $icon;
29 return $this;
32 public function setIconBackground($background) {
33 $this->iconBackground = $background;
34 return $this;
37 public function setSkipHref($href) {
38 $this->skipHref = $href;
39 return $this;
42 public function getTitle() {
43 return $this->title;
46 public function getDescription() {
47 return $this->description;
50 public function getHref() {
51 return $this->href;
54 public function getIcon() {
55 return $this->icon;
58 public function getIconBackground() {
59 return $this->iconBackground;
62 public function getSkipHref() {
63 return $this->skipHref;