Skip to content

Instantly share code, notes, and snippets.

@fabriziomachado
Created August 5, 2011 12:32
Show Gist options
  • Save fabriziomachado/1127431 to your computer and use it in GitHub Desktop.
Save fabriziomachado/1127431 to your computer and use it in GitHub Desktop.
application/core/MY_Controller.php
<?php
class MY_Controller extends CI_Controller
{
# public $layout = 'default';
public $title = 'Unesc - Universidade do Extremo Sul Catarinense';
public $css = array('application','libs/blueprint/screen');
public $js = array('application','libs/jquery-1.6.2.min','libs/modernizr-2.0.6');
public $data = array();
public $view = TRUE;
function __construct()
{
parent::__construct();
# $this->output->enable_profiler(TRUE);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment