Created
June 25, 2012 01:04
-
-
Save cccaldas/2985831 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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