在动物园扩展的整页中添加模块位置

时间:2013-11-28 07:09:27

标签: joomla module

我想在动物园扩展的整页中添加joomla模块位置。 我试过这些代码但没有用。 <?php $this->renderModules( 'users-bodule' ); ?><jdoc:include type="modules" name="fixed-b" style="xhtml" />

我怎么能这样做?

2 个答案:

答案 0 :(得分:1)

试试这个,

如果你想从php部分或通过下面的ajax渲染模块。

   $document = JFactory::getDocument();
   $renderer = $document->loadRenderer('module');

   $Module = JModuleHelper::getModule('mod_fmDataGrid');//the following section for custom param if you are not using any param simply avoid it.

   $Params = "param1=bruno\n\rparam2=chris";
   $Module->params = $Params;
   echo $renderer->render($Module);

简单的表格模板。

<jdoc:include type="modules" name="position-0" />

希望它的帮助..

答案 1 :(得分:1)

ZOO有原生元素可以在任何你想要的布局中插入任何模块 名为Joomla模块(其他类别)。

只需将其插入任何其他元素即可。

enter image description here