在我的 php 文件中使用 Joomla 类

发布于 2024-10-20 04:54:55 字数 170 浏览 1 评论 0原文

我有一个 joomla 网站,需要一个生成 xml 的 php 脚本在其中运行。该文件由我的模块调用。该模块工作正常,但我无法创建一个输出代码的 php 文件,主要是因为我无法使用诸如 $db =& 之类的东西。 JFactory::getDBO();

有人有这方面的经验吗?

I have a joomla site and need an xml generating php script to run within it. The file is called by my module. The module works ok but I cannot get to create a php file that outputs the code, primarily because I can't use things like$db =& JFactory::getDBO();

Anyone with an experience on this front?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

倦话 2024-10-27 04:54:55

如果您正在调用 joomla 框架之外的文件,那么您需要创建 joomla 应用程序的实例,以便代码可以访问 joomla。

define( '_JEXEC', 1 );
define( 'DS', DIRECTORY_SEPARATOR );
define('JPATH_BASE', dirname(__FILE__) );

require_once ( JPATH_BASE .DS.'includes'.DS.'defines.php' );
require_once ( JPATH_BASE .DS.'includes'.DS.'framework.php' );

$mainframe =& JFactory::getApplication('site');
$mainframe->initialise();

这应该能让您了解基础知识。

If you are calling a file that is outside of the joomla framework, then you need to create an instance of the joomla application so the code has access to joomla.

define( '_JEXEC', 1 );
define( 'DS', DIRECTORY_SEPARATOR );
define('JPATH_BASE', dirname(__FILE__) );

require_once ( JPATH_BASE .DS.'includes'.DS.'defines.php' );
require_once ( JPATH_BASE .DS.'includes'.DS.'framework.php' );

$mainframe =& JFactory::getApplication('site');
$mainframe->initialise();

This should give you access to the basics.

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