Joomla installfile“调用未定义的方法”
我正在重写一个组件,并且我一直在关注 教程在这里:http://docs.joomla.org/Managing_Component_Updates_with_Joomla!1.6_-_Part_3
在安装文件代码中,他们将现有安装的组件与新安装的组件进行比较 安装文件的参数。获取已安装版本的代码如下:
$oldRelease = $this->getParam('version');
当我运行此代码时,它会因以下内容而终止:
致命错误:调用未定义的方法 com_mycomponentInstallerScript::getParam()
我认为在 Joomla 1.6+ 中可以访问参数 自动通过 getParam ?
感谢您的帮助。
I'm rewriting a component, and I've been following
a tutorial here: http://docs.joomla.org/Managing_Component_Updates_with_Joomla!1.6_-_Part_3
In the install file code they compare the existing installed component with the new
install file's params. The code to get the installed version is this:
$oldRelease = $this->getParam('version');
When I run this, it dies with the following:
Fatal error: Call to undefined method
com_mycomponentInstallerScript::getParam()
I thought that in Joomla 1.6+ the params were accessible
automatically via the getParam?
Thanks for help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您查看链接到的完整脚本,他们会在类中添加一个函数 getParam。由于 com_mycomponentInstallerScript 没有扩展现有的 Joomla 类,因此除非您定义该函数,否则该函数不存在。
If you look at the full script you linked to, they added a function getParam to the class. since com_mycomponentInstallerScript isn't extending an existing Joomla class, that function doesn't exist unless you define it.