noalyss  Version-6.7.2
 All Data Structures Namespaces Files Functions Variables Enumerations
action_search_result.php
Go to the documentation of this file.
00001 <?php
00002 
00003 /*
00004  *   This file is part of NOALYSS.
00005  *
00006  *   NOALYSS is free software; you can redistribute it and/or modify
00007  *   it under the terms of the GNU General Public License as published by
00008  *   the Free Software Foundation; either version 2 of the License, or
00009  *   (at your option) any later version.
00010  *
00011  *   NOALYSS is distributed in the hope that it will be useful,
00012  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
00013  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00014  *   GNU General Public License for more details.
00015  *
00016  *   You should have received a copy of the GNU General Public License
00017  *   along with NOALYSS; if not, write to the Free Software
00018  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00019  */
00020 /* $Revision$ */
00021 
00022 // Copyright Author Dany De Bontridder danydb@aevalys.eu
00023 
00024 /**
00025  * @file
00026  * @brief show the result of a search into a inner windows
00027  *
00028  */
00029 ?>
00030 <form onsubmit="set_action_related('fresultaction');return false;" id="fresultaction">
00031         <?php echo HtmlInput::hidden('ctlc',$_GET['ctlc'])?>
00032         <?php echo HtmlInput::submit("save_action", _("Mettre à jour"))?>
00033 <?php if (isset($limit)) : ?>
00034         <h2 class="notice">Recherche limitée à <?php echo $limit?> résultats</h2>
00035 <?php endif;?>
00036 
00037 <table class="result">
00038 
00039         <tr>
00040                 <th>
00041 
00042                 </th>
00043                 <th>
00044                         <?php echo _("Date");?>
00045                 </th>
00046                 <th>
00047                         <?php echo _("Ref");?>
00048                 </th>
00049                 <th>
00050                         <?php echo _("Titre");?>
00051                 </th>
00052                 <th>
00053                         <?php echo _("Destinataire");?>
00054                 </th>
00055                 <th>
00056                         <?php echo _("Type");?>
00057                 </th>
00058         </tr>
00059 <?php for ($i=0;$i<$limit;$i++):?>
00060         <?php $class=($i%2==0)?' class="odd" ':' class="even"'; ?>
00061         <tr  <?php echo $class?>>
00062                 <td>
00063                         <?php
00064                         $ck=new ICheckBox('ag_id[]');
00065                          $ck->value=$a_row[$i]['ag_id'];
00066                          echo $ck->input();
00067                         ?>
00068                 </td>
00069                 <td >
00070                         <?php echo h($a_row[$i]['my_date'])?>
00071                 </td>
00072                 <td>
00073                         <?php echo h($a_row[$i]['ag_ref'])?>
00074                 </td>
00075                 <td>
00076                         <?php echo h($a_row[$i]['sub_ag_title'])?>
00077                 </td>
00078                 <td>
00079                         <?php echo h($a_row[$i]['name'])?>
00080                 </td>
00081                 <td>
00082                         <?php echo h($a_row[$i]['dt_value'])?>
00083                 </td>
00084         </tr>
00085 
00086 <?php endfor;?>
00087 </table>
00088         <?php echo HtmlInput::submit("save_action", _("Mettre à jour"))?>
00089 </form>
 All Data Structures Namespaces Files Functions Variables Enumerations