]> git.mxchange.org Git - mailer.git/blob - inc/modules/guest/what-extensions.php
also prevent it in .htacces. You may want to add this to one of your files in /etc...
[mailer.git] / inc / modules / guest / what-extensions.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 01/09/2005 *
4  * ===================                          Last change: 01/09/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-extensions.php                              *
8  * -------------------------------------------------------------------- *
9  * Short description : Lists all extension's description texts          *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Listet alle Beschreibungstexte aller Erw. auf    *
12  * -------------------------------------------------------------------- *
13  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
14  * Copyright (c) 2009 - 2016 by Mailer Developer Team                   *
15  * For more information visit: http://mxchange.org                      *
16  *                                                                      *
17  * This program is free software; you can redistribute it and/or modify *
18  * it under the terms of the GNU General Public License as published by *
19  * the Free Software Foundation; either version 2 of the License, or    *
20  * (at your option) any later version.                                  *
21  *                                                                      *
22  * This program is distributed in the hope that it will be useful,      *
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
25  * GNU General Public License for more details.                         *
26  *                                                                      *
27  * You should have received a copy of the GNU General Public License    *
28  * along with this program; if not, write to the Free Software          *
29  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
30  * MA  02110-1301  USA                                                  *
31  ************************************************************************/
32
33 // Some security stuff...
34 if (!defined('__SECURITY')) {
35         exit();
36 } // END - if
37
38 // Add description as navigation point
39 addYouAreHereLink('guest', __FILE__);
40
41 // Get all extension files
42 $extensions = loadAllExtensionsByTemplate();
43
44 // Now iterate through all and load that template file
45 $OUT = '';
46 foreach ($extensions as $ext_file) {
47         // We only need the filename
48         $template = substr(basename($ext_file), 0, -4);
49
50         // Prepare data
51         $content = array(
52                 'name'        => substr($template, 4),
53                 'description' => loadTemplate($template, TRUE),
54         );
55
56         // Load the template in a special row template
57         $OUT .= loadTemplate('guest_extensions_row', TRUE, $content);
58 } // END - foreach
59
60 // Load main template
61 loadTemplate('guest_extensions', FALSE, $OUT);
62
63 // [EOF]
64 ?>