2 /************************************************************************
3 * Mailer-Project 0.2.1-FINAL Start: 01/07/2005 *
4 * ========================== Last change: 01/07/2005 *
6 * -------------------------------------------------------------------- *
7 * File : ext-coupon.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Coupon system *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Coupon-System *
12 * -------------------------------------------------------------------- *
14 * -------------------------------------------------------------------- *
17 * $Tag:: 0.2.1-FINAL $ *
19 * -------------------------------------------------------------------- *
20 * Copyright (c) 2003 - 2009 by Roland Haeder *
21 * Copyright (c) 2009 - 2011 by Mailer Developer Team *
22 * For more information visit: http://www.mxchange.org *
24 * This program is free software; you can redistribute it and/or modify *
25 * it under the terms of the GNU General Public License as published by *
26 * the Free Software Foundation; either version 2 of the License, or *
27 * (at your option) any later version. *
29 * This program is distributed in the hope that it will be useful, *
30 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
31 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
32 * GNU General Public License for more details. *
34 * You should have received a copy of the GNU General Public License *
35 * along with this program; if not, write to the Free Software *
36 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
38 ************************************************************************/
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
46 setThisExtensionVersion('0.0');
48 // Version history array (add more with , '0.1' and so on)
49 setExtensionVersionHistory(array('0.0'));
51 // This extension is in development (non-productive)
52 enableExtensionProductive(false);
54 switch (getExtensionMode()) {
55 case 'register': // Do stuff when installtion is running (modules.php?module=admin&action=login is called)
57 addDropTableSql('coupon_data');
58 addCreateTableSql('coupon_data', "(
59 `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
60 `timestamp_created` TIMESTAMP NULL DEFAULT NULL,
61 `timestamp_expired` TIMESTAMP NULL DEFAULT NULL,
62 `coupon_type` ENUM('CODE','API') NOT NULL DEFAULT 'CODE',
63 `total_created` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
64 `total_used` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
65 `points` FLOAT(20,5) NOT NULL DEFAULT 0.00000,
66 `coupon_description` TEXT,
68 ) TYPE = {?_TABLE_TYPE?} CHARACTER SET utf8 COLLATE utf8_general_ci COMMENT = 'Created coupons'");
70 // Coupon->user connection table
71 addDropTableSql('user_coupons');
72 addCreateTableSql('user_coupons', "(
73 `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
74 `coupon_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
75 `userid` BIGINT(2) UNSIGNED NOT NULL DEFAULT 0,
76 `coupon_code` VARCHAR(30) NULL DEFAULT NULL,
77 `cashed_on` TIMESTAMP NULL DEFAULT NULL,
79 UNIQUE KEY `coupon_user` (`coupon_id`,`userid`),
80 UNIQUE KEY (`coupon_code`)
81 ) TYPE = {?_TABLE_TYPE?} CHARACTER SET utf8 COLLATE utf8_general_ci COMMENT = 'Coupon->user connection'");
83 // Configuration entries
84 addConfigAddSql('coupon_default_time', 'BIGINT(20) NOT NULL DEFAULT ' . (getOneDay() * 7));
85 addConfigAddSql('coupon_default_points', 'FLOAT(20,5) NOT NULL DEFAULT 100.00000');
88 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_user_data` ADD `receiving_coupons` ENUM('Y','N') NOT NULL DEFAULT 'Y'");
92 addAdminMenuSql('coupon', NULL, 'Gutscheine', 'Einrichten und Versenden von Code-Gutscheinen, sowie per API (noch in Planung). Bei Code-Gutscheinen wird ein Code pro Mitglied erzeugt, der dann an das Mitglied ausgesandt wird. Löst das Mitglied den Gutschein ein, erhält es die Gutschrift auf sein Konto gutgeschrieben. Ausgangseinstellung ist die Gutschrift auf das Werbeguthaben, was für Paidmailer von Wichtigkeit ist, dass Guthaben aus Gutscheinen nicht auszahlungsfähig ist.', 6);
93 addAdminMenuSql('coupon', 'list_coupon', 'Auflisten', 'Listet alle Gutscheine und Einlösungen durch die Mitglieder auf.', 1);
94 addAdminMenuSql('coupon', 'send_coupon', 'Versenden/Neuen erstellen', 'Versendet neue Gutscheine an die Mitglieder. Wenn Sie auf "Absenden" klicken, warten Sie bitte die Folgeseite ab, da der Versand der Gutscheine derzeit nicht gepoolt ist.', 2);
95 addAdminMenuSql('coupon', 'config_coupon', 'Einstellungen', 'Allgemeine Einstellungen zu Code-Gutscheinen und Gutscheinen von Sponsoren (z.B. per API) können hier vorgenommen werden.', 3);
97 addMemberMenuSql('coupon', NULL, 'Gutscheine', 'N', 'Y', 3);
98 addMemberMenuSql('coupon', 'cash_coupon', 'Gutschein einlösen', 'N', 'Y', 1);
99 addMemberMenuSql('coupon', 'list_coupon', 'Eingelöste auflisten', 'N', 'Y', 2);
102 case 'remove': // Do stuff when removing extension
103 // SQL commands to run
104 addDropTableSql('coupon_data');
105 addDropTableSql('user_coupons');
106 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE `action`='coupon' LIMIT 4");
107 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_member_menu` WHERE `action`='coupon' LIMIT 3");
110 case 'activate': // Do stuff when admin activates this extension
111 // SQL commands to run
115 case 'deactivate': // Do stuff when admin deactivates this extension
116 // SQL commands to run
120 case 'update': // Update an extension
121 switch (getCurrentExtensionVersion()) {
122 case '0.0.1': // SQL queries for v0.0.1
125 // Update notes (these will be set as task text!)
126 setExtensionUpdateNotes('');
131 case 'modify': // When the extension got modified
134 case 'test': // For testing purposes
137 case 'init': // Do stuff when extension is initialized
140 default: // Unknown extension mode
141 logDebugMessage(__FILE__, __LINE__, sprintf("Unknown extension mode %s in extension %s detected.", getExtensionMode(), getCurrentExtensionName()));