Пример #1
0
 /**
  * @return array
  * @access public
  */
 public function getTags()
 {
     if ($this->tags == null) {
         Picasa_Logger::getLogger()->logIfEnabled("Tags was null, requesting from Picasa...");
         $picasa = new Picasa(null, null, null, $this->contextArray);
         $this->tags = $picasa->getTagsByUsername($this->picasaAuthor->getUser(), $this->idnum, 1000, 1, $this->rights);
     }
     return $this->tags;
 }
Пример #2
0
 /**
  * @return array
  * @access public
  */
 public function getTags()
 {
     if ($this->tags == null) {
         $picasa = new Picasa(null, null, null, $this->contextArray);
         $this->tags = $picasa->getTagsByUsername($this->picasaAuthor->getUser(), $this->idnum, 1000, 1, $this->rights);
     }
     return $this->tags;
 }