Skip to content

Instantly share code, notes, and snippets.

@arunoda
Created June 21, 2012 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arunoda/3b1828ab952fc0732ad8 to your computer and use it in GitHub Desktop.
Save arunoda/3b1828ab952fc0732ad8 to your computer and use it in GitHub Desktop.
Codeigniter - Extend Helper
<?php
class Hello extends MY_Controller {
public function index() {
$this->load->helper('html');
echo script_tag('js/main.js');
}
}
<?php
function script_tag($location) {
return "<script src='$location' type='text/javascript'></script>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment