简体   繁体   English

在外部php页面中加载joomla模块

[英]Load a joomla module in an external php page

I'm using Joomla 3. 我正在使用Joomla 3。

I would like to add one of my joomla modules to a separate(from joomla) PHP page. 我想将我的joomla模块之一添加到单独的(与joomla无关的)PHP页面中。 is this possible? 这可能吗?

From what I could find online, I need to call the joomla framework and then ??????? 从网上可以找到的地方,我需要调用joomla框架,然后调用??????? and then it works. 然后它起作用。

<?php define( '_JEXEC', 1 );
define('JPATH_BASE', dirname(__FILE__));
define( 'DS', DIRECTORY_SEPARATOR );
require_once ( JPATH_BASE .DS.'includes'.DS.'defines.php' );
require_once ( JPATH_BASE .DS.'includes'.DS.'framework.php' );
$mainframe =& JFactory::getApplication('site');
$mainframe->initialise(); 


?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>


</head>

<body>


                    <jdoc:include type="modules" name="position-22" style="none" />



</body>
</html>

Yes, It's Possible 是的,有可能

  • Initialize Joomla Framework (From Joomla 3.4.1 index.php) 初始化Joomla框架(来自Joomla 3.4.1 index.php)

     define('_JEXEC', 1); if (file_exists(__DIR__ . '/defines.php')) { include_once __DIR__ . '/defines.php'; } if (!defined('_JDEFINES')) { define('JPATH_BASE', __DIR__); require_once JPATH_BASE . '/includes/defines.php'; } require_once JPATH_BASE . '/includes/framework.php'; $app = JFactory::getApplication('site'); $app->initialise(); 
  • After initializing you can call your module position using JHtml 初始化后,您可以使用JHtml调用模块位置

     echo JHtml::_('content.prepare', '{loadposition position-22}'); 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM