Go to the documentation of this file.00001 <?php
00002
00003
00004
00005 if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
00006 require_once('class_anc_acc_list.php');
00007 echo '<div class="content">';
00008 $tab = new Anc_Acc_List($cn);
00009 $tab->get_request();
00010 echo '<form method="get">';
00011 echo $tab->display_form();
00012 echo '<p>' . HtmlInput::submit('Recherche', _('Recherche')) . '</p>';
00013
00014 echo '</form>';
00015 if (isset($_GET['result']))
00016 {
00017 echo $tab->show_button();
00018 $tab->display_html();
00019 }
00020 echo '</div>';
00021 ?>