2015-09-27 00:35:53 +02:00
|
|
|
<?php
|
|
|
|
//This file is part of NOALYSS and is under GPL
|
|
|
|
//see licence.txt
|
|
|
|
?><?php
|
|
|
|
/**
|
|
|
|
*@brief show an iframe, the iframe contains either
|
|
|
|
* - a input type to save a file
|
|
|
|
* - a file name (which can be opened or removed
|
|
|
|
*/
|
2018-04-13 18:58:28 +02:00
|
|
|
$str='?'.dossier::get()."&op=ledger&div=$div&act=file&jr_id=$jr_id";
|
2015-09-27 00:35:53 +02:00
|
|
|
if ( isset ($_REQUEST['ajax'])) $str.="&ajax=1";
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div id="document_operation_div<?php echo $div;?>" class="myfieldset noprint" style="display:<?php echo $a_tab['document_operation_div']['display']?>">
|
2018-04-13 18:58:28 +02:00
|
|
|
<iframe frameborder=0 scrolling="no" style="margin:0px;padding: 0px;border:0px;width:100%;height:90px;overflow:hidden" src="<?php echo 'ajax_misc.php'.$str; ?>"></iframe>
|
2015-09-27 00:35:53 +02:00
|
|
|
</div>
|