我在向Opencart2添加管理页面时遇到了问题,并且关于SO的几乎完全相同的问题的答案没有帮助,所以我相信这个问题是特定于OC2的。
在this question回答后,我仍然收到错误消息" 致命错误:在C:\ websites \ weddingshoponline \ shop \ admin \中调用未定义的方法ControllerCustomHelloWorld :: render()第13行的controller \ custom \ helloworld.php 。任何帮助都会非常感激,因为我一直在圈子里。
谢谢。
PS恢复到以前版本的OC并不是有效的响应,尽管是一个好的响应。
答案 0 :(得分:20)
OC中的页面呈现之间的差异< 2.0和OC 2.0只有少数,但您必须了解它们。
$data
在OC< 2.0你会这样做:
$this->data['text_button_save'] = $this->language->get('text_button_save');
虽然在OC 2.0中只有$data
,即
$data['text_button_save'] = $this->language->get('text_button_save');
作为参数传递给$this->load->view()
方法,例如:
$this->response->setOutput($this->load->view('catalog/category_list.tpl', $data));
$this->render()
消失了。现在,您正在呼叫$this->load->view('catalog/category_list.tpl', $data)
。
$this->children
消失了。现在模板子模块'当你必须手动调用它们的控制器时,这些位置被实例化为模板属性的一部分(为什么?):
$data['header'] = $this->load->controller('common/header');
$data['column_left'] = $this->load->controller('common/column_left');
$data['footer'] = $this->load->controller('common/footer');
我在想为什么要这些变化到底了。有哪些改进?他们是否希望开发人员编写更少的代码?它现在更符合OOP,MVC,WTF(抱歉)原则吗?得到答案:没有(或没有到第一个)。
我们仍然必须加载翻译(我的意思是,我们仍然必须加载每个单字符串翻译)。并gettext
在那里已经超过8年......
我们现在不得不拨打更长时间(并且难以理解)$this->response->setOutput($this->render());
,而不是短$this->response->setOutput($this->load->view('catalog/category_form.tpl', $data));
。为什么我们不能这样做:$this->render('catalog/category_form.tpl', $data);
???
我个人认为OC 2.0与以前一样是排泄物(从开发者的角度来看)。他们刚刚更改了包装。但是,说实话,那里还有更大的排泄物,这就是为什么我会坚持使用OpenCart :-)
答案 1 :(得分:5)
详细阐述了shadyyx对问题的回答,以及我工作的代码......我并不是说它很完美,只是它有效。
管理员\控制器\定制\ helloworld.php
<?php
class ControllerCustomHelloWorld extends Controller
{
private $error = array();
public function index()
{
$this->load->model('setting/setting');
$this->load->language('custom/helloworld');
$data['breadcrumbs'] = array();
$data['breadcrumbs'][] = array(
'text' => $this->language->get('text_home'),
'href' => $this->url->link('common/dashboard', 'token=' . $this->session->data['token'], 'SSL')
);
$data['breadcrumbs'][] = array(
'text' => $this->language->get('text_module'),
'href' => $this->url->link('extension/module', 'token=' . $this->session->data['token'], 'SSL')
);
$data['heading_title'] = $this->language->get('heading_title');
$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));
}
}
?>
管理员\语言\英语\定制\ helloworld.php
<?php
// Heading
$_['heading_title'] = 'My First Admin Page...';
// Text
$_['text_module'] = 'Modules';
$_['text_success'] = 'Success: You have modified module account!';
$_['text_content_top'] = 'Content Top';
$_['text_content_bottom'] = 'Content Bottom';
$_['text_column_left'] = 'Column Left';
$_['text_column_right'] = 'Column Right';
// Entry
$_['entry_layout'] = 'Layout:';
$_['entry_position'] = 'Position:';
$_['entry_status'] = 'Status:';
$_['entry_sort_order'] = 'Sort Order:';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify module account!';
?>
管理员\模型\定制\ helloworld.php
<?php
class ModelCustomHelloWorld extends Model
{
public function HelloWorld()
{
$sql = "SELECT * FROM " . DB_PREFIX . "category_description";
$implode = array();
$query = $this->db->query($sql);
return $query->rows;
}
}
?>
管理员\视图\模板\定制\ helloworld.php
<?php echo $header; ?><?php echo $column_left; ?>
<div id='content'>
<h1><?php echo $heading_title; ?></h1>
<?phpecho 'I can also create a custom admin page.!'<br/>; ?>
<?php print_r($my_results);?>
<?php foreach ($breadcrumbs as $breadcrumb) { ?>
<li><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a></li>
<?php } ?>
</div>
<?php echo $footer; ?>