Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/guides/view/PhabricatorGuideItemView.php
12241 views
1
<?php
2
3
final class PhabricatorGuideItemView extends Phobject {
4
5
private $title;
6
private $href;
7
private $description;
8
private $icon;
9
private $iconBackground;
10
private $skipHref;
11
12
public function setTitle($title) {
13
$this->title = $title;
14
return $this;
15
}
16
17
public function setDescription($description) {
18
$this->description = $description;
19
return $this;
20
}
21
22
public function setHref($href) {
23
$this->href = $href;
24
return $this;
25
}
26
27
public function setIcon($icon) {
28
$this->icon = $icon;
29
return $this;
30
}
31
32
public function setIconBackground($background) {
33
$this->iconBackground = $background;
34
return $this;
35
}
36
37
public function setSkipHref($href) {
38
$this->skipHref = $href;
39
return $this;
40
}
41
42
public function getTitle() {
43
return $this->title;
44
}
45
46
public function getDescription() {
47
return $this->description;
48
}
49
50
public function getHref() {
51
return $this->href;
52
}
53
54
public function getIcon() {
55
return $this->icon;
56
}
57
58
public function getIconBackground() {
59
return $this->iconBackground;
60
}
61
62
public function getSkipHref() {
63
return $this->skipHref;
64
}
65
66
67
}
68
69