noalyss-commit
[Top][All Lists]
Advanced

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

[Noalyss-commit] [noalyss] 01/07: Change www.aevalys.eu by www.noalyss.e


From: Dany De Bontridder
Subject: [Noalyss-commit] [noalyss] 01/07: Change www.aevalys.eu by www.noalyss.eu Code indent
Date: Thu, 15 Oct 2015 19:00:13 +0000

sparkyx pushed a commit to branch master
in repository noalyss.

commit 24f0d4b90e9efe1546241d49447fa6fb01c5b41a
Author: Dany De Bontridder <address@hidden>
Date:   Thu Oct 15 10:36:52 2015 +0200

    Change www.aevalys.eu by www.noalyss.eu
    Code indent
---
 include/class/class_dossier.php                    |   16 ++++++++--------
 include/class/class_print_ledger_detail.php        |    2 +-
 include/class/class_print_ledger_detail_item.php   |    2 +-
 include/class/class_print_ledger_fin.php           |    2 +-
 include/class/class_print_ledger_misc.php          |    2 +-
 include/class/class_print_ledger_simple.php        |    2 +-
 .../class_print_ledger_simple_without_vat.php      |    2 +-
 include/lib/class_pdf.php                          |    4 ++--
 8 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/include/class/class_dossier.php b/include/class/class_dossier.php
index ca3e93a..132bd16 100644
--- a/include/class/class_dossier.php
+++ b/include/class/class_dossier.php
@@ -20,13 +20,13 @@
 
 // Copyright Author Dany De Bontridder address@hidden
 
-/* !\file
+/*!\file
  * \brief the class for the dossier, everywhere we need to know to
  * which folder we are connected, because we can't use $_SESSION, we
  * need to pass the dossier_id via a _GET or a POST variable
  */
 
-/* ! \brief manage the current dossier, everywhere we need to know to
+/*! \brief manage the current dossier, everywhere we need to know to
  * which folder we are connected, because we can't use $_SESSION, we
  * need to pass the dossier_id via a _GET or a POST variable
  *  private static $variable=array("id"=>"dos_id",
@@ -50,7 +50,7 @@ class Dossier
         $this->dos_id=$p_id;
     }
 
-    /* !\brief return the $_REQUEST['gDossier'] after a check */
+    /*!\brief return the $_REQUEST['gDossier'] after a check */
 
     static function id()
     {
@@ -125,7 +125,7 @@ class Dossier
         return $nb_folder;
     }
 
-    /* !
+    /*!
      * \brief Return all the users
      * as an array
      */
@@ -159,7 +159,7 @@ class Dossier
         return $res;
     }
 
-    /* !\brief check if gDossier is set */
+    /*!\brief check if gDossier is set */
 
     static function check()
     {
@@ -175,7 +175,7 @@ class Dossier
             exit('gDossier Invalide : '.$id);
     }
 
-    /* !\brief return a string to put to gDossier into a GET */
+    /*!\brief return a string to put to gDossier into a GET */
 
     static function get()
     {
@@ -183,7 +183,7 @@ class Dossier
         return "gDossier=".$_REQUEST['gDossier'];
     }
 
-    /* !\brief return a string to set gDossier into a FORM */
+    /*!\brief return a string to set gDossier into a FORM */
 
     static function hidden()
     {
@@ -191,7 +191,7 @@ class Dossier
         return '<input type="hidden" id="gDossier" name="gDossier" 
value="'.$_REQUEST['gDossier'].'">';
     }
 
