Я следовал процедуре ниже, но все же я получаю ошибку «Отказано в разрешении».
Я использую OpenCart 2.x
1) Создайте новый файл в admin / controller / custom / helloworld.php
Ваше имя файла и имя контроллера должны быть одинаковыми в следующем порядке:
helloworld.php
<?
class ControllerCustomHelloWorld extends Controller{
public function index(){
// VARS
$template="custom/hello.tpl"; // .tpl location and file
$this->load->model('custom/hello');
$this->template = ''.$template.'';
$this->children = array(
'common/header',
'common/footer'
);
$this->response->setOutput($this->render());
}
}
?>
2) Создайте новый файл в admin / view / template / custom / hello.tpl
Hello.tpl
<?php echo $header; ?>
<div id="content">
<h1>HelloWorld</h1>
<?php
echo 'I can also run PHP too!';
?>
</div>
<?php echo $footer; ?>
3) Создайте новый файл в admin / model / custom / hello.php
<?php
class ModelCustomHello extends Model {
public function HellWorld() {
$sql = "SELECT x FROM `" . DB_PREFIX . "y`)";
$implode = array();
$query = $this->db->query($sql);
return $query->row['total'];
}
}
?>
4) Затем вам нужно включить плагин, чтобы избежать ошибок в разрешении:
Opencart> Admin> Пользователи> Группы пользователей> Admin> Редактировать
Выберите и включите разрешение доступа.
Вот способ добавить пользовательский модуль helloworld в админ
Создайте admin/controller/custom/helloworld.php
<?php
class ControllerCustomHelloworld extends Controller {
public function index() {
$this->load->language('custom/helloworld');
$this->document->setTitle($this->language->get('heading_title'));
$this->load->model('custom/helloworld');
$data['header'] = $this->load->controller('common/header');
$data['column_left'] = $this->load->controller('common/column_left');
$data['footer'] = $this->load->controller('common/footer');
$this->response->setOutput($this->load->view('custom/helloworld.tpl', $data));
}
}
?>
Создайте admin/model/custom/helloworld.php
<?php
class ModelCustomHelloworld extends Model {
public function helloworldmodel(){
}
}
?>
Создайте admin/language/english/custom/helloworld.php
<?php
// Heading
$_['heading_title'] = 'Hello world Admin module';
?>
Создайте admin/view/template/custom/helloworld.tpl
<?php echo $header; ?><?php echo $column_left; ?>
<h1><?php echo "This is helloworld admin module in opencart 2.x.x.x "; ?></h1>
<?php echo $footer; ?>
Идти к system -> users -> user groups -> edit Administrator group
, Выбрать все для access permission
а также modify permission
и сохранить.
Вот учебник http://blog.a2bizz.com/index.php/2015/12/17/create-custom-module-in-opencart-admin/
Я хотел бы предложить вам взглянуть на следующие URL-адреса для разрешения-
Шаг за шагом, чтобы создать пользовательскую страницу администратора в Opencart
Надеюсь, что приведенные выше ссылки помогут вам.