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