我喜欢在模态窗口中打开组件后端视图。我所有的尝试都引导我进入一个模态窗口,在模态窗口的 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>
仅此而已,这就是我想在第一步中展示的全部内容。以前有人试过吗?有没有办法做到这一点?提前致谢。