Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/calendar/parser/data/PhutilCalendarUserNode.php
12262 views
1
<?php
2
3
final class PhutilCalendarUserNode extends PhutilCalendarNode {
4
5
private $name;
6
private $uri;
7
private $status;
8
9
const STATUS_INVITED = 'invited';
10
const STATUS_ACCEPTED = 'accepted';
11
const STATUS_DECLINED = 'declined';
12
13
public function setName($name) {
14
$this->name = $name;
15
return $this;
16
}
17
18
public function getName() {
19
return $this->name;
20
}
21
22
public function setURI($uri) {
23
$this->uri = $uri;
24
return $this;
25
}
26
27
public function getURI() {
28
return $this->uri;
29
}
30
31
public function setStatus($status) {
32
$this->status = $status;
33
return $this;
34
}
35
36
public function getStatus() {
37
return $this->status;
38
}
39
40
}
41
42