noalyss  Version-6.7.2
 All Data Structures Namespaces Files Functions Variables Enumerations
menu_detail.php
Go to the documentation of this file.
00001 <?php
00002 //This file is part of NOALYSS and is under GPL 
00003 //see licence.txt
00004 ?><?php
00005 require_once 'class_html_input.php';
00006 require_once 'class_itext.php';
00007 echo HtmlInput::title_box($msg,"divmenu");
00008 $str_code=new IText('me_code',$m->me_code);
00009 if ( $m->me_code != -1) $str_code->setReadOnly (true);
00010 
00011 $str_menu=new IText('me_menu',$m->me_menu);
00012 $str_desc=new IText('me_description',$m->me_description);
00013 $str_file=new IText('me_file',$m->me_file);
00014 $str_url=new IText('me_url',$m->me_url);
00015 $str_parameter=new IText('me_parameter',$m->me_parameter);
00016 $str_js=new IText('me_javascript',$m->me_javascript);
00017 $a_type=array (
00018        array ('label'=>_('Impression'),'value'=>'PR' ),
00019        array ('label'=>_('Menu'),'value'=>'ME' )
00020     );
00021 $str_type=new ISelect("me_type", $a_type);
00022 $str_type->selected=$m->me_type;
00023 ?>
00024 <table>
00025     <tr>
00026         <td>
00027             <?php echo _("Code du menu")?>
00028         </td>
00029         <td>
00030             <?php echo $str_code->input()?>
00031         </td>
00032     </tr>
00033         <tr>
00034         <td>
00035             <?php echo _("Libellé du menu")?>
00036         </td>
00037         <td>
00038             <?php echo $str_menu->input()?>
00039         </td>
00040     </tr>
00041         <tr>
00042         <td>
00043             <?php echo _("Description")?>
00044         </td>
00045         <td>
00046             <?php echo $str_desc->input()?>
00047         </td>
00048     </tr>
00049     <tr>
00050         <td>
00051             <?php echo _("Type")?>
00052         </td>
00053         <td>
00054             <?php echo $str_type->input();?>
00055         </td>
00056     </tr>
00057          <tr>
00058         <td>
00059             <?php echo _("Fichier à inclure (depuis le répertoire include)")?>
00060         </td>
00061         <td>
00062             <?php echo $str_file->input()?>
00063         </td>
00064     </tr>
00065     <tr>
00066         <td>
00067             URL
00068         </td>
00069         <td>
00070             <?php echo $str_url->input()?>
00071         </td>
00072     </tr>
00073      <tr>
00074         <td>
00075             Paramètre
00076         </td>
00077         <td>
00078             <?php echo $str_parameter->input()?>
00079         </td>
00080     </tr>
00081      <tr>
00082         <td>
00083             Javascript
00084         </td>
00085         <td>
00086             <?php echo $str_js->input()?>
00087         </td>
00088     </tr>
00089 </table>
 All Data Structures Namespaces Files Functions Variables Enumerations