phpcompta-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpcompta-dev] r504 - trunk/import_account/include/template


From: phpcompta-dev
Subject: [Phpcompta-dev] r504 - trunk/import_account/include/template
Date: Fri, 17 May 2013 00:44:15 +0200 (CEST)

Author: danydb
Date: 2013-05-17 00:44:15 +0200 (Fri, 17 May 2013)
New Revision: 504

Modified:
   trunk/import_account/include/template/input_file.php
   trunk/import_account/include/template/parameter.php
   trunk/import_account/include/template/parameter_tva_add.php
   trunk/import_account/include/template/test_file.php
   trunk/import_account/include/template/test_operation.php
   trunk/import_account/include/template/upload_operation.php
Log:
Task #0000839: R?\195?\169?\195?\169criture de la proc?\195?\169dure 
d'installation


Tous les tags <? ont ?\195?\169t?\195?\169 chang?\195?\169s en <?php pour les 
servers mutualis?\195?\169s

Modified: trunk/import_account/include/template/input_file.php
===================================================================
--- trunk/import_account/include/template/input_file.php        2013-05-16 
22:42:11 UTC (rev 503)
+++ trunk/import_account/include/template/input_file.php        2013-05-16 
22:44:15 UTC (rev 504)
@@ -10,24 +10,24 @@
    Par défaut, correspond à un export CSV depuis Calc (OpenOffice.org ou 
libreoffice);
 </p>
 <form method="POST" enctype="multipart/form-data">
-<?=$hidden?>
+<?php echo $hidden?>
 <table>
 <tr>
-<td>Délimiteur </td><TD> <? echo $delimiter->input()?></td>
+<td>Délimiteur </td><TD> <?php echo $delimiter->input()?></td>
 </tr>
 <tr>
-<td>Fichier à charger</td><TD> <? echo $file->input()?></td>
+<td>Fichier à charger</td><TD> <?php echo $file->input()?></td>
 </tr>
 <tr>
-<td>Catégorie de fiche</td><TD> <? echo $fd->input();?></td>
+<td>Catégorie de fiche</td><TD> <?php echo $fd->input();?></td>
 </tr>
 <tr>
-<td>Encodage unicode</td><TD> <? echo $encodage->input()?></td>
+<td>Encodage unicode</td><TD> <?php echo $encodage->input()?></td>
 </tr>
 <tr>
 <td>  Texte entouré du signe </td><TD><input type="text" name="rsurround" 
value='"' size="1"></td>
 </tr>
 </table>
-<? echo HtmlInput::submit('test_import','Valider');?>
+<?php echo HtmlInput::submit('test_import','Valider');?>
 
 </form>

Modified: trunk/import_account/include/template/parameter.php
===================================================================
--- trunk/import_account/include/template/parameter.php 2013-05-16 22:42:11 UTC 
(rev 503)
+++ trunk/import_account/include/template/parameter.php 2013-05-16 22:44:15 UTC 
(rev 504)
@@ -1,5 +1,5 @@
 
-<?
+<?php 
        $bt=new IButton("but_tva_add");
        $bt->label="Ajout d'une correspondance";
        $bt->javascript=" $('dtvaadd').show()";
@@ -9,7 +9,7 @@
 <table class="result" style="width:60%;margin-left:20%">
        <tr>
                <th>Fiche TVA</th>
-               <th>Taux correspondant <?=HtmlInput::infobulle(50)?></th>
+               <th>Taux correspondant <?php echo 
HtmlInput::infobulle(50)?></th>
        </tr>
        <?php
        for ($i = 0; $i < count($atva); $i++):

Modified: trunk/import_account/include/template/parameter_tva_add.php
===================================================================
--- trunk/import_account/include/template/parameter_tva_add.php 2013-05-16 
22:42:11 UTC (rev 503)
+++ trunk/import_account/include/template/parameter_tva_add.php 2013-05-16 
22:44:15 UTC (rev 504)
@@ -36,21 +36,21 @@
                                        TVA
                                </td>
                                <td>
-                                       <? $tva_id = new ITva_Popup('tva_id');
+                                       <?php $tva_id = new 
ITva_Popup('tva_id');
                                        echo $tva_id->input()?>
                                </td>
                        </tr>
                        <tr>
                                <td>
-                                       Taux dans le fichier <?= 
HtmlInput::infobulle(50)?>
+                                       Taux dans le fichier <?php echo  
HtmlInput::infobulle(50)?>
                                </td>
                                <td>
-                                       <? $w = new INum('pt_rate');echo 
$w->input();?>
+                                       <?php $w = new INum('pt_rate');echo 
$w->input();?>
                                </td>
                        </tr>
                </table>
-               <?= HtmlInput::submit("ftvaadd", "Ajout");?>
-               <?
+               <?php echo  HtmlInput::submit("ftvaadd", "Ajout");?>
+               <?php 
                $bt = new IButton("but_tva_close");
                $bt->label = "Fermer";
                $bt->javascript = " $('dtvaadd').hide()";

