]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/guest/what-extensions.php
mailer project continued:
[mailer.git] / inc / modules / guest / what-extensions.php
index e4b580499b61aac548e2c00eb08bfea2e1a0f063..663ef9ead239c06e76f5961a6511f139c9b483b3 100644 (file)
@@ -4,22 +4,20 @@
  * ===================                          Last change: 01/09/2005 *
  *                                                                      *
  * -------------------------------------------------------------------- *
- * File              : what-beg.php                                     *
+ * File              : what-extensions.php                              *
  * -------------------------------------------------------------------- *
- * Short description : Beg points with us!                              *
+ * Short description : Lists all extension's description texts          *
  * -------------------------------------------------------------------- *
- * Kurzbeschreibung  : Mit uns Punkte erbetteln!                        *
+ * Kurzbeschreibung  : Listet alle Beschreibungstexte aller Erw. auf    *
  * -------------------------------------------------------------------- *
- * $Revision:: 1794                                                   $ *
- * $Date:: 2010-05-28 19:55:19 +0200 (Fri, 28 May 2010)               $ *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author:: quix0r                                                   $ *
- * Needs to be in all Files and every File needs "svn propset           *
- * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
+ * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       die();
+       exit();
 } // END - if
 
 // Add description as navigation point
-addMenuDescription('guest', __FILE__);
+addYouAreHereLink('guest', __FILE__);
 
 // Get all extension files
-$extensions = getArrayFromDirectory('templates/' . getLanguage() . '/html/ext/', 'ext_', false, false, array(), '.tpl', '@(\.|\.\.)$@', false);
+$extensions = getArrayFromDirectory(
+       'templates/' . getLanguage() . '/html/ext/',
+       'ext_',
+       false,
+       false,
+       array(),
+       '.tpl',
+       '@(\.|\.\.)$@',
+       false
+);
 
 // Now iterate through all and load that template file
-$OUT = ''; $SW = 2;
+$OUT = '';
 foreach ($extensions as $ext_file) {
-       // We only need the filename!
+       // We only need the filename
        $template = substr(basename($ext_file), 0, -4);
 
        // Prepare data
        $content = array(
                'name'        => substr($template, 4),
                'description' => loadTemplate($template, true),
-               'sw'          => $SW
        );
 
        // Load the template in a special row template
        $OUT .= loadTemplate('guest_extensions_row', true, $content);
-
-       // Switch color
-       $SW = 3 - $SW;
 } // END - foreach
 
 // Load main template