コード例 #1
0
ファイル: Galeria.php プロジェクト: Neozeratul/Intermodels
 public function nuevo()
 {
     $this->save();
     $picasa = new Neo_Gdata_Photo();
     $album = $picasa->addAlbum($this->titulo);
     $this->album_id = $album->getGphotoId();
     $this->save();
 }
コード例 #2
0
ファイル: Modelo.php プロジェクト: Neozeratul/Intermodels
 public function nuevo()
 {
     $this->save();
     $picasa = new Neo_Gdata_Photo();
     $album = $picasa->addAlbum($this->nombres . ' ' . $this->apellidos);
     $this->album_id = $album->getGphotoId();
     $this->save();
 }