Not only Bitcoins shall be supported, why not support all other forks?
authorRoland Haeder <roland@mxchange.org>
Fri, 3 Apr 2015 17:59:44 +0000 (19:59 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 3 Apr 2015 17:59:44 +0000 (19:59 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
inc/extensions/ext-bitcoins.php [deleted file]
inc/extensions/ext-cryptocoins.php [new file with mode: 0644]
templates/de/html/ext/ext_bitcoins.tpl [deleted file]
templates/de/html/ext/ext_cryptocoins.tpl [new file with mode: 0644]

diff --git a/inc/extensions/ext-bitcoins.php b/inc/extensions/ext-bitcoins.php
deleted file mode 100644 (file)
index 766a16f..0000000
+++ /dev/null
@@ -1,101 +0,0 @@
-<?php
-/************************************************************************
- * Mailer v0.2.1-FINAL                                Start: 09/25/2004 *
- * ===================                          Last change: 09/25/2004 *
- *                                                                      *
- * -------------------------------------------------------------------- *
- * File              : ext-bitcoins.php                                 *
- * -------------------------------------------------------------------- *
- * Short description : P2P payment system extension for Bitcoins        *
- * -------------------------------------------------------------------- *
- * Kurzbeschreibung  : P2P-Bezahlungssystem 'Bitcoin'                   *
- * -------------------------------------------------------------------- *
- * $Revision::                                                        $ *
- * $Date::                                                            $ *
- * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author::                                                          $ *
- * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
- * For more information visit: http://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.0');
-
-// Version history array (add more with , '0.0.1' and so on)
-setExtensionVersionHistory(array('0.0.0'));
-
-// This extension is in development (non-productive)
-enableExtensionProductive(FALSE);
-
-switch (getExtensionMode()) {
-       case 'setup': // Do stuff when installation is running
-               // SQL commands to run
-
-               // Register module
-               //addModuleSql('foo','Y','Y','N','N');
-               break;
-
-       case 'remove': // Do stuff when removing extension
-               // SQL commands to run
-               //addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_mod_reg` WHERE `module`='foo' LIMIT 1");
-               break;
-
-       case 'activate': // Do stuff when admin activates this extension
-               // SQL commands to run
-               //addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_mod_reg` SET `locked`='N',`hidden`='N',`admin_only`='N',`mem_only`='N' WHERE `module`='foo' LIMIT 1");
-               break;
-
-       case 'deactivate': // Do stuff when admin deactivates this extension
-               // SQL commands to run
-               //addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_mod_reg` SET `locked`='Y' WHERE `module`='foo' LIMIT 1");
-               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
-               break;
-
-       case 'init': // Do stuff when extension is initialized
-               break;
-
-       default: // Unknown extension mode
-               reportBug(__FILE__, __LINE__, sprintf('Unknown extension mode %s in extension %s detected.', getExtensionMode(), getCurrentExtensionName()));
-               break;
-} // END - switch
-
-// [EOF]
-?>
diff --git a/inc/extensions/ext-cryptocoins.php b/inc/extensions/ext-cryptocoins.php
new file mode 100644 (file)
index 0000000..766a16f
--- /dev/null
@@ -0,0 +1,101 @@
+<?php
+/************************************************************************
+ * Mailer v0.2.1-FINAL                                Start: 09/25/2004 *
+ * ===================                          Last change: 09/25/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : ext-bitcoins.php                                 *
+ * -------------------------------------------------------------------- *
+ * Short description : P2P payment system extension for Bitcoins        *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : P2P-Bezahlungssystem 'Bitcoin'                   *
+ * -------------------------------------------------------------------- *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
+ * For more information visit: http://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.0');
+
+// Version history array (add more with , '0.0.1' and so on)
+setExtensionVersionHistory(array('0.0.0'));
+
+// This extension is in development (non-productive)
+enableExtensionProductive(FALSE);
+
+switch (getExtensionMode()) {
+       case 'setup': // Do stuff when installation is running
+               // SQL commands to run
+
+               // Register module
+               //addModuleSql('foo','Y','Y','N','N');
+               break;
+
+       case 'remove': // Do stuff when removing extension
+               // SQL commands to run
+               //addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_mod_reg` WHERE `module`='foo' LIMIT 1");
+               break;
+
+       case 'activate': // Do stuff when admin activates this extension
+               // SQL commands to run
+               //addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_mod_reg` SET `locked`='N',`hidden`='N',`admin_only`='N',`mem_only`='N' WHERE `module`='foo' LIMIT 1");
+               break;
+
+       case 'deactivate': // Do stuff when admin deactivates this extension
+               // SQL commands to run
+               //addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_mod_reg` SET `locked`='Y' WHERE `module`='foo' LIMIT 1");
+               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
+               break;
+
+       case 'init': // Do stuff when extension is initialized
+               break;
+
+       default: // Unknown extension mode
+               reportBug(__FILE__, __LINE__, sprintf('Unknown extension mode %s in extension %s detected.', getExtensionMode(), getCurrentExtensionName()));
+               break;
+} // END - switch
+
+// [EOF]
+?>
diff --git a/templates/de/html/ext/ext_bitcoins.tpl b/templates/de/html/ext/ext_bitcoins.tpl
deleted file mode 100644 (file)
index 4b5d86e..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<div class="para">
-       Bezahlungen mit <a href="http://www.bitcoin.org/" rel="external"
-        target="_blank" title="Virtual P2P Currency Bitcoin">Bitcoins</a> sind mit
-       dieser Erweiterung m&ouml;glich. Bitcoin ist eine virtuelle
-       Internetw&auml;hrung mit der Ihre Sponsoren Werbung bei Ihrem
-       {OPEN_CONFIG}mt_word{CLOSE_CONFIG} bezahlen k&ouml;nnen. &Uuml;blicherweise
-       wird solch eine virtuelle W&auml;hrung (wie z.B. FunCoins, Wernis, Klammlose
-       usw.) auf einem zentralen Server oder auch Serverfarm (Cluster durchaus)
-       gehostet, wo dann meistens eine prohit&auml;hre Software installiert ist und
-       der Anbieter die Herrschaft &uuml;ber die W&auml;hrung und alle Transaktionen
-       hat.
-</div>
-
-<div class="para">
-       Bei der W&auml;hrung Bitcoin ist dies genau anders. Hier existiert eine
-       OpenSource-Software, die sich jeder runterladen kann und sie basiert auf
-       dem Peer-To-Peer-Prinzip, wo letztendlich jeder Teilnehmer die Herrschaft
-       &uuml;ber seine Transaktionen und Daten beh&auml;lt, solange er nicht
-       ausdr&uuml;cklich der &Uuml;berweisung zustimmt (z.B. durch Senden von
-       Bitcoins an eine tempor&auml;re Zieladdresse).
-</div>
-
-<div class="para">
-       F&uuml;r weitere Fragen und Support ausserhalb dieser Erweiterung lesen Sie
-       sich bitte in den Seiten von <a href="http://www.bitcoin.org/"
-        rel="external" target="_blank"
-       title="Virtual P2P Currency Bitcoin">www.bitcoin.org</a> ein bzw. fragen den
-       dortigen Support.
-</div>
diff --git a/templates/de/html/ext/ext_cryptocoins.tpl b/templates/de/html/ext/ext_cryptocoins.tpl
new file mode 100644 (file)
index 0000000..104574a
--- /dev/null
@@ -0,0 +1,26 @@
+<div class="para">
+       Bezahlungen mit diversen Kryptow&auml;hrungen wie Bitcoins, Peercoins usw.
+       sind mit dieser Erweiterung m&ouml;glich. Kryptocoins sind eine virtuelle
+       Internetw&auml;hrung mit der Ihre Sponsoren Werbung bei Ihrem
+       {OPEN_CONFIG}mt_word{CLOSE_CONFIG} bezahlen k&ouml;nnen. &Uuml;blicherweise
+       wird solch eine virtuelle W&auml;hrung (wie z.B. FunCoins, Wernis, Klammlose
+       usw.) auf einem zentralen Server oder auch Serverfarm (Cluster durchaus)
+       gehostet, wo dann meistens eine prohit&auml;hre Software installiert ist und
+       der Anbieter die Herrschaft &uuml;ber die W&auml;hrung und alle Transaktionen
+       hat.
+</div>
+
+<div class="para">
+       Bei den besagten Kryptow&auml;hrungen ist dies genau anders. Hier existiert
+       eine OpenSource-Software, die sich jeder runterladen kann und sie basiert
+       auf dem Peer-To-Peer-Prinzip, wo letztendlich jeder Teilnehmer die
+       Herrschaft &uuml;ber seine Transaktionen und Daten beh&auml;lt, solange er
+       nicht ausdr&uuml;cklich der &Uuml;berweisung zustimmt (z.B. durch Senden von
+       Kryptocoins an eine tempor&auml;re Zieladdresse).
+</div>
+
+<div class="para">
+       F&uuml;r weitere Fragen und Support ausserhalb dieser Erweiterung lesen Sie
+       sich bitte in den jeweiligen Seiten der Kryptow&auml;hrungen ein bzw. fragen
+       den dortigen Support.
+</div>