예제 #1
0
파일: Link.php 프로젝트: k42b3/psx-ws
 public function getRecordInfo()
 {
     return new RecordInfo('link', array(), parent::getRecordInfo());
 }
예제 #2
0
파일: Video.php 프로젝트: k42b3/psx-ws
 public function getRecordInfo()
 {
     return new RecordInfo('video', array('html' => $this->html, 'width' => $this->width, 'height' => $this->height), parent::getRecordInfo());
 }
예제 #3
0
파일: Photo.php 프로젝트: k42b3/psx-ws
 public function getRecordInfo()
 {
     return new RecordInfo('photo', array('url' => $this->url, 'width' => $this->width, 'height' => $this->height), parent::getRecordInfo());
 }