我正在尝试向我的自定义组件添加一个新视图。我已经关注了这篇文章,但说明对我来说不是很清楚。
这就是我所做的:
我复制了另一个视图的结构(称为 plandetails)
所以现在我有:
site
controllers
helpers
language
models
views
controller.php
billingdetails.php //new controller
plandetails.php //previous controller
plandetails //previous view
tmpl
default.php
metadata.xml
view.html.php
billingdetails //new view
tmpl
default.php
view.html.php
我将 billingdetails.php 控制器更改为与 plandetails.php 相同,但使用 billingdetails 实例:
defined('_JEXEC') or die;
// Include dependancies
jimport('joomla.application.component.controller');
// Execute the task.
$controller = JController::getInstance('Billingdetails');
$controller->execute(JFactory::getApplication()->input->get('task'));
$controller->redirect();
我使用适当的类更改了 billingsdetails 文件夹中的 view.html.php:
class BillingdetailsViewBillingdetails extends JView
{
// Overwriting JView display method
function display($tpl = null)
{
// Display the view
parent::display($tpl);
}
}
现在在我的 default.php(在 billingdetails 视图文件夹中)我只是回显“TESTING”。如果我使用视图名称转到组件:mysite.com/index.php?option=com_plandetails&view=billingdetails
我收到此错误:
View not found [name, type, prefix]: billingdetails, html, plandetailsView
注意:我没有对模型进行任何更改,因为我认为没有必要。我想为这个视图重用相同的方法。
我还缺少什么?