The yearly copyright-update commit. 2009, 2010 are now copyrighted on the developer...
[mailer.git] / inc / extensions / ext-primera.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 09/09/2008 *
4  * ===================                          Last change: 09/09/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : ext-primera.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Payout extension                                 *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Auszahlung-Erweiterung                           *
12  * -------------------------------------------------------------------- *
13  * Modified payout extension! See: http://www.mxchange.org for details  *
14  * -------------------------------------------------------------------- *
15  * $Revision::                                                        $ *
16  * $Date::                                                            $ *
17  * $Tag:: 0.2.1-FINAL                                                 $ *
18  * $Author::                                                          $ *
19  * Needs to be in all Files and every File needs "svn propset           *
20  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
21  * -------------------------------------------------------------------- *
22  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
23  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
24  * For more information visit: http://www.mxchange.org                  *
25  *                                                                      *
26  * This program is free software; you can redistribute it and/or modify *
27  * it under the terms of the GNU General Public License as published by *
28  * the Free Software Foundation; either version 2 of the License, or    *
29  * (at your option) any later version.                                  *
30  *                                                                      *
31  * This program is distributed in the hope that it will be useful,      *
32  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
33  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
34  * GNU General Public License for more details.                         *
35  *                                                                      *
36  * You should have received a copy of the GNU General Public License    *
37  * along with this program; if not, write to the Free Software          *
38  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
39  * MA  02110-1301  USA                                                  *
40  ************************************************************************/
41
42 // Some security stuff...
43 if (!defined('__SECURITY')) {
44         die();
45 } // END - if
46
47 // Version of this extension
48 setThisExtensionVersion('0.0');
49
50 // Version history array (add more with , '0.1.0' and so on)
51 setExtensionVersionHistory(array('0.0'));
52
53 // This extension is in development (non-productive)
54 enableExtensionProductive(false);
55
56 switch (getExtensionMode()) {
57         case 'register': // Do stuff when installation is running (modules.php?module=admin is called)
58                 // SQL commands to run
59                 addExtensionSql("DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_user_primera`");
60                 addExtensionSql("CREATE TABLE `{?_MYSQL_PREFIX?}_user_primera` (
61 `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
62 `userid` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
63 `primera_account` VARCHAR(255) NOT NULL DEFAULT '',
64 `primera_amount` FLOAT(20,5) UNSIGNED NOT NULL DEFAULT 0.00000,
65 `primera_timestamp` VARCHAR(10) NOT NULL DEFAULT 0,
66 `primera_type` ENUM('IN','OUT','FAILED') NOT NULL DEFAULT 'FAILED',
67 `primera_api_message` TINYTEXT,
68 `primera_api_status` VARCHAR(255) NULL DEFAULT NULL,
69 KEY (`userid`),
70 PRIMARY KEY (`id`)
71 ) TYPE={?_TABLE_TYPE?} COMMENT='Transfers in Primera'");
72
73                 // Confiuration
74                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `primera_min_payout` BIGINT(20) UNSIGNED NOT NULL DEFAULT 40000");
75                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `primera_min_withdraw` BIGINT(20) UNSIGNED NOT NULL DEFAULT 5000");
76                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `primera_api_name` VARCHAR(255) NOT NULL DEFAULT ''");
77                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `primera_api_md5` VARCHAR(32) NOT NULL DEFAULT ''");
78                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `primera_refid` VARCHAR(255) NOT NULL DEFAULT ''");
79
80                 // User data
81                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_user_data` ADD `primera_nickname` VARCHAR(255) NOT NULL DEFAULT ''");
82
83                 // Admin menu
84                 addAdminMenuSql('primera', NULL, 'Primera-Management','Konfiguration zur Primera-API einstellen, Auszahlungen auflisten usw..', 15);
85                 addAdminMenuSql('primera','config_primera','Primera-API-Einstellungen','Konfiguration zur Primera-API einstellen.', 1);
86                 addAdminMenuSql('primera','list_primera','Primera-Anfragen auflisten','Listet alle Primera-Auszahlungsanfragen Ihrer Mitglieder auf.', 2);
87
88                 // Member menu
89                 addMemberMenuSql('main','primera','Primera-Ein-/Auszahlungen','N','Y',11);
90                 break;
91
92         case 'remove': // Do stuff when removing extension
93                 // SQL commands to run
94                 addExtensionSql("DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_user_primera`");
95                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE `action`='primera'");
96                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_member_menu` WHERE `what`='primera'");
97                 break;
98
99         case 'activate': // Do stuff when admin activates this extension
100                 // SQL commands to run
101                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_member_menu` SET `visible`='Y', `locked`='N' WHERE `what`='primera' LIMIT 1");
102                 break;
103
104         case 'deactivate': // Do stuff when admin deactivates this extension
105                 // SQL commands to run
106                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_member_menu` SET `visible`='N', `locked`='Y' WHERE `what`='primera' LIMIT 1");
107                 break;
108
109         case 'update': // Update an extension
110                 switch (getCurrentExtensionVersion()) {
111                         case '0.0.1': // SQL queries for v0.0.1
112                                 // Update notes (these will be set as task text!)
113                                 setExtensionUpdateNotes('');
114                                 break;
115                 }
116                 break;
117
118         case 'modify': // When the extension got modified
119                 break;
120
121         case 'test': // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
122                 break;
123
124         case 'init': // Do stuff when extension is initialized
125                 break;
126
127         default: // Unknown extension mode
128                 logDebugMessage(__FILE__, __LINE__, sprintf("Unknown extension mode %s detected.", getExtensionMode()));
129                 break;
130 }
131
132 //
133 ?>