コード例 #1
0
ファイル: Parents.php プロジェクト: beggiatom/geoplanet
 public function __construct($woeid = null)
 {
     $this->woeid = $woeid;
     $this->url = 'place/' . $woeid . '/parent';
     parent::__construct();
 }
コード例 #2
0
ファイル: Children.php プロジェクト: beggiatom/geoplanet
 public function __construct($woeid = null, $type = 12, $start = 0, $count = 0)
 {
     $this->woeid = $woeid;
     $this->url = 'place/' . $woeid . '/children.type(' . $type . ');start=' . $start . ';count=' . $count;
     parent::__construct();
 }
コード例 #3
0
ファイル: Continents.php プロジェクト: beggiatom/geoplanet
 public function __construct($woeid = null)
 {
     $this->woeid = $woeid;
     parent::__construct();
 }