mirror of
https://github.com/YunoHost-Apps/noalyss_ynh.git
synced 2024-09-03 19:46:20 +02:00
27 lines
611 B
PHP
27 lines
611 B
PHP
<?php
|
|
//This file is part of NOALYSS and is under GPL
|
|
//see licence.txt
|
|
|
|
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
|
|
require_once NOALYSS_INCLUDE.'/class_anc_balance_simple.php';
|
|
$bs = new Anc_Balance_Simple($cn);
|
|
$bs->get_request();
|
|
echo '<form method="get">';
|
|
echo $bs->display_form();
|
|
echo '</form>';
|
|
if (isset($_GET['result']))
|
|
{
|
|
$result= $bs->display_html();
|
|
if ( $bs->has_data > 0)
|
|
{
|
|
echo $bs->show_button();
|
|
echo $result;
|
|
}
|
|
else
|
|
{
|
|
echo '<p class="notice">';
|
|
echo _('Aucune donnée trouvée');
|
|
echo '</p>';
|
|
}
|
|
}
|
|
?>
|