我想在動物園擴展的完整頁面中添加joomla模塊位置。 我試過這些代碼,但沒有工作。 <?php $this->renderModules('users-bodule'); ?>
and <jdoc:include type="modules" name="fixed-b" style="xhtml" />
在動物園擴展的整頁中添加模塊位置
我該怎麼做?
我想在動物園擴展的完整頁面中添加joomla模塊位置。 我試過這些代碼,但沒有工作。 <?php $this->renderModules('users-bodule'); ?>
and <jdoc:include type="modules" name="fixed-b" style="xhtml" />
在動物園擴展的整頁中添加模塊位置
我該怎麼做?
試試這個,
如果你想呈現從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" />
望其幫助..
ZOO有本地元素插入任何模塊中任何你想要的佈局。
命名Joomla模塊(其他類別)。
只需將其作爲其他任何元素插入即可。
和這個 沒有工作。 –
user2858542