/**
  * Constructor
  *
  * @return owa_hostip
  */
 function __construct()
 {
     if (!defined('OWA_MAXMIND_DATA_DIR')) {
         define('OWA_MAXMIND_DATA_DIR', OWA_DATA_DIR . 'maxmind/');
     }
     $this->db_file_path = OWA_MAXMIND_DATA_DIR . $this->db_file_name;
     if (file_exists($this->db_file_path)) {
         $this->db_file_present = true;
     } else {
         owa_coreAPI::notice('Maxmind DB file could is not present at: ' . OWA_MAXMIND_DATA_DIR);
     }
     return parent::__construct();
 }
 /**
  * Constructor
  *
  * @return owa_hostip
  */
 function __construct()
 {
     return parent::__construct();
 }