Guest User

Untitled

a guest
May 25th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <?php
  2.  
  3. class MY_Controller extends Controller {
  4.  
  5. function MY_Controller() {
  6. parent::Controller();
  7. }
  8.  
  9. function index()
  10. {
  11. $this->mysmarty->assign('test', 'Hello World.');
  12. $this->mysmarty->view('smarty');
  13.  
  14. }
  15. function test()
  16. {
  17.  
  18. }
  19.  
  20.  
  21. }
Add Comment
Please, Sign In to add comment