96a7d9d473c887e5885e586a289db208f3f765b7
[mailer.git] / inc / extensions / ext-network.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 12/18/2008 *
4  * ===================                          Last change: 03/05/2010 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : ext-network.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Generic (sponsor) network connection extension   *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Allgemeine Werbenetzwerk-Erweiterung             *
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.0');
45
46 // Version history array (add more with , '0.0.1' and so on)
47 setExtensionVersionHistory(array('0.0.0'));
48
49 // This extension is in development (non-productive)
50 enableExtensionProductive(FALSE);
51
52 switch (getExtensionMode()) {
53         case 'setup': // Do stuff when installation is running
54                 // This is now moved out to inc/extensions/network/mode-setup.php
55                 break;
56
57         case 'remove': // Do stuff when removing extension
58                 // SQL commands to run
59                 addDropTableSql('network_data');
60                 addDropTableSql('network_types');
61                 addDropTableSql('network_request_params');
62                 addDropTableSql('network_vcheck_params');
63                 addDropTableSql('network_vcheck_errors');
64                 addDropTableSql('network_translations');
65                 addDropTableSql('network_array_translation');
66                 addDropTableSql('network_error_codes');
67                 addDropTableSql('network_api_config');
68                 addDropTableSql('network_handler_config');
69                 addDropTableSql('network_vcheck_config');
70                 addDropTableSql('network_cache');
71                 addDropTableSql('network_reloads');
72                 addDropTableSql('network_header_logging');
73
74                 // Admin menu
75                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE `action`='network'");
76                 break;
77
78         case 'activate': // Do stuff when admin activates this extension
79                 // SQL commands to run
80                 break;
81
82         case 'deactivate': // Do stuff when admin deactivates this extension
83                 // SQL commands to run
84                 break;
85
86         case 'update': // Update an extension
87                 switch (getCurrentExtensionVersion()) {
88                         case '0.0.1': // SQL queries for v0.0.1
89                                 addExtensionSql('');
90
91                                 // Update notes (these will be set as task text!)
92                                 setExtensionUpdateNotes('');
93                                 break;
94                 } // END - switch
95                 break;
96
97         case 'modify': // When the extension got modified
98                 break;
99
100         case 'test': // For testing purposes
101                 break;
102
103         case 'init': // Do stuff when extension is initialized
104                 break;
105
106         default: // Unknown extension mode
107                 reportBug(__FILE__, __LINE__, sprintf("Unknown extension mode %s in extension %s detected.", getExtensionMode(), getCurrentExtensionName()));
108                 break;
109 } // END - switch
110
111 // [EOF]
112 ?>