ext-network continued, documentation updated, stelzi's fix integrated:
[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  * 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 } // END - if
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 // This extension is in development (non-productive)
53 enableExtensionProductive(false);
54
55 switch (getExtensionMode()) {
56         case 'register': // Do stuff when installation is running (modules.php?module=admin is called)
57                 // SQL commands to run
58                 addExtensionSql("DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_user_primera`");
59                 addExtensionSql("CREATE TABLE `{?_MYSQL_PREFIX?}_user_primera` (
60 `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
61 `userid` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
62 `primera_account` VARCHAR(255) NOT NULL DEFAULT '',
63 `primera_amount` FLOAT(20,5) UNSIGNED NOT NULL DEFAULT 0.00000,
64 `primera_timestamp` VARCHAR(10) NOT NULL DEFAULT 0,
65 `primera_type` ENUM('IN','OUT','FAILED') NOT NULL DEFAULT 'FAILED',
66 `primera_api_message` TINYTEXT,
67 `primera_api_status` VARCHAR(255) NULL DEFAULT NULL,
68 KEY (`userid`),
69 PRIMARY KEY (`id`)
70 ) TYPE={?_TABLE_TYPE?} COMMENT='Transfers in Primera'");
71
72                 // Confiuration
73                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `primera_min_payout` BIGINT(20) UNSIGNED NOT NULL DEFAULT 40000");
74                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `primera_min_withdraw` BIGINT(20) UNSIGNED NOT NULL DEFAULT 5000");
75                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `primera_api_name` VARCHAR(255) NOT NULL DEFAULT ''");
76                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `primera_api_md5` VARCHAR(32) NOT NULL DEFAULT ''");
77                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `primera_refid` VARCHAR(255) NOT NULL DEFAULT ''");
78
79                 // User data
80                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_user_data` ADD `primera_nickname` VARCHAR(255) NOT NULL DEFAULT ''");
81
82                 // Admin menu
83                 addAdminMenuSql('primera', NULL, 'Primera-Management','Konfiguration zur Primera-API einstellen, Auszahlungen auflisten usw..', 15);
84                 addAdminMenuSql('primera','config_primera','Primera-API-Einstellungen','Konfiguration zur Primera-API einstellen.', 1);
85                 addAdminMenuSql('primera','list_primera','Primera-Anfragen auflisten','Listet alle Primera-Auszahlungsanfragen Ihrer Mitglieder auf.', 2);
86
87                 // Member menu
88                 addMemberMenuSql('main','primera','Primera-Ein-/Auszahlungen','N','Y',11);
89                 break;
90
91         case 'remove': // Do stuff when removing extension
92                 // SQL commands to run
93                 addExtensionSql("DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_user_primera`");
94                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE `action`='primera'");
95                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_member_menu` WHERE `what`='primera'");
96                 break;
97
98         case 'activate': // Do stuff when admin activates this extension
99                 // SQL commands to run
100                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_member_menu` SET `visible`='Y', `locked`='N' WHERE `what`='primera' LIMIT 1");
101                 break;
102
103         case 'deactivate': // Do stuff when admin deactivates this extension
104                 // SQL commands to run
105                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_member_menu` SET `visible`='N', `locked`='Y' WHERE `what`='primera' LIMIT 1");
106                 break;
107
108         case 'update': // Update an extension
109                 switch (getCurrentExtensionVersion()) {
110                         case '0.0.1': // SQL queries for v0.0.1
111                                 // Update notes (these will be set as task text!)
112                                 setExtensionUpdateNotes('');
113                                 break;
114                 }
115                 break;
116
117         case 'modify': // When the extension got modified
118                 break;
119
120         case 'test': // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
121                 break;
122
123         case 'init': // Do stuff when extension is initialized
124                 break;
125
126         default: // Unknown extension mode
127                 logDebugMessage(__FILE__, __LINE__, sprintf("Unknown extension mode %s detected.", getExtensionMode()));
128                 break;
129 }
130
131 //
132 ?>