-    /* !\brief retrieve the name of the current dossier */
+    /*!\brief retrieve the name of the current dossier */
 
     static function name($id=0)
     {
diff --git a/include/class/class_print_ledger_detail.php 
b/include/class/class_print_ledger_detail.php
index 6b90310..371afd3 100644
--- a/include/class/class_print_ledger_detail.php
+++ b/include/class/class_print_ledger_detail.php
@@ -61,7 +61,7 @@ class Print_Ledger_Detail extends PDF
         //Page number
         $this->Cell(0,8,'Date '.$this->date." - Page 
".$this->PageNo().'/{nb}',0,0,'L');
         // Created by NOALYSS
-        $this->Cell(0,8,'Created by NOALYSS, online on 
http://www.aevalys.eu',0,0,'R',false,'http://www.aevalys.eu');
+        $this->Cell(0,8,'Created by NOALYSS, online on 
http://www.noalyss.eu',0,0,'R',false,'http://www.noalyss.eu');
 
     }
     function Cell ($w, $h=0, $txt='', $border=0, $ln=0, $align='', 
$fill=false, $link='')
diff --git a/include/class/class_print_ledger_detail_item.php 
b/include/class/class_print_ledger_detail_item.php
index 64c7620..64ad33c 100644
--- a/include/class/class_print_ledger_detail_item.php
+++ b/include/class/class_print_ledger_detail_item.php
@@ -79,7 +79,7 @@ class Print_Ledger_Detail_Item extends PDFLand
         //Page number
         $this->Cell(30,8,'Date '.$this->date." - Page 
".$this->PageNo().'/{nb}',0,0,'L');
         // Created by NOALYSS
-        $this->Cell(0,8,'Created by NOALYSS, online on 
http://www.aevalys.eu',0,0,'R',false,'http://www.aevalys.eu');
+        $this->Cell(0,8,'Created by NOALYSS, online on 
http://www.noalyss.eu',0,0,'R',false,'http://www.noalyss.eu');
     }
 
     function Cell ($w, $h=0, $txt='', $border=0, $ln=0, $align='', 
$fill=false, $link='')
diff --git a/include/class/class_print_ledger_fin.php 
b/include/class/class_print_ledger_fin.php
index 21f56e6..e7976bb 100644
--- a/include/class/class_print_ledger_fin.php
+++ b/include/class/class_print_ledger_fin.php
@@ -84,7 +84,7 @@ class Print_Ledger_Financial extends PDF
         $this->Cell(0,8,'Date '.$this->date." - Page 
".$this->PageNo().'/{nb}',0,0,'C');
         $this->Ln(3);
         // Created by NOALYSS
-        $this->Cell(0,8,'Created by NOALYSS, online on 
http://www.aevalys.eu',0,0,'C',false,'http://www.aevalys.eu');
+        $this->Cell(0,8,'Created by NOALYSS, online on 
http://www.noalyss.eu',0,0,'C',false,'http://www.noalyss.eu');
 
     }
     /**
diff --git a/include/class/class_print_ledger_misc.php 
b/include/class/class_print_ledger_misc.php
index 6afa26d..7c576a7 100644
--- a/include/class/class_print_ledger_misc.php
+++ b/include/class/class_print_ledger_misc.php
@@ -59,7 +59,7 @@ class Print_Ledger_Misc extends PDF
         $this->Cell(0,8,'Date '.$this->date." - Page 
".$this->PageNo().'/{nb}',0,0,'C');
         $this->Ln(3);
         // Created by NOALYSS
-        $this->Cell(0,8,'Created by NOALYSS, online on 
http://www.aevalys.eu',0,0,'C',false,'http://www.aevalys.eu');
+        $this->Cell(0,8,'Created by NOALYSS, online on 
http://www.noalyss.eu',0,0,'C',false,'http://www.noalyss.eu');
     }
     /**
      address@hidden print the pdf
diff --git a/include/class/class_print_ledger_simple.php 
b/include/class/class_print_ledger_simple.php
index 2fafc0c..2ac5be5 100644
--- a/include/class/class_print_ledger_simple.php
+++ b/include/class/class_print_ledger_simple.php
@@ -190,7 +190,7 @@ class Print_Ledger_Simple extends PDF
         //Page number
         $this->Cell(0,8,'Date '.$this->date." - Page 
".$this->PageNo().'/{nb}',0,0,'L');
         // Created by NOALYSS
-        $this->Cell(0,8,'Created by NOALYSS, online on 
http://www.aevalys.eu',0,0,'R',false,'http://www.aevalys.eu');
+        $this->Cell(0,8,'Created by NOALYSS, online on 
http://www.noalyss.eu',0,0,'R',false,'http://www.noalyss.eu');
     }
 
     function Cell ($w, $h=0, $txt='', $border=0, $ln=0, $align='', 
$fill=false, $link='')
diff --git a/include/class/class_print_ledger_simple_without_vat.php 
b/include/class/class_print_ledger_simple_without_vat.php
index 3430fd6..046238e 100644
--- a/include/class/class_print_ledger_simple_without_vat.php
+++ b/include/class/class_print_ledger_simple_without_vat.php
@@ -133,7 +133,7 @@ class Print_Ledger_Simple_Without_Vat extends PDF
         //Page number
         $this->Cell(0,8,'Date '.$this->date." - Page 
".$this->PageNo().'/{nb}',0,0,'L');
         // Created by NOALYSS
-        $this->Cell(0,8,'Created by NOALYSS, online on 
http://www.aevalys.eu',0,0,'R',false,'http://www.aevalys.eu');
+        $this->Cell(0,8,'Created by NOALYSS, online on 
http://www.noalyss.eu',0,0,'R',false,'http://www.noalyss.eu');
     }
 
     function Cell ($w, $h=0, $txt='', $border=0, $ln=0, $align='', 
$fill=false, $link='')
diff --git a/include/lib/class_pdf.php b/include/lib/class_pdf.php
index 69a1f06..69ab52e 100644
--- a/include/lib/class_pdf.php
+++ b/include/lib/class_pdf.php
@@ -78,7 +78,7 @@ class PDF extends TFPDF
         $this->Cell(0,8,'Date '.$this->date." - Page 
".$this->PageNo().'/{nb}',0,0,'C');
         $this->Ln(3);
         // Created by NOALYSS
-        $this->Cell(0,8,'Created by NOALYSS, online on 
http://www.aevalys.eu',0,0,'C',false,'http://www.aevalys.eu');
+        $this->Cell(0,8,'Created by NOALYSS, online on 
http://www.noalyss.eu',0,0,'C',false,'http://www.noalyss.eu');
     }
     function Cell ($w, $h=0, $txt='', $border=0, $ln=0, $align='', 
$fill=false, $link='')
     {
@@ -222,7 +222,7 @@ class PDFLand extends PDF
         $this->Cell(0,8,'Date '.$this->date." - Page 
".$this->PageNo().'/{nb}',0,0,'C');
         $this->Ln(3);
         // Created by NOALYSS
-        $this->Cell(0,8,'Created by NOALYSS, online on 
http://www.aevalys.eu',0,0,'C',false,'http://www.aevalys.eu');
+        $this->Cell(0,8,'Created by NOALYSS, online on 
http://www.noalyss.eu',0,0,'C',false,'http://www.noalyss.eu');
 
     }
 }



reply via email to

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