1931ea9e2e674ca187ac79d0ba0dd8cc6b6df9e4
[mailer.git] / inc / extensions / ext-imprint.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    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  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         die();
42 } // END - if
43
44 // Version number
45 setThisExtensionVersion('0.0');
46
47 // Version history array (add more with , '0.1.0' and so on)
48 setExtensionVersionHistory(array('0.0'));
49
50 switch (getExtensionMode()) {
51         case 'register': // Do stuff when installation is running (modules.php?module=admin is called)
52                 // SQL commands to run
53                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_guest_menu` WHERE `what`='impressum' LIMIT 1");
54
55                 // Extend guest menu
56                 addGuestMenuSql('main','imprint','Impressum','N','N',4);
57
58                 // Extend admin menu
59                 addAdminMenuSql('setup','config_imprint','Impressum','Einstellungen zum Impressum.',8);
60
61                 // Extend config with with entries
62                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `imprint_image_url` VARCHAR(255) NOT NULL DEFAULT ''");
63                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `imprint_image_script` VARCHAR(255) NOT NULL DEFAULT ''");
64
65                 // Create imprint data table
66                 addExtensionSql("DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_imprint_data`");
67                 addExtensionSql("CREATE TABLE `{?_MYSQL_PREFIX?}_imprint_data` (
68 `imprint_id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
69 `imprint_key` VARCHAR(255) NOT NULL DEFAULT '',
70 `imprint_value` VARCHAR(255) NOT NULL DEFAULT '',
71 UNIQUE (`imprint_key`),
72 PRIMARY KEY (`imprint_id`)
73 ) TYPE={?_TABLE_TYPE?} COMMENT='Imprint data'");
74
75                 // Init imprint data
76                 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')");
77                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_imprint_data` SET `imprint_value`='{?WEBMASTER?}' WHERE `imprint_key`='email' LIMIT 1");
78                 break;
79
80         case 'remove': // Do stuff when removing extension
81                 // Guest menu
82                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_guest_menu` WHERE `what`='imprint' LIMIT 1");
83
84                 // Admin menu
85                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE `what`='config_imprint' LIMIT 1");
86
87                 // Imprint data
88                 addExtensionSql("DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_imprint_data`");
89                 break;
90
91         case 'activate': // Do stuff when admin activates this extension
92                 // SQL commands to run
93                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_guest_menu` SET `locked`='N', `visible`='Y' WHERE `what`='imprint' LIMIT 1");
94                 break;
95
96         case 'deactivate': // Do stuff when admin deactivates this extension
97                 // SQL commands to run
98                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_guest_menu` SET `locked`='Y', `visible`='N' WHERE `what`='imprint' LIMIT 1");
99                 break;
100
101         case 'update': // Update an extension
102                 switch (getCurrentExtensionVersion()) {
103                         case '0.0.1': // SQL queries for v0.0.1
104                                 addExtensionSql('');
105
106                                 // Update notes (these will be set as task text!)
107                                 setExtensionUpdateNotes('');
108                                 break;
109                 } // END - switch
110                 break;
111
112         case 'modify': // When the extension got modified
113                 break;
114
115         case 'test': // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
116                 break;
117
118         case 'init': // Do stuff when extension is initialized
119                 break;
120
121         default: // Unknown extension mode
122                 DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown extension mode %s detected.", getExtensionMode()));
123                 break;
124 } // END - switch
125
126 // [EOF]
127 ?>