Better report this instead of silent logging
[mailer.git] / inc / extensions / ext-booking.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 11/26/2008 *
4  * ===================                          Last change: 11/26/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : ext-booking.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : User bookings                                    *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Kontoauszug der Mitglieder                       *
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 - 2012 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.1');
45
46 // Version history array (add more with , '0.0.1' and so on)
47 setExtensionVersionHistory(array('0.0.0', '0.0.1'));
48
49 // Check extension load-mode
50 switch (getExtensionMode()) {
51         case 'register': // Do stuff when installation is running
52                 // Configuration entries
53                 addConfigAddSql('booking_page_count', 'TINYINT(3) UNSIGNED NOT NULL DEFAULT 10');
54                 addConfigAddSql('booking_purge', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT ' . (getOneDay() * 3));
55
56                 // Drop/create table for user bookings
57                 addDropTableSql('user_booking');
58                 addCreateTableSql('user_booking', "
59 `booking_id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
60 `userid` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
61 `subject` VARCHAR(255) NOT NULL DEFAULT 'missing',
62 `points_mode` ENUM('ADD','SUB') NOT NULL DEFAULT 'ADD',
63 `points_account_type` VARCHAR(255) NOT NULL DEFAULT 'INVALID',
64 `points` FLOAT(20,5) UNSIGNED NOT NULL DEFAULT 0.0000,
65 `comments` TINYTEXT NULL DEFAULT NULL,
66 `recorded` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
67 PRIMARY KEY (`booking_id`),
68 INDEX (`userid`)",
69                         'Member points booking table');
70
71                 // Admin menu
72                 addAdminMenuSql('setup','config_booking','Kontoauszug','Einstellungen am Kontoauszug f&uuml;r Mitglieder vornehmen.', 14);
73                 addAdminMenuSql('user','list_booking','Kontoausz&uuml;ge','Kontoausz&uuml;ge aller Ihrer Mitglieder oder eines einzelnen Mitgliedes anzeigen.',10);
74
75                 // Member menu
76                 addMemberMenuSql('main', 'booking', '{OPEN_CONFIG}POINTS{CLOSE_CONFIG}-Kontoauszug', 5);
77
78                 // Add the filters
79                 registerFilter(__FILE__, __LINE__, 'post_add_points', 'ADD_BOOKING_RECORD', FALSE, TRUE, isExtensionDryRun());
80                 registerFilter(__FILE__, __LINE__, 'post_sub_points', 'ADD_BOOKING_RECORD', FALSE, TRUE, isExtensionDryRun());
81                 registerFilter(__FILE__, __LINE__, 'member_admin_actions', 'ADD_BOOKING_MEMBER_ACTION', FALSE, TRUE, isExtensionDryRun());
82                 break;
83
84         case 'remove': // Do stuff when removing extension
85                 addDropTableSql('user_booking');
86                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE `what` IN ('config_booking','list_booking')");
87                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_member_menu` WHERE `what`='booking'");
88
89                 // Remove the filters
90                 unregisterFilter(__FILE__, __LINE__, 'post_add_points', 'ADD_BOOKING_RECORD', TRUE, isExtensionDryRun());
91                 unregisterFilter(__FILE__, __LINE__, 'post_sub_points', 'ADD_BOOKING_RECORD', TRUE, isExtensionDryRun());
92                 unregisterFilter(__FILE__, __LINE__, 'member_admin_actions', 'ADD_BOOKING_MEMBER_ACTION', TRUE, isExtensionDryRun());
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`='booking' 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`='booking' 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                                 addExtensionChangeTableColumnSql('user_booking', 'id', 'booking_id', 'BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT');
109
110                                 // Update notes (these will be set as task text!)
111                                 setExtensionUpdateNotes("Spalte <strong>id</strong umbenannt nach <strong>booking_id</strong>, da <em>id</em> zu allgemein ist (sollte am besten &uuml;berall folgen).");
112                                 break;
113                 } // END - switch
114
115         case 'modify': // When the extension got modified
116                 break;
117
118         case 'test': // For testing purposes
119                 break;
120
121         case 'init': // Do stuff when extension is initialized
122                 break;
123
124         default: // Unknown extension mode
125                 reportBug(__FILE__, __LINE__, sprintf("Unknown extension mode %s in extension %s detected.", getExtensionMode(), getCurrentExtensionName()));
126                 break;
127 } // END - switch
128
129 // [EOF]
130 ?>