Stuff
public text v1 · immutable
/**
* Example Controller
*/
class User_Controller extends Core_Controller {
function profile()
{
$profileData = //GET from Model
$this->view->load('userProfile', $profileData);
}
}
echo 'testing123456789';
//throw new UserError("That object no longer exists.");
//throw new InternalError("Failed to connect to remote service");
?>