Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2.  
  3. defined('BASEPATH') or exit('No direct script access allowed');
  4.  
  5. class About extends MY_Controller
  6. {
  7.  
  8.   protected $data = array();
  9.   protected $countries = array();
  10.  
  11.   public function __construct()
  12.   {
  13.     parent::__construct();
  14.     $this->load->model('About_qry');
  15.   }
  16.  
  17.   public function index()
  18.   {
  19.     $this->template
  20.       ->title("About")
  21.       ->set_layout('main')
  22.       ->build('index', $this->data);
  23.   }
  24. }