From b0a7eef25e8cae3e5d9da6699945bc2288f59c8c Mon Sep 17 00:00:00 2001 From: Patrick Burns Date: Thu, 4 Apr 2024 07:39:00 -0500 Subject: [PATCH] remove search_enabled config requirement --- application/controllers/Visitor.php | 63 ++++++++++++++--------------- application/views/visitor/index.php | 8 ++-- 2 files changed, 33 insertions(+), 38 deletions(-) diff --git a/application/controllers/Visitor.php b/application/controllers/Visitor.php index 82a278ac..571ce2c7 100644 --- a/application/controllers/Visitor.php +++ b/application/controllers/Visitor.php @@ -75,37 +75,36 @@ class Visitor extends CI_Controller { $this->load->model('logbook_model'); - // Only load, config, and init pagination if public search is enabled - if ($this ->public_search_enabled($public_slug)) { - $this->load->library('pagination'); - - //Pagination config - $config['base_url'] = base_url().'index.php/visitor/'. $public_slug . '/index'; - $config['total_rows'] = $this->logbook_model->total_qsos($logbooks_locations_array); - $config['per_page'] = '25'; - $config['num_links'] = $this->logbook_model->total_qsos($logbooks_locations_array) / 25; - $config['full_tag_open'] = ''; - $config['attributes'] = ['class' => 'page-link']; - $config['first_link'] = false; - $config['last_link'] = false; - $config['first_tag_open'] = '
  • '; - $config['first_tag_close'] = '
  • '; - $config['prev_link'] = '«'; - $config['prev_tag_open'] = '
  • '; - $config['prev_tag_close'] = '
  • '; - $config['next_link'] = '»'; - $config['next_tag_open'] = '
  • '; - $config['next_tag_close'] = '
  • '; - $config['last_tag_open'] = '
  • '; - $config['last_tag_close'] = '
  • '; - $config['cur_tag_open'] = '
  • '; - $config['cur_tag_close'] = '(current)
  • '; - $config['num_tag_open'] = '
  • '; - $config['num_tag_close'] = '
  • '; + // load config and init pagination + $this->load->library('pagination'); + + //Pagination config + $config['base_url'] = base_url().'index.php/visitor/'. $public_slug . '/index'; + $config['total_rows'] = $this->logbook_model->total_qsos($logbooks_locations_array); + $config['per_page'] = '25'; + $config['num_links'] = $this->logbook_model->total_qsos($logbooks_locations_array) / 25; + $config['full_tag_open'] = ''; + $config['attributes'] = ['class' => 'page-link']; + $config['first_link'] = false; + $config['last_link'] = false; + $config['first_tag_open'] = '
  • '; + $config['first_tag_close'] = '
  • '; + $config['prev_link'] = '«'; + $config['prev_tag_open'] = '
  • '; + $config['prev_tag_close'] = '
  • '; + $config['next_link'] = '»'; + $config['next_tag_open'] = '
  • '; + $config['next_tag_close'] = '
  • '; + $config['last_tag_open'] = '
  • '; + $config['last_tag_close'] = '
  • '; + $config['cur_tag_open'] = '
  • '; + $config['cur_tag_close'] = '(current)
  • '; + $config['num_tag_open'] = '
  • '; + $config['num_tag_close'] = '
  • '; + + $this->pagination->initialize($config); - $this->pagination->initialize($config); - } // Public visitor so no QRA to setup $data['qra'] = "none"; @@ -141,9 +140,7 @@ class Visitor extends CI_Controller { $data['total_lotw_rcvd'] = $QSLStatsBreakdownArray['LoTW_Received']; // If public search is enabled, show paginated results, otherwise show last 18 qsos - $data['results'] = $this->public_search_enabled($public_slug) - ? $this->logbook_model->get_qsos($config['per_page'], $this->uri->segment(4), $logbooks_locations_array) - : $this->logbook_model->get_last_qsos('18', $logbooks_locations_array); + $data['results'] = $this->logbook_model->get_qsos($config['per_page'], $this->uri->segment(4), $logbooks_locations_array); $data['page_title'] = "Dashboard"; $data['slug'] = $public_slug; diff --git a/application/views/visitor/index.php b/application/views/visitor/index.php index 011f3e81..9edffdc1 100644 --- a/application/views/visitor/index.php +++ b/application/views/visitor/index.php @@ -113,11 +113,9 @@ function echoQrbCalcLink($mygrid, $grid, $vucc) { - CI->public_search_enabled($slug)) { ?> - - +