1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?php
- /**
- * MyController
- *
- * Basic DEMO outline for standard controllers
- *
- * @package MicroMVC
- * @author David Pennington
- * @copyright (c) 2011 MicroMVC Framework
- * @license http://micromvc.com/license
- ********************************** 80 Columns *********************************
- */
- abstract class MyController extends \Micro\Controller
- {
- // Global view template
- public $template = 'Layout';
- /**
- * Called after the controller is loaded, before the method
- *
- * @param string $method name
- */
- public function initialize($method)
- {
- \Micro\Session::start();
- }
- /**
- * Load database connection
- */
- public function load_database($name = 'database')
- {
- // Load database
- $db = new \Micro\Database(config()->$name);
- // Set default ORM database connection
- if(empty(\Micro\ORM::$db))
- {
- \Micro\ORM::$db = $db;
- }
- return $db;
- }
- /**
- * Show a 404 error page
- */
- public function show_404()
- {
- headers_sent() OR header('HTTP/1.0 404 Page Not Found');
- $this->content = new \Micro\View('404');
- }
- /**
- * Save user session and render the final layout template
- */
- public function send()
- {
- \Micro\Session::save();
- headers_sent() OR header('Content-Type: text/html; charset=utf-8');
- $layout = new \Micro\View($this->template);
- $layout->set((array) $this);
- print $layout;
- $layout = NULL;
- if(config()->debug_mode)
- {
- print new \Micro\View('System/Debug');
- }
- }
- }
- // End
|