Modified: trunk/import_account/include/template/test_file.php
===================================================================
--- trunk/import_account/include/template/test_file.php 2013-05-16 22:42:11 UTC 
(rev 503)
+++ trunk/import_account/include/template/test_file.php 2013-05-16 22:44:15 UTC 
(rev 504)
@@ -9,26 +9,26 @@
 </p>
 
 <form method="POST" >
-<?=$hidden?>
+<?php echo $hidden?>
 <table>
 <tr>
 <td>Délimiteur </td>
-<td> <? echo $_POST['rdelimiter']?></td>
+<td> <?php echo $_POST['rdelimiter']?></td>
 </tr>
 <tr>
-<td>Fichier à charger</td><td> <? echo $_FILES['csv_file']['name']?></td>
+<td>Fichier à charger</td><td> <?php echo $_FILES['csv_file']['name']?></td>
 </tr>
 <tr>
-<td>Catégorie de fiche</td><td> <? echo $file_cat;?></td>
+<td>Catégorie de fiche</td><td> <?php echo $file_cat;?></td>
 </tr>
 <tr>
-<td>Encodage </td><td> <? echo $encoding?></td>
+<td>Encodage </td><td> <?php echo $encoding?></td>
 </tr>
 <tr>
-<td>Texte entouré par</td><td> <? echo $_POST['rsurround'];?></td>
+<td>Texte entouré par</td><td> <?php echo $_POST['rsurround'];?></td>
 </tr>
 </table>
-<?
+<?php 
 foreach (array('rfichedef','rdelimiter','encodage') as $e)
 {
   if ( isset($_POST[$e])) echo HtmlInput::hidden($e,$_POST[$e]);
@@ -37,11 +37,11 @@
 
  echo HtmlInput::submit('record_import','Valider');
 ?>
-<input type="hidden" name="rsurround" value='<?=$_POST['rsurround']?>'>
+<input type="hidden" name="rsurround" value='<?php echo $_POST['rsurround']?>'>
 
 
 
-<?
+<?php 
    global $cn;
    ob_start();
   /**

Modified: trunk/import_account/include/template/test_operation.php
===================================================================
--- trunk/import_account/include/template/test_operation.php    2013-05-16 
22:42:11 UTC (rev 503)
+++ trunk/import_account/include/template/test_operation.php    2013-05-16 
22:44:15 UTC (rev 504)
@@ -9,26 +9,26 @@
 </p>
 
 <form method="POST" >
-<?=$hidden?>
+<?php echo $hidden?>
 <table>
 <tr>
 <td>Délimiteur </td>
-<td> <? echo $_POST['rdelimiter']?></td>
+<td> <?php echo $_POST['rdelimiter']?></td>
 </tr>
 <tr>
-<td>Fichier à charger</td><td> <? echo $_FILES['csv_file']['name']?></td>
+<td>Fichier à charger</td><td> <?php echo $_FILES['csv_file']['name']?></td>
 </tr>
 <tr>
-<td>Catégorie de fiche</td><td> <? echo $file_cat;?></td>
+<td>Catégorie de fiche</td><td> <?php echo $file_cat;?></td>
 </tr>
 <tr>
-<td>Encodage </td><td> <? echo $encoding?></td>
+<td>Encodage </td><td> <?php echo $encoding?></td>
 </tr>
 <tr>
-<td>Texte entouré par</td><td> <? echo $_POST['rsurround'];?></td>
+<td>Texte entouré par</td><td> <?php echo $_POST['rsurround'];?></td>
 </tr>
 </table>
-<?
+<?php 
 foreach (array('rfichedef','rdelimiter','encodage') as $e)
 {
   if ( isset($_POST[$e])) echo HtmlInput::hidden($e,$_POST[$e]);
@@ -37,11 +37,11 @@
 
  echo HtmlInput::submit('record_import','Valider');
 ?>
-<input type="hidden" name="rsurround" value='<?=$_POST['rsurround']?>'>
+<input type="hidden" name="rsurround" value='<?php echo $_POST['rsurround']?>'>
 
 
 
-<?
+<?php 
    global $cn;
    ob_start();
   /**

Modified: trunk/import_account/include/template/upload_operation.php
===================================================================
--- trunk/import_account/include/template/upload_operation.php  2013-05-16 
22:42:11 UTC (rev 503)
+++ trunk/import_account/include/template/upload_operation.php  2013-05-16 
22:44:15 UTC (rev 504)
@@ -37,9 +37,9 @@
 <table>
 <tr>
 <tr>
-       <td>Fichier à charger</td><TD> <? $file = new 
IFile('csv_operation');echo $file->input()?></td>
+       <td>Fichier à charger</td><TD> <?php $file = new 
IFile('csv_operation');echo $file->input()?></td>
 </tr>
 </table>
-<? echo HtmlInput::submit('upload','Valider');?>
+<?php echo HtmlInput::submit('upload','Valider');?>
 
 </form>
\ No newline at end of file



---
PhpCompta est un logiciel de comptabilité libre en ligne (full web)
Projet opensource http://www.phpcompta.eu



reply via email to

[Prev in Thread] Current Thread [Next in Thread]