noalyss  Version-6.7.2
 All Data Structures Namespaces Files Functions Variables Enumerations
list_mod_payment.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 list payment method
00027  *
00028  */
00029 
00030 ?>
00031  <table class="table_large" >
00032          <tr >
00033                  <th>
00034                          <?php echo $header->get_header(0)?>
00035                  </th>
00036                  <th style="text-align:center">
00037                          <?php echo $header->get_header(1)?>
00038                  </th>
00039                  <th style="text-align:center">
00040                          <?php echo $header->get_header(2)?>
00041                  </th>
00042                  <th style="text-align:center">
00043                          <?php echo $header->get_header(3)?>
00044                  </th>
00045                  <th style="text-align:center">
00046                          <?php echo $header->get_header(4)?>
00047                  </th>
00048                  <th>
00049 
00050                  </th>
00051          </tr>
00052 <?php for ($i=0;$i<count($array);$i++):
00053         if ($i%2==0):
00054                 $class='class="odd" ';
00055         else:
00056                 $class='class="even"';
00057         endif;
00058 ?>
00059          <tr <?php echo $class?>>
00060                  <td>
00061                          <?php echo h($array[$i]['mp_lib'])?>
00062                  </td>
00063                  <td style="text-align:center">
00064                          <?php echo h($array[$i]['jrn_def_name'])?>
00065 
00066                  </td>
00067                  <td style="text-align:center">
00068                          <?php echo h($array[$i]['fd_label'])?>
00069 
00070                  </td>
00071                  <td style="text-align:center">
00072                          <?php echo h($array[$i]['jrn_target'])?>
00073                  </td>
00074                  <td style="text-align:center">
00075                          <?php echo h($array[$i]['vw_name'])?>
00076                  </td>
00077 
00078 <?php 
00079 echo $td.HtmlInput::button_anchor(_('Modifie'),'?ac='.$_REQUEST['ac'].'&sa=mp&sb=change&'.dossier::get().
00080                                               '&id='.$array[$i]['mp_id']);
00081 ?>
00082 
00083          </tr>
00084 <?php endfor;?>
00085 
00086 </table>
 All Data Structures Namespaces Files Functions Variables Enumerations