3

我喜欢在模态窗口中打开组件后端视图。我所有的尝试都引导我进入一个模态窗口,在模态窗口的 iframe 中显示整个后端。我使用此链接打开窗口:

<?php 
$link = 'index.php?option=com_serveradmin&view=filehistory&layout=modal&id=' . (int)$file->id;
?>
<a href="<?php echo JRoute::_($link);?>" class="modal"
rel="{handler: 'ajax', size: {x: 875, y: 550}, onClose: function() {}}" >
<?php echo $file->orig_name; ?>
</a>

视图文件夹包含带有以下代码的 modal.php:

    defined('_JEXEC') or die;
    JHtml::_('behavior.modal');
    ?>

<h1>This is the file history</h1>

仅此而已,这就是我想在第一步中展示的全部内容。以前有人试过吗?有没有办法做到这一点?提前致谢。

4

1 回答 1

0

您可以添加tmpl=component到您的 url,因此 Joomla 只会呈现没有模板的组件。事实上,Joomla 将使用component.php您当前模板中的。

于 2013-03-27T09:53:48.533 回答