altocompta/include/anc_great_ledger.inc.php
Dany De Bontridder 38311bd212 Translation:add gettext function, improve extract_text
Add everywhere the missing gettext function and improve
the script for extracting string
2014-02-14 23:42:28 +01:00

19 lines
499 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('class_anc_grandlivre.php');
$gl = new Anc_GrandLivre($cn);
$gl->get_request();
echo '<form method="get">';
echo $gl->display_form();
echo '<p>' . HtmlInput::submit('Recherche', _('Recherche')) . '</p>';
echo '</form>';
if (isset($_GET['result']))
{
echo $gl->show_button();
echo $gl->display_html();
echo $gl->show_button();
}
?>