load->database(); $this->load->helper('url'); // Test the grocery CRUD $this->load->library('grocery_CRUD'); } /** * Show the Welcome Page by default * @return void **/ public function index() { echo "
";
print_r($output);
echo "";
//die();
$this->__exampleOutput($output);
}
/**
* example Output
* @param string $output The HTML-Output from grocery.
* @return void
**/
private function __exampleOutput($output = null)
{
$this->load->view('our_template.php', $output);
}
}