Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <?php defined('SYSPATH') or die('No direct script access.');
  2.  
  3. class Controller_Welcome extends Controller {
  4.  
  5. public function action_index()
  6. {
  7. // Load the view as an object
  8. $view = new View('welcome');
  9.  
  10. // Adding variables to the object that will be displayed in the view
  11. $view->title = "Welcome to Kohana !";
  12. $view->heading = "My Heading";
  13. $view->content = "My content here.";
  14.  
  15. // Render the view
  16. $view->render(TRUE);
  17.  
  18. }
  19.  
  20. } // End Welcome
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement