我遵循了以下程序,但我仍然收到权限被拒绝错误。我正在使用 opencart 2.x
1) 在 admin/controller/custom/helloworld.php 中创建一个新文件
您的文件名和控制器名称应按 desc 顺序相同:
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 > Users > User Groups > Admin > Edit 选择并启用访问权限。