Joomla installfile“调用未定义的方法”

发布于 2024-12-13 10:50:02 字数 520 浏览 2 评论 0原文

我正在重写一个组件,并且我一直在关注 教程在这里: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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

动次打次papapa 2024-12-20 10:50:02

如果您查看链接到的完整脚本,他们会在类中添加一个函数 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文