noalyss-commit
[Top][All Lists]
Advanced

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

[Noalyss-commit] [noalyss] branch master updated: Missing file


From: Dany De Bontridder
Subject: [Noalyss-commit] [noalyss] branch master updated: Missing file
Date: Fri, 10 Dec 2021 07:06:46 -0500

This is an automated email from the git hooks/post-receive script.

sparkyx pushed a commit to branch master
in repository noalyss.

The following commit(s) were added to refs/heads/master by this push:
     new 800b3d8  Missing file
800b3d8 is described below

commit 800b3d883674972142e4c62c814c784ad7a8d81a
Author: sparkyx <danydb@noalyss.eu>
AuthorDate: Fri Dec 10 13:02:27 2021 +0100

    Missing file
---
 include/template/periode-form_exercice_label.php | 64 ++++++++++++++++++++++++
 1 file changed, 64 insertions(+)

diff --git a/include/template/periode-form_exercice_label.php 
b/include/template/periode-form_exercice_label.php
new file mode 100644
index 0000000..d0ac0d2
--- /dev/null
+++ b/include/template/periode-form_exercice_label.php
@@ -0,0 +1,64 @@
+<?php
+
+/*
+ *   This file is part of NOALYSS.
+ *
+ *   PhpCompta is free software; you can redistribute it and/or modify
+ *   it under the terms of the GNU General Public License as published by
+ *   the Free Software Foundation; either version 2 of the License, or
+ *   (at your option) any later version.
+ *
+ *   PhpCompta is distributed in the hope that it will be useful,
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *   GNU General Public License for more details.
+ *
+ *   You should have received a copy of the GNU General Public License
+ *   along with PhpCompta; if not, write to the Free Software
+ *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+// Copyright (2002-2021) Author Dany De Bontridder <danydb@noalyss.eu>
+
+if (!defined('ALLOWED'))
+    die('Appel direct ne sont pas permis');
+
+/**
+ * @file
+ * @brief Form to  modify an existing label
+ */
+?>
+<?=HtmlInput::title_box(_("Modifie un libellé 
d'exercice"),'exercice_label_div','hide')?>
+<form method="POST" id="exercice_label_frm" >
+    <?php
+        echo HtmlInput::array_to_hidden(["ac","gDossier"], $_REQUEST);
+    ?>
+    <p>
+        <?=_("Exercice")?>
+        <?php
+        $ex=new Exercice($cn);
+        echo $ex->select("p_exercice")->input();
+        ?>
+    </p>
+    
+    <p>
+    <label for="p_exercice_label">
+        <?=_("Libellé")?>
+    </label>
+    <?php
+        $exercice_label=new IText("p_exercice_label");
+        echo $exercice_label->input();
+    ?>
+    </p>
+   <ul class="aligned-block">
+    <li>
+        <?php
+        echo HtmlInput::submit("mod_exercice_label_bt", _("Modifie"));
+       ?>
+    </li>
+    <li>
+        <?php
+        echo HtmlInput::button_hide('exercice_label_div');
+       ?>
+    </li>
+    </ul>
+</form>    



reply via email to

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