Error:
Permission Denied!
You do not have permission to access this page, please refer to your system administrator.
My file:
File:/admin/controller/shipping_cost.php
Code: Select all
<?php
class ControllerShippingCost extends Controller {
function index() {
$response =& $this->locator->get('response');
$language =& $this->locator->get('language');
$template =& $this->locator->get('template');
$module =& $this->locator->get('module');
...
$template->set('title', $language->get('heading_title'));
$template->set('content', $this->getForm());
$template->set($module->fetch());
$response->set($template->fetch('layout.tpl'));
}
function insert() {
...
}
function update() {
...
}
...
}
?>