mirror of
https://github.com/YunoHost-Apps/noalyss_ynh.git
synced 2024-09-03 19:46:20 +02:00
3a905a4a87
Update files from sources with last update on noalyss.eu
23 lines
602 B
PHP
23 lines
602 B
PHP
<?php
|
|
//This file is part of NOALYSS and is under GPL
|
|
//see licence.txt
|
|
/**
|
|
* @file
|
|
* @brief Module Printing : Analytic to display relation between card or accounting with
|
|
* Analytic
|
|
*/
|
|
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
|
|
require_once NOALYSS_INCLUDE.'/class/anc_table.class.php';
|
|
$tab = new Anc_Table($cn);
|
|
$tab->get_request();
|
|
echo '<form method="get">';
|
|
echo $tab->display_form();
|
|
echo '<p>' . HtmlInput::submit('Recherche', _('Recherche')) . '</p>';
|
|
|
|
echo '</form>';
|
|
if (isset($_GET['result']))
|
|
{
|
|
echo $tab->show_button("");
|
|
$tab->display_html();
|
|
}
|
|
?>
|