Index.php 409 B

123456789101112131415161718192021
  1. <?php
  2. namespace Controller;
  3. class Index extends \MyController
  4. {
  5. public function run()
  6. {
  7. // Load database
  8. //$this->db = new DB(config('database'));
  9. // Set ORM database connection
  10. //ORM::$db = $this->db;
  11. // Load the theme sidebar since we don't need the full page
  12. $this->sidebar = new \Micro\View('Sidebar');
  13. // Load the welcome view
  14. $this->content = new \Micro\View('Index/Index');
  15. }
  16. }