Go to the documentation of this file.00001 <?php
00002
00003
00004
00005
00006
00007 if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
00008 require_once ('class_anc_listing.php');
00009 $list = new Anc_Listing($cn);
00010 $list->get_request();
00011
00012 echo $list->display_form();
00013
00014 if (isset($_GET['result']))
00015 {
00016 echo '<div class="content">';
00017
00018
00019
00020
00021 $result=$list->display_html();
00022 if ( $list->has_data > 0)
00023 {
00024 echo $list->show_button();
00025 echo $result;
00026 }
00027 else
00028 {
00029 echo '<p class="notice">';
00030 echo _('Aucune donnée trouvée');
00031 echo '</p>';
00032 }
00033 echo '</div>';
00034 }
00035 echo '</div>';
00036 ?>