コード例 #1
0
ファイル: youtube_source.php プロジェクト: bskahan/newd
 function __construct($config = null)
 {
     if ($config != null) {
         parent::__construct($config);
     }
 }
コード例 #2
0
ファイル: vimeo_source.php プロジェクト: bskahan/newd
 /** 
  * Constructor sets configuration and instantiates HttpSocket
  * 
  * @param array config Optional. 
  * @see http://www.vimeo.com/api/docs/simple-api
  */
 function __construct($config = null)
 {
     parent::__construct($config);
     $this->Http =& new HttpSocket();
 }