Added update_year.sh (still not fully flexible) and updated all years with it.
[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 - 2015 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                 addMemberMenuSql('main', 'reflist', 'Ref-&Uuml;bersicht', 5);
54
55                 // Execute this special file on registration
56                 addIncludeToPool('extension', 'inc/fix_refsystem.php');
57                 break;
58
59         case 'remove': // Do stuff when removing extension
60                 // SQL commands to run
61                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_member_menu` WHERE `what`='refback'");
62                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE `what` IN('config_refback','list_refback')");
63
64                 // Unregister points data
65                 unregisterExtensionPointsData('refback');
66                 break;
67
68         case 'activate': // Do stuff when admin activates this extension
69                 // SQL commands to run
70                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_member_menu` SET `visible`='Y',`locked`='N' WHERE `what` IN('refback','reflist') LIMIT 2");
71                 break;
72
73         case 'deactivate': // Do stuff when admin deactivates this extension
74                 // SQL commands to run
75                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_member_menu` SET `visible`='N',`locked`='Y' WHERE `what` IN('refback','reflist') LIMIT 2");
76                 break;
77
78         case 'update': // Update an extension
79                 switch (getCurrentExtensionVersion()) {
80                         case '0.0.1': // SQL queries for v0.0.1
81                                 addConfigAddSql('refback_enabled', "ENUM('Y','N') NOT NULL DEFAULT 'Y'");
82                                 addConfigAddSql('refback_min_perc', 'TINYINT(3) NOT NULL DEFAULT 0');
83                                 addConfigAddSql('refback_max_perc', 'TINYINT(3) NOT NULL DEFAULT 100');
84                                 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);
85                                 addAdminMenuSql('user', 'list_refback', 'Refback auflisten', 'Refback aller Mitglieder auflisten.', 15);
86
87                                 // Update notes (these will be set as task text!)
88                                 setExtensionUpdateNotes("Refback-System ist nun ein-/ausschaltbar und minimale/maximale Refback-Prozente sind festlegbar.");
89                                 break;
90
91                         case '0.0.2': // SQL queries for v0.0.2
92                                 // Update notes (these will be set as task text!)
93                                 setExtensionUpdateNotes("Ung&uuml;ltiges Update seit Revision 246x.");
94                                 break;
95
96                         case '0.0.3': // SQL queries for v0.0.3
97                                 // Register points data
98                                 registerExtensionPointsData('refback', 'points', 'LOCKED', 'DIRECT');
99
100                                 // Update notes
101                                 setExtensionUpdateNotes("Refback-Gutschriften werden nun &uuml;ber die Tabelle <strong>{OPEN_CONFIG}_MYSQL_PREFIX{CLOSE_CONFIG}_points_data</strong> verwaltet.");
102                                 break;
103
104                         case '0.0.4': // SQL queries for v0.0.4
105                                 // This extension update depends on ext-sql_patches
106                                 addExtensionDependency('user');
107
108                                 // SQL commands to run - drop old first, add new next
109                                 addExtensionDropTableColumnSql('user_refs', 'refback');
110                                 addExtensionDropTableColumnSql('user_refs', 'points');
111                                 addExtensionAddTableColumnSql('user_refs', 'refback_percents', 'FLOAT(4,1) NOT NULL DEFAULT 0.0');
112                                 addExtensionAddTableColumnSql('user_refs', 'refback_points', 'FLOAT(20,5) NOT NULL DEFAULT 0.00000');
113
114                                 // Update notes
115                                 setExtensionUpdateNotes("Refback-Gutschriften werden nun &uuml;ber die Tabelle <strong>{OPEN_CONFIG}_MYSQL_PREFIX{CLOSE_CONFIG}_points_data</strong> verwaltet.");
116                                 break;
117                 } // END - switch
118                 break;
119
120         case 'modify': // When the extension got modified
121                 break;
122
123         case 'test': // For testing purposes
124                 break;
125
126         case 'init': // Do stuff when extension is initialized
127                 break;
128
129         default: // Unknown extension mode
130                 reportBug(__FILE__, __LINE__, sprintf('Unknown extension mode %s in extension %s detected.', getExtensionMode(), getCurrentExtensionName()));
131                 break;
132 } // END - switch
133
134 // [EOF]
135 ?>