Removed comment introduced by Profi-Concept, this comment should fine (in a much...
[mailer.git] / inc / extensions / ext-imprint.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 06/06/2009 *
4  * ===================                          Last change: 10/23/2009 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : ext-imprint.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Extension for the imprint                        *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Erweiterung fuer das Impressum                   *
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, 2010 by Mailer Developer Team                    *
20  * For more information visit: http://www.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');
45
46 // Version history array (add more with , '0.1.0' and so on)
47 setExtensionVersionHistory(array('0.0'));
48
49 switch (getExtensionMode()) {
50         case 'register': // Do stuff when installation is running (modules.php?module=admin is called)
51                 // SQL commands to run
52                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_guest_menu` WHERE `what`='impressum' LIMIT 1");
53
54                 // Extend guest menu
55                 addGuestMenuSql('main','imprint','Impressum','N','N',4);
56
57                 // Extend admin menu
58                 addAdminMenuSql('setup','config_imprint','Impressum','Einstellungen zum Impressum.',8);
59
60                 // Extend config with with entries
61                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `imprint_image_url` VARCHAR(255) NOT NULL DEFAULT ''");
62                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `imprint_image_script` VARCHAR(255) NOT NULL DEFAULT ''");
63
64                 // Create imprint data table
65                 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_imprint_data`');
66                 addExtensionSql("CREATE TABLE `{?_MYSQL_PREFIX?}_imprint_data` (
67 `imprint_id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
68 `imprint_key` VARCHAR(255) NOT NULL DEFAULT '',
69 `imprint_value` VARCHAR(255) NOT NULL DEFAULT '',
70 UNIQUE (`imprint_key`),
71 PRIMARY KEY (`imprint_id`)
72 ) TYPE={?_TABLE_TYPE?} COMMENT='Imprint data'");
73
74                 // Init imprint data
75                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_imprint_data` (`imprint_key`) VALUES ('company'),('surname'),('family'),('street_nr1'),('street_nr2'),('zip'),('city'),('state'),('country'),('phone'),('fax'),('email'),('footer')");
76                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_imprint_data` SET `imprint_value`='{?WEBMASTER?}' WHERE `imprint_key`='email' LIMIT 1");
77                 break;
78
79         case 'remove': // Do stuff when removing extension
80                 // Imprint data
81                 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_imprint_data`');
82
83                 // Guest menu
84                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_guest_menu` WHERE `what`='imprint' LIMIT 1");
85
86                 // Admin menu
87                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE `what`='config_imprint' LIMIT 1");
88                 break;
89
90         case 'activate': // Do stuff when admin activates this extension
91                 // SQL commands to run
92                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_guest_menu` SET `locked`='N', `visible`='Y' WHERE `what`='imprint' LIMIT 1");
93                 break;
94
95         case 'deactivate': // Do stuff when admin deactivates this extension
96                 // SQL commands to run
97                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_guest_menu` SET `locked`='Y', `visible`='N' WHERE `what`='imprint' LIMIT 1");
98                 break;
99
100         case 'update': // Update an extension
101                 switch (getCurrentExtensionVersion()) {
102                         case '0.0.1': // SQL queries for v0.0.1
103                                 addExtensionSql('');
104
105                                 // Update notes (these will be set as task text!)
106                                 setExtensionUpdateNotes('');
107                                 break;
108                 } // END - switch
109                 break;
110
111         case 'modify': // When the extension got modified
112                 break;
113
114         case 'test': // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
115                 break;
116
117         case 'init': // Do stuff when extension is initialized
118                 break;
119
120         default: // Unknown extension mode
121                 logDebugMessage(__FILE__, __LINE__, sprintf("Unknown extension mode %s in extension %s detected.", getExtensionMode(), getCurrentExtensionName()));
122                 break;
123 } // END - switch
124
125 // [EOF]
126 ?>