/**
  * コンストラクタには、表示ヘッダ部分のビューファイル(HTMLテンプレート)へのパスを渡します。
  * 
  * @param string $fileName ビューファイルへのパス
  */
 public function __construct($fileName)
 {
     parent::__construct($fileName);
     if (array_key_exists('dept_city_cd', $_GET) && $_GET['dept_city_cd'] != '') {
         $this->dept_city_cd = $_GET['dept_city_cd'];
     }
     if (array_key_exists('region_cd', $_GET) && $_GET['region_cd'] != '') {
         $this->region_cd = $_GET['region_cd'];
     }
     if (array_key_exists('ctry_cd', $_GET) && $_GET['ctry_cd'] != '') {
         $this->ctry_cd = $_GET['ctry_cd'];
     }
     if (array_key_exists('dept_time_cd', $_GET) && is_numeric($_GET['dept_time_cd'])) {
         $this->dept_time_cd = $_GET['dept_time_cd'];
     }
     if (array_key_exists('term_max', $_GET) && is_numeric($_GET['term_max'])) {
         $this->term_max = $_GET['term_max'];
     }
     if (array_key_exists('online_book', $_GET) && $_GET['online_book'] != '') {
         $this->online_book = $_GET['online_book'];
     }
     if (array_key_exists('transp_serv', $_GET) && $_GET['transp_serv'] != '') {
         $this->transp_serv = $_GET['transp_serv'];
     }
     if (array_key_exists('child_disc', $_GET) && $_GET['child_disc'] != '') {
         $this->child_disc = $_GET['child_disc'];
     }
     if (array_key_exists('mile', $_GET) && $_GET['mile'] != '') {
         $this->mile = $_GET['mile'];
     }
 }
 /**
  * コンストラクタには、表示ヘッダ部分のビューファイル(HTMLテンプレート)へのパスを渡します。
  * 
  * @param string $fileName ビューファイルへのパス
  */
 public function __construct($fileName)
 {
     parent::__construct($fileName);
     if (array_key_exists('dept_aprt_cd', $_GET) && $_GET['dept_aprt_cd'] != '') {
         $this->dept_aprt_cd = $_GET['dept_aprt_cd'];
     }
     if (array_key_exists('region_cd', $_GET) && $_GET['region_cd'] != '') {
         $this->region_cd = $_GET['region_cd'];
     }
     if (array_key_exists('ctry_cd', $_GET) && $_GET['ctry_cd'] != '') {
         $this->ctry_cd = $_GET['ctry_cd'];
     }
     if (array_key_exists('trip_type', $_GET) && is_numeric($_GET['trip_type'])) {
         $this->trip_type = $_GET['trip_type'];
     }
     if (array_key_exists('online_book', $_GET) && $_GET['online_book'] != '') {
         $this->online_book = $_GET['online_book'];
     }
     if (array_key_exists('direct_flight', $_GET) && $_GET['direct_flight'] != '') {
         $this->direct_flight = $_GET['direct_flight'];
     }
     if (array_key_exists('open_ticket', $_GET) && $_GET['open_ticket'] != '') {
         $this->open_ticket = $_GET['open_ticket'];
     }
     if (array_key_exists('mile', $_GET) && $_GET['mile'] != '') {
         $this->mile = $_GET['mile'];
     }
 }
 /**
  * コンストラクタには、表示ヘッダ部分のビューファイル(HTMLテンプレート)へのパスを渡します。
  * 
  * @param string $fileName ビューファイルへのパス
  */
 public function __construct($fileName)
 {
     parent::__construct($fileName);
     /*
      * ホテルの形式
      */
     if (array_key_exists('hotel_type', $_GET) && is_numeric($_GET['hotel_type'])) {
         $this->hotel_type = $_GET['hotel_type'];
     }
 }
 /**
  * コンストラクタには、表示ヘッダ部分のビューファイル(HTMLテンプレート)へのパスを渡します。
  * 
  * @param string $fileName ビューファイルへのパス
  */
 public function __construct($fileName)
 {
     parent::__construct($fileName);
     /*
      * ホテルの形式
      */
     if (array_key_exists('hotel_type', $_GET) && is_numeric($_GET['hotel_type'])) {
         $this->hotel_type = $_GET['hotel_type'];
     }
     /*
      * ホテルIDの形式
      */
     if (array_key_exists('serv_id', $_GET) && is_numeric($_GET['serv_id'])) {
         $this->serv_id = $_GET['serv_id'];
     }
     /*
      * エラーフラグ
      */
     if (array_key_exists('error_flg', $_GET) && is_numeric($_GET['error_flg'])) {
         $this->error_flg = $_GET['error_flg'];
     }
 }
 /**
  * コンストラクタには、表示ヘッダ部分のビューファイル(HTMLテンプレート)へのパスを渡します。
  * 
  * @param string $fileName ビューファイルへのパス
  */
 public function __construct($fileName)
 {
     parent::__construct($fileName);
     global $_GET;
     /*
      * ソート種別
      */
     if (array_key_exists('sort_by', $_GET) && $_GET['sort_by'] != '') {
         $this->sort_by = $_GET['sort_by'];
     }
     /*
      * ソート順
      */
     if (array_key_exists('sort_order', $_GET) && $_GET['sort_order'] != '') {
         $this->sort_order = $_GET['sort_order'];
     }
     /*
      * カテゴリ
      */
     if (array_key_exists('category', $_GET) && $_GET['category'] != '') {
         $this->category = $_GET['category'];
     }
 }