noalyss  Version-6.7.2
 All Data Structures Namespaces Files Functions Variables Enumerations
tag_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 echo Dossier::hidden();
00006 echo HtmlInput::hidden('t_id',$data->t_id);
00007 echo HtmlInput::hidden('ac',$_REQUEST['ac']);
00008 $uos=new Tool_Uos('tag');
00009 echo $uos->hidden();
00010 $t_tag=new IText('t_tag',$data->t_tag);
00011 $t_description=new ITextarea('t_description',$data->t_description);
00012 $t_description->style=' class="itextarea" style="height:5em;vertical-align: top;"';
00013 ?>
00014 <p>
00015    <?php echo _("Etiquette (tag)")?> : <?php echo $t_tag->input(); ?>
00016 </p>
00017 <p>
00018 <?php echo _("Description")?> : <?php echo $t_description->input(); ?>
00019 </p>
00020 <?php
00021 // If exist you can remove it
00022 if ( $data->t_id != '-1') : 
00023 ?>
00024 <p><?php echo _("Cochez pour cette case pour effacer ce tag")?><input type="checkbox" name="remove">
00025 </p>
00026 
00027 <?php
00028 endif;
00029 ?>
 All Data Structures Namespaces Files Functions Variables Enumerations