1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/noalyss_ynh.git synced 2024-09-03 19:46:20 +02:00
noalyss_ynh/sources/include/ajax_ledger_show.php
2015-09-27 00:54:25 +02:00

35 lines
No EOL
767 B
PHP

<?php
//This file is part of NOALYSS and is under GPL
//see licence.txt
/**
* @brief
* Show a div for selecting ledger
* return a html code for creating a window
* parameter
* - type
* - div
* - nbjrn
* - r_jrn[]
*/
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_acc_ledger.php';
require_once NOALYSS_INCLUDE.'/class_html_input.php';
if ( ! isset ($r_jrn)) { $r_jrn=null;}
$ctl='div_jrn'.$div;
ob_start();
echo HtmlInput::select_ledger($type,$r_jrn, $div);
$response = ob_get_clean();
$html = escape_xml($response);
header('Content-type: text/xml; charset=UTF-8');
echo <<<EOF
<?xml version="1.0" encoding="UTF-8"?>
<data>
<ctl>$ctl</ctl>
<code>$html</code>
</data>
EOF;
exit();
?>