Moved to contrib/ in preperation for merge
[mailer.git] / ideas / ext-refund.php
diff --git a/ideas/ext-refund.php b/ideas/ext-refund.php
deleted file mode 100644 (file)
index f6b8397..0000000
+++ /dev/null
@@ -1,101 +0,0 @@
-<?php
-/************************************************************************
- * Mailer-Project 0.2.1-FINAL                         Start: 12/26/2005 *
- * ==========================                   Last change: 12/26/2005 *
- *                                                                      *
- * -------------------------------------------------------------------- *
- * File              : ext-refund.php                                   *
- * -------------------------------------------------------------------- *
- * Short description : Payback-points system                            *
- * -------------------------------------------------------------------- *
- * Kurzbeschreibung  : Treuepunkte-System                               *
- * -------------------------------------------------------------------- *
- *                                                                      *
- * -------------------------------------------------------------------- *
- * $Revision::                                                        $ *
- * $Date::                                                            $ *
- * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author::                                                          $ *
- * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
- * 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')) {
-       exit();
-} // END - if
-
-// Version number
-setThisExtensionVersion('0.0.0');
-
-// Version history array (add more with , '0.1' and so on)
-setExtensionVersionHistory(array('0.0.0'));
-
-// This extension is in development (non-productive)
-enableExtensionProductive(false);
-
-switch (getExtensionMode()) {
-       case 'register': // Do stuff when installtion is running
-               // SQL commands to run
-               addExtensionSql('');
-               break;
-
-       case 'remove': // Do stuff when removing extension
-               // SQL commands to run
-               addExtensionSql('');
-               break;
-
-       case 'activate': // Do stuff when admin activates this extension
-               // SQL commands to run
-               addExtensionSql('');
-               break;
-
-       case 'deactivate': // Do stuff when admin deactivates this extension
-               // SQL commands to run
-               addExtensionSql('');
-               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
-               logDebugMessage(__FILE__, __LINE__, sprintf("Unknown extension mode %s in extension %s detected.", getExtensionMode(), getCurrentExtensionName()));
-               break;
-} // END - switch
-
-// [EOF]
-?>