c2694522ab1941ad877919558369062860fc7e0e
[mailer.git] / inc / extensions / ext-refback.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 09/29/2008 *
4  * ===================                          Last change: 09/29/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : ext-refback.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Refback system                                   *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Refback-System                                   *
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 - 2013 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 number
44 setThisExtensionVersion('0.0.4');
45
46 // Version history array (add more with , '0.0.1' and so on)
47 setExtensionVersionHistory(array('0.0.0','0.0.1', '0.0.2', '0.0.3', '0.0.4'));
48
49 switch (getExtensionMode()) {
50         case 'setup': // Do stuff when installation is running
51                 // Member menu
52                 addMemberMenuSql('main', 'refback', 'Refback einstellen', 4);
53
54                 // Execute this special file on registration
55                 addIncludeToPool('extension', 'inc/fix_refsystem.php');
56                 break;
57
58         case 'remove': // Do stuff when removing extension
59                 // SQL commands to run
60                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_member_menu` WHERE `what`='refback'");
61                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE `what` IN('config_refback','list_refback')");
62
63                 // Unregister points data
64                 unregisterExtensionPointsData('refback');
65                 break;
66
67         case 'activate': // Do stuff when admin activates this extension
68                 // SQL commands to run
69                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_member_menu` SET `visible`='Y',`locked`='N' WHERE `what` IN('refback','reflist') LIMIT 2");
70                 break;
71
72         case 'deactivate': // Do stuff when admin deactivates this extension
73                 // SQL commands to run
74                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_member_menu` SET `visible`='N',`locked`='Y' WHERE `what` IN('refback','reflist') LIMIT 2");
75                 break;
76
77         case 'update': // Update an extension
78                 switch (getCurrentExtensionVersion()) {
79                         case '0.0.1': // SQL queries for v0.0.1
80                                 addConfigAddSql('refback_enabled', "ENUM('Y','N') NOT NULL DEFAULT 'Y'");
81                                 addConfigAddSql('refback_min_perc', 'TINYINT(3) NOT NULL DEFAULT 0');
82                                 addConfigAddSql('refback_max_perc', 'TINYINT(3) NOT NULL DEFAULT 100');
83                                 addAdminMenuSql('setup', 'config_refback', 'Refback', '&Auml;ndern Sie Einstellungen zum Refback, wie z.B. Minimum- und Maximum-Prozente, was die Mitglieder einstellen d&uuml;rfen.', 15);
84                                 addAdminMenuSql('user', 'list_refback', 'Refback auflisten', 'Refback aller Mitglieder auflisten.', 15);
85
86                                 // Update notes (these will be set as task text!)
87                                 setExtensionUpdateNotes("Refback-System ist nun ein-/ausschaltbar und minimale/maximale Refback-Prozente sind festlegbar.");
88                                 break;
89
90                         case '0.0.2': // SQL queries for v0.0.2
91                                 // Update notes (these will be set as task text!)
92                                 setExtensionUpdateNotes("Ung&uuml;ltiges Update seit Revision 246x.");
93                                 break;
94
95                         case '0.0.3': // SQL queries for v0.0.3
96                                 // Register points data
97                                 registerExtensionPointsData('refback', 'points', 'LOCKED', 'DIRECT');
98
99                                 // Update notes
100                                 setExtensionUpdateNotes("Refback-Gutschriften werden nun &uuml;ber die Tabelle <strong>{OPEN_CONFIG}_MYSQL_PREFIX{CLOSE_CONFIG}_points_data</strong> verwaltet.");
101                                 break;
102
103                         case '0.0.4': // SQL queries for v0.0.4
104                                 // This extension update depends on ext-sql_patches
105                                 addExtensionDependency('user');
106
107                                 // SQL commands to run - drop old first, add new next
108                                 addExtensionDropTableColumnSql('user_refs', 'refback');
109                                 addExtensionDropTableColumnSql('user_refs', 'points');
110                                 addExtensionAddTableColumnSql('user_refs', 'refback_percents', 'FLOAT(4,1) NOT NULL DEFAULT 0.0');
111                                 addExtensionAddTableColumnSql('user_refs', 'refback_points', 'FLOAT(20,5) NOT NULL DEFAULT 0.00000');
112
113                                 // Update notes
114                                 setExtensionUpdateNotes("Refback-Gutschriften werden nun &uuml;ber die Tabelle <strong>{OPEN_CONFIG}_MYSQL_PREFIX{CLOSE_CONFIG}_points_data</strong> verwaltet.");
115                                 break;
116                 } // END - switch
117                 break;
118
119         case 'modify': // When the extension got modified
120                 break;
121
122         case 'test': // For testing purposes
123                 break;
124
125         case 'init': // Do stuff when extension is initialized
126                 break;
127
128         default: // Unknown extension mode
129                 reportBug(__FILE__, __LINE__, sprintf("Unknown extension mode %s in extension %s detected.", getExtensionMode(), getCurrentExtensionName()));
130                 break;
131 } // END - switch
132
133 // [EOF]
134 ?>