Extension ext-grade introduced
authorRoland Häder <roland@mxchange.org>
Tue, 24 Nov 2009 06:49:19 +0000 (06:49 +0000)
committerRoland Häder <roland@mxchange.org>
Tue, 24 Nov 2009 06:49:19 +0000 (06:49 +0000)
.gitattributes
inc/extensions/ext-
inc/extensions/ext-grade.php [new file with mode: 0644]
templates/de/html/ext/ext_grade.tpl [new file with mode: 0644]

index 54764a3b78927b8dadf845ba39172f8bd9fb0f00..b14fa007c5909ca4d532d415e2cc7372a47826ca 100644 (file)
@@ -133,6 +133,7 @@ inc/extensions/ext-debug.php -text
 inc/extensions/ext-demo.php -text
 inc/extensions/ext-doubler.php -text
 inc/extensions/ext-events.php -text
 inc/extensions/ext-demo.php -text
 inc/extensions/ext-doubler.php -text
 inc/extensions/ext-events.php -text
+inc/extensions/ext-grade.php -text
 inc/extensions/ext-holiday.php -text
 inc/extensions/ext-html_mail.php -text
 inc/extensions/ext-imprint.php -text
 inc/extensions/ext-holiday.php -text
 inc/extensions/ext-html_mail.php -text
 inc/extensions/ext-imprint.php -text
@@ -1291,6 +1292,7 @@ templates/de/html/ext/ext_debug.tpl -text
 templates/de/html/ext/ext_demo.tpl -text
 templates/de/html/ext/ext_doubler.tpl -text
 templates/de/html/ext/ext_events.tpl -text
 templates/de/html/ext/ext_demo.tpl -text
 templates/de/html/ext/ext_doubler.tpl -text
 templates/de/html/ext/ext_events.tpl -text
+templates/de/html/ext/ext_grade.tpl -text
 templates/de/html/ext/ext_holiday.tpl -text
 templates/de/html/ext/ext_html_mail.tpl -text
 templates/de/html/ext/ext_imprint.tpl -text
 templates/de/html/ext/ext_holiday.tpl -text
 templates/de/html/ext/ext_html_mail.tpl -text
 templates/de/html/ext/ext_imprint.tpl -text
index de91370a82a8cfb85ff1d587aa68e84c9ec36576..6c2c9573bfe058b3e9f702202d6a4c438922d27a 100644 (file)
@@ -85,7 +85,7 @@ switch (getExtensionMode()) {
                break;
 
        default: // Unknown extension mode
                break;
 
        default: // Unknown extension mode
-               DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown extension mode %s detected.", getExtensionMode()));
+               logDebugMessage(__FILE__, __LINE__, sprintf("Unknown extension mode %s detected.", getExtensionMode()));
                break;
 } // END - switch
 
                break;
 } // END - switch
 
diff --git a/inc/extensions/ext-grade.php b/inc/extensions/ext-grade.php
new file mode 100644 (file)
index 0000000..d2c61ca
--- /dev/null
@@ -0,0 +1,93 @@
+<?php
+/************************************************************************
+ * Mailer v0.2.1-FINAL                                Start: 11/24/2009 *
+ * ===================                          Last change: 11/24/2009 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : ext-grade.php                                    *
+ * -------------------------------------------------------------------- *
+ * Short description : Grades for your members                          *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Einstufungen Ihrer Mitglieder                    *
+ * -------------------------------------------------------------------- *
+ * $Revision:: 856                                                    $ *
+ * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. March 2009)             $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author:: stelzi                                                   $ *
+ * Needs to be in all Files and every File needs "svn propset           *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program 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.                                  *
+ *                                                                      *
+ * This program 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 this program; if not, write to the Free Software          *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
+ * MA  02110-1301  USA                                                  *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       die();
+} // END - if
+
+// Version number
+setThisExtensionVersion('0.0');
+
+// Version history array (add more with , '0.1.0' and so on)
+setExtensionVersionHistory(array('0.0'));
+
+switch (getExtensionMode()) {
+       case 'register': // Do stuff when installation is running (modules.php?module=admin is called)
+               // SQL commands to run
+               break;
+
+       case 'remove': // Do stuff when removing extension
+               // SQL commands to run
+               break;
+
+       case 'activate': // Do stuff when admin activates this extension
+               // SQL commands to run
+               break;
+
+       case 'deactivate': // Do stuff when admin deactivates this extension
+               // SQL commands to run
+               break;
+
+       case 'update': // Update an extension
+               switch (getCurrentExtensionVersion()) {
+                       case '0.0.1': // SQL queries for v0.0.1
+                               addExtensionSql('');
+
+                               // Update notes (these will be set as task text!)
+                               setExtensionUpdateNotes('');
+                               break;
+               } // END - switch
+               break;
+
+       case 'modify': // When the extension got modified
+               break;
+
+       case 'test': // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
+               break;
+
+       case 'init': // Do stuff when extension is initialized
+               break;
+
+       default: // Unknown extension mode
+               logDebugMessage(__FILE__, __LINE__, sprintf("Unknown extension mode %s detected.", getExtensionMode()));
+               break;
+} // END - switch
+
+// [EOF]
+?>
diff --git a/templates/de/html/ext/ext_grade.tpl b/templates/de/html/ext/ext_grade.tpl
new file mode 100644 (file)
index 0000000..f11fce7
--- /dev/null
@@ -0,0 +1,13 @@
+<div class="para">
+Stufen Sie Ihre Mitglieder z.B. in Bronze, Silber, Gold und Platin ein und
+vergeben Sie Erm&auuml;ssigungen oder Bonuse f&uuml;r das Erreichen der Stufen.
+Wenn die Erm&auml;ssigung eingel&oum;st bzw. der Bonus ausgew&auml;hlt wurde,
+verf&auml;llt dieser und das Mitglied muss ihn erneut versuchen, zu erreichen.
+</div>
+
+<div class="para">
+Sie sollten beispielweise Bronze als niedrigste und Platin als h&ouml;chste
+Stufe nehmen. Dann k&ouml;nnen Ihre Mitglieder es sich aussuchen, ob sie weiter
+verdienen wollen um an eine h&ouml;here Stufe zu gelangen, oder ob sie sich mit
+der niedrigeren Stufe zufrieden geben.
+</div>