Skip to content

Instantly share code, notes, and snippets.

@Nerjuz
Created June 13, 2013 07:32
Show Gist options
  • Save Nerjuz/5771855 to your computer and use it in GitHub Desktop.
Save Nerjuz/5771855 to your computer and use it in GitHub Desktop.
Use helper functions in controller
class UsersController extends AppController {
function index() {
$view = new View($this);
$html = $view->loadHelper('Html');
debug($html->link('Cake!', 'http://cakephp.org'));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment