Cheetah
GraphGroup.php
Go to the documentation of this file.
1 <?php
24 namespace Facebook\GraphNodes;
25 
31 class GraphGroup extends GraphNode
32 {
36  protected static $graphObjectMap = [
37  'cover' => '\Facebook\GraphNodes\GraphCoverPhoto',
38  'venue' => '\Facebook\GraphNodes\GraphLocation',
39  ];
40 
46  public function getId()
47  {
48  return $this->getField('id');
49  }
50 
56  public function getCover()
57  {
58  return $this->getField('cover');
59  }
60 
66  public function getDescription()
67  {
68  return $this->getField('description');
69  }
70 
76  public function getEmail()
77  {
78  return $this->getField('email');
79  }
80 
86  public function getIcon()
87  {
88  return $this->getField('icon');
89  }
90 
96  public function getLink()
97  {
98  return $this->getField('link');
99  }
100 
106  public function getName()
107  {
108  return $this->getField('name');
109  }
110 
116  public function getMemberRequestCount()
117  {
118  return $this->getField('member_request_count');
119  }
120 
126  public function getOwner()
127  {
128  return $this->getField('owner');
129  }
130 
136  public function getParent()
137  {
138  return $this->getField('parent');
139  }
140 
146  public function getPrivacy()
147  {
148  return $this->getField('privacy');
149  }
150 
156  public function getUpdatedTime()
157  {
158  return $this->getField('updated_time');
159  }
160 
166  public function getVenue()
167  {
168  return $this->getField('venue');
169  }
170 }
Facebook\GraphNodes\GraphGroup\getPrivacy
getPrivacy()
Definition: GraphGroup.php:146
Facebook\GraphNodes\GraphGroup\getLink
getLink()
Definition: GraphGroup.php:96
Facebook\GraphNodes\GraphGroup\getName
getName()
Definition: GraphGroup.php:106
Facebook\GraphNodes\GraphGroup\getVenue
getVenue()
Definition: GraphGroup.php:166
Facebook\GraphNodes\GraphGroup\getIcon
getIcon()
Definition: GraphGroup.php:86
php
Facebook\GraphNodes\GraphGroup
Definition: GraphGroup.php:32
Facebook\GraphNodes\GraphGroup\getUpdatedTime
getUpdatedTime()
Definition: GraphGroup.php:156
Facebook\GraphNodes\GraphGroup\getDescription
getDescription()
Definition: GraphGroup.php:66
Facebook\GraphNodes\GraphGroup\getParent
getParent()
Definition: GraphGroup.php:136
Facebook\GraphNodes\GraphGroup\getCover
getCover()
Definition: GraphGroup.php:56
Facebook\GraphNodes\GraphGroup\getOwner
getOwner()
Definition: GraphGroup.php:126
Facebook\GraphNodes\GraphGroup\getEmail
getEmail()
Definition: GraphGroup.php:76
Facebook\GraphNodes\GraphGroup\getId
getId()
Definition: GraphGroup.php:46
Facebook\GraphNodes\GraphNode
Definition: GraphNode.php:32
Facebook\GraphNodes\GraphGroup\getMemberRequestCount
getMemberRequestCount()
Definition: GraphGroup.php:116
Facebook\GraphNodes\Collection\getField
getField($name, $default=null)
Definition: Collection.php:66
Facebook\GraphNodes
Definition: Birthday.php:24
Facebook\GraphNodes\GraphGroup\$graphObjectMap
static $graphObjectMap
Definition: GraphGroup.php:36