<?php namespace tinyPHP\Classes\Core;
/**
*
* Controller
*
* PHP 5
*
* tinyPHP(tm) : Simple & Lightweight MVC Framework (http://tinyphp.us/)
* Copyright 2012, 7 Media Web Solutions, LLC (http://www.7mediaws.org/)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright 2012, 7 Media Web Solutions, LLC (http://www.7mediaws.org/)
* @link http://tinyphp.us/ tinyPHP(tm) Project
* @since tinyPHP(tm) v 0.1
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
if ( ! defined('BASE_PATH')) exit('No direct script access allowed');
class Controller {
public function __construct() {
$this->view = new \tinyPHP\Classes\Core\View();
}
public function loadModel($name) {
$modelName = ucfirst($name) . 'Model';
$modelName = "\\tinyPHP\\Classes\\Models\\".$modelName;
$this->model = new $modelName();
}
}