17 lines
755 B
PHP
Executable File
17 lines
755 B
PHP
Executable File
</div>
|
|
<?php if($extView = $this->getExtViewFile(__FILE__)){include $extView; return helper::cd();}?>
|
|
<iframe frameborder='0' name='hiddenwin' id='hiddenwin' scrolling='no' class='<?php print($config->debug ? 'debugwin' : 'hidden');?>'></iframe>
|
|
</div>
|
|
<?php $onlybody = zget($_GET, 'onlybody', 'no');
|
|
js::set('onlybody', $onlybody); // set the onlybody var.
|
|
if(isset($pageJS)) js::execute($pageJS); // load the js for current page.
|
|
|
|
/* Load hook files for current page. */
|
|
$extPath = dirname(dirname(dirname(realpath($viewFile)))) . '/common/ext/view/';
|
|
$extHookRule = $extPath . 'm.footer.*.hook.php';
|
|
$extHookFiles = glob($extHookRule);
|
|
if($extHookFiles) foreach($extHookFiles as $extHookFile) include $extHookFile;
|
|
?>
|
|
</body>
|
|
</html>
|