mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-20 21:49:27 +00:00
024035e890
- Moved controller TestFilterWidget to system/infocenter/ - Renamed controller TestFilterWidget to InfoCenter - Added directory application/views/system/infocenter/ - Added views system/infocenter/infocenter.php and system/infocenter/infocenterFilters.php - Added new header views/templates/FHC-Footer - Added new header views/templates/FHC-Header - FHC-Header still using old JQuery and missing others includes
36 lines
866 B
PHP
36 lines
866 B
PHP
<?php $this->load->view('templates/FHC-Header', array('title' => 'Info Center', 'jquery3' => true)); ?>
|
|
|
|
<?php $iFrameSrc = base_url('index.ci.php/system/infocenter/InfoCenter/filter'); ?>
|
|
|
|
<script language="Javascript" type="text/javascript">
|
|
$(document).ready(function() {
|
|
|
|
// $("#iFrameFilter").attr('width', $(window).width());
|
|
|
|
});
|
|
</script>
|
|
|
|
<body>
|
|
|
|
<span>
|
|
<?php
|
|
$this->load->view(
|
|
'system/infocenter/infocenterFilters.php',
|
|
array(
|
|
'listFiltersSent' => $listFiltersSent,
|
|
'listFiltersNotSent' => $listFiltersNotSent
|
|
)
|
|
);
|
|
?>
|
|
</span>
|
|
|
|
<span>
|
|
<iframe id="iFrameFilter" name="iFrameFilter" src="<?php echo $iFrameSrc; ?>" width="800" height="700" frameborder="0">
|
|
Your browser does not support iframes, please update it
|
|
</iframe>
|
|
</span>
|
|
|
|
</body>
|
|
|
|
<?php $this->load->view('templates/FHC-Footer'); ?>
|