2011-12-28 19:33:41 -05:00
|
|
|
<?php
|
|
|
|
|
2011-12-29 10:31:04 -05:00
|
|
|
class Welcome extends MM_Controller {
|
2011-12-28 19:33:41 -05:00
|
|
|
|
|
|
|
function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
2011-12-29 10:31:04 -05:00
|
|
|
|
2011-12-28 19:33:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
function index()
|
|
|
|
{
|
2011-12-29 16:57:28 -05:00
|
|
|
$this->page->output_string($this->page->set_message('info', "This is just a test message", TRUE));
|
|
|
|
}
|
|
|
|
|
|
|
|
function php()
|
|
|
|
{
|
|
|
|
ob_start();
|
|
|
|
phpinfo();
|
|
|
|
$output = ob_get_contents();
|
|
|
|
ob_end_clean();
|
2011-12-29 10:31:04 -05:00
|
|
|
|
2011-12-29 16:57:28 -05:00
|
|
|
$this->output->set_output($output);
|
2011-12-28 19:33:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|