Cheetah
GraphAlbum.php
Go to the documentation of this file.
1 <?php
24 namespace Facebook\GraphNodes;
25 
32 class GraphAlbum extends GraphNode
33 {
37  protected static $graphObjectMap = [
38  'from' => '\Facebook\GraphNodes\GraphUser',
39  'place' => '\Facebook\GraphNodes\GraphPage',
40  ];
41 
47  public function getId()
48  {
49  return $this->getField('id');
50  }
51 
57  public function getCanUpload()
58  {
59  return $this->getField('can_upload');
60  }
61 
67  public function getCount()
68  {
69  return $this->getField('count');
70  }
71 
77  public function getCoverPhoto()
78  {
79  return $this->getField('cover_photo');
80  }
81 
87  public function getCreatedTime()
88  {
89  return $this->getField('created_time');
90  }
91 
97  public function getUpdatedTime()
98  {
99  return $this->getField('updated_time');
100  }
101 
107  public function getDescription()
108  {
109  return $this->getField('description');
110  }
111 
117  public function getFrom()
118  {
119  return $this->getField('from');
120  }
121 
127  public function getPlace()
128  {
129  return $this->getField('place');
130  }
131 
137  public function getLink()
138  {
139  return $this->getField('link');
140  }
141 
147  public function getLocation()
148  {
149  return $this->getField('location');
150  }
151 
157  public function getName()
158  {
159  return $this->getField('name');
160  }
161 
167  public function getPrivacy()
168  {
169  return $this->getField('privacy');
170  }
171 
179  public function getType()
180  {
181  return $this->getField('type');
182  }
183 }
Facebook\GraphNodes\GraphAlbum\getId
getId()
Definition: GraphAlbum.php:47
Facebook\GraphNodes\GraphAlbum\getLink
getLink()
Definition: GraphAlbum.php:137
Facebook\GraphNodes\GraphAlbum\getFrom
getFrom()
Definition: GraphAlbum.php:117
Facebook\GraphNodes\GraphAlbum\getCreatedTime
getCreatedTime()
Definition: GraphAlbum.php:87
Facebook\GraphNodes\GraphAlbum\getType
getType()
Definition: GraphAlbum.php:179
php
Facebook\GraphNodes\GraphAlbum\getUpdatedTime
getUpdatedTime()
Definition: GraphAlbum.php:97
Facebook\GraphNodes\GraphAlbum\getName
getName()
Definition: GraphAlbum.php:157
Facebook\GraphNodes\GraphAlbum\getCount
getCount()
Definition: GraphAlbum.php:67
Facebook\GraphNodes\GraphAlbum\getDescription
getDescription()
Definition: GraphAlbum.php:107
Facebook\GraphNodes\GraphAlbum\$graphObjectMap
static $graphObjectMap
Definition: GraphAlbum.php:37
Facebook\GraphNodes\GraphAlbum\getPlace
getPlace()
Definition: GraphAlbum.php:127
Facebook\GraphNodes\GraphAlbum\getPrivacy
getPrivacy()
Definition: GraphAlbum.php:167
Facebook\GraphNodes\GraphAlbum\getLocation
getLocation()
Definition: GraphAlbum.php:147
Facebook\GraphNodes\GraphNode
Definition: GraphNode.php:32
Facebook\GraphNodes\GraphAlbum\getCanUpload
getCanUpload()
Definition: GraphAlbum.php:57
Facebook\GraphNodes\GraphAlbum
Definition: GraphAlbum.php:33
Facebook\GraphNodes\GraphAlbum\getCoverPhoto
getCoverPhoto()
Definition: GraphAlbum.php:77
Facebook\GraphNodes\Collection\getField
getField($name, $default=null)
Definition: Collection.php:66
Facebook\GraphNodes
Definition: Birthday.php:24