Rewrite of adding menu entries, should prevent double menus now and forever...
[mailer.git] / inc / extensions / ext-primera.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    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  * For more information visit: http://www.mxchange.org                  *
24  *                                                                      *
25  * This program is free software; you can redistribute it and/or modify *
26  * it under the terms of the GNU General Public License as published by *
27  * the Free Software Foundation; either version 2 of the License, or    *
28  * (at your option) any later version.                                  *
29  *                                                                      *
30  * This program is distributed in the hope that it will be useful,      *
31  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
32  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
33  * GNU General Public License for more details.                         *
34  *                                                                      *
35  * You should have received a copy of the GNU General Public License    *
36  * along with this program; if not, write to the Free Software          *
37  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
38  * MA  02110-1301  USA                                                  *
39  ************************************************************************/
40
41 // Some security stuff...
42 if (!defined('__SECURITY')) {
43         die();
44 }
45
46 // Version of this extension
47 setThisExtensionVersion('0.0');
48
49 // Version history array (add more with , '0.1.0' and so on)
50 setExtensionVersionHistory(array('0.0'));
51
52 switch (getExtensionMode()) {
53         case 'register': // Do stuff when installation is running (modules.php?module=admin is called)
54                 // SQL commands to run
55                 addExtensionSql("DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_user_primera`");
56                 addExtensionSql("CREATE TABLE `{?_MYSQL_PREFIX?}_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('IN','OUT','FAILED') NOT NULL DEFAULT 'FAILED',
63 primera_api_message TINYTEXT,
64 primera_api_status VARCHAR(255) NULL DEFAULT NULL,
65 KEY (userid),
66 PRIMARY KEY (id)
67 ) TYPE={?_TABLE_TYPE?}");
68
69                 // Confiuration
70                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD primera_min_payout BIGINT(20) UNSIGNED NOT NULL DEFAULT 40000");
71                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD primera_min_withdraw BIGINT(20) UNSIGNED NOT NULL DEFAULT 5000");
72                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD primera_api_name VARCHAR(255) NOT NULL DEFAULT ''");
73                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD primera_api_md5 VARCHAR(32) NOT NULL DEFAULT ''");
74                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD primera_refid VARCHAR(255) NOT NULL DEFAULT ''");
75
76                 // User data
77                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_user_data` ADD primera_userid 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','N','Y',11);
86                 break;
87
88         case 'remove': // Do stuff when removing extension
89                 // SQL commands to run
90                 addExtensionSql("DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_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                 }
112                 break;
113
114         case 'modify': // When the extension got modified
115                 break;
116
117         case 'test': // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
118                 break;
119
120         case 'init': // Do stuff when extension is initialized
121                 break;
122
123         default: // Unknown extension mode
124                 DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown extension mode %s detected.", getExtensionMode()));
125                 break;
126 }
127
128 //
129 ?>