| Current Path : /var/www/administrator/components/com_slideshowck/helpers/ |
| Current File : /var/www/administrator/components/com_slideshowck/helpers/ckview.php |
<?php
Namespace Slideshowck;
defined('CK_LOADED') or die;
class CKView {
protected $name;
protected $model;
protected $input;
public function __construct() {
// check if the user has the rights to access this page
if (!CKFof::userCan('edit')) {
CKFof::_die();
}
$this->input = CKFof::getInput();
}
public function display($tpl = 'default') {
if ($this->model) {
$this->state = $this->model->getState();
$this->pagination = $this->model->getPagination();
}
require_once SLIDESHOWCK_PATH . '/views/' . strtolower($this->name) . '/tmpl/' . $tpl . '.php';
}
public function setName($name) {
$this->name = $name;
}
public function setModel($model) {
$this->model = $model;
}
public function get($func, $params = array()) {
$model = $this->getModel();
$funcName = 'get' . ucfirst($func);
return $model->$funcName($params);
}
public function getModel() {
if (empty($this->model)) {
require_once(SLIDESHOWCK_PATH . '/models/' . strtolower($this->name) . '.php');
$className = '\Slideshowck\CKModel' . ucfirst($this->name);
$this->model = new $className;
}
return $this->model;
}
}