コード例 #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());
 }