首页 > 后端开发 > php教程 > 为 Joomla CMSObject -> stdClass 准备扩展。

为 Joomla CMSObject -> stdClass 准备扩展。

Barbara Streisand
发布: 2024-12-26 01:15:15
原创
776 人浏览过

Preparing extensions for Joomla CMSObject -> stdClass. stdClass." />

在 Joomla 6 中,Adminmodel 中的 getItem() 方法将返回 stdClass 而不是 CMSObject。 这意味着该类的所有已弃用的功能将不可用。 Joomla 6 中的开发人员应该直接使用 item 对象的属性,而不是使用过时的 set() 和 get() 方法。

旧的 Joomla 方式

$article = $app->bootComponent('content')->getMVCFactory()->createModel('Article', 'Administrator')->getItem(1);
echo $article->get('title');
登录后复制

Joomla 6 中的情况如何

$article = $app->bootComponent('content')->getMVCFactory()->createModel('Article', 'Administrator')->getItem(1);
echo $article->title;
登录后复制

相应的 Pull Request 已被 Joomla 6 分支接受。

Joomla GitHub 上的公关

Joomla 社区资源

  • https://joomla.org/
  • Mattermost 中的 Joomla 社区聊天
  • WebTolk Joomla 扩展

以上是为 Joomla CMSObject -> stdClass 准备扩展。的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:dev.to
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板