コード例 #1
0
ファイル: geoip_mod.php プロジェクト: DarneoStudio/bitrix
 function ArrayForDB()
 {
     $ar = parent::ArrayForDB();
     if ($this->continent_code) {
         $ar["XCONT"] = $this->continent_code;
     }
     if ($this->latitude) {
         $ar["XLAT"] = $this->latitude;
     }
     if ($this->longitude) {
         $ar["XLON"] = $this->longitude;
     }
     return $ar;
 }
コード例 #2
0
ファイル: geoip_extension.php プロジェクト: rasuldev/torino
 public function ArrayForDB()
 {
     $ar = parent::ArrayForDB();
     if ($this->postal_code) {
         $ar["XPOST"] = $this->postal_code;
     }
     if ($this->latitude) {
         $ar["XLAT"] = $this->latitude;
     }
     if ($this->longitude) {
         $ar["XLON"] = $this->longitude;
     }
     return $ar;
 }