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