Skip to content

Instantly share code, notes, and snippets.

@cccaldas
Created June 25, 2012 01:04
Show Gist options
  • Save cccaldas/2985831 to your computer and use it in GitHub Desktop.
Save cccaldas/2985831 to your computer and use it in GitHub Desktop.
<?php
class Filter extends CI_Controller {
public function __construct() {
parent::__construct();
$this->load->helper("action");
$this->load->helper("component");
$this->load->helper("url");
$this->load->model("models");
$this->data = array();
$this->data["banners"] = Banner::getAll();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment