]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/active_functions.php
Huge script change, see http://forum.mxchange.org/topic-458.html for details:
[mailer.git] / inc / libs / active_functions.php
index b7c1c49f378d58bb97e217b0a80ef9d5ac7dc93f..b3b3726e5aef9b5e38aa33fc5f46727f594f2a85 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Funktionen fuer die active-Erweiterung           *
  * -------------------------------------------------------------------- *
- * $Revision:: 856                                                    $ *
- * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009)              $ *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author:: stelzi                                                   $ *
+ * $Author::                                                          $ *
  * Needs to be in all Files and every File needs "svn propset           *
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-}
+       die();
+} // END - if
 
 // Filter for adding link to "active list"
 function FILTER_ADD_LINK_ACTIVE_LIST () {
        // Are the extensions online and active there?
-       if ((EXT_IS_ACTIVE("active")) && (EXT_IS_ACTIVE("online"))) {
+       if (isExtensionActive('online')) {
                // Init content
                $content = array(
-                       'menu' => "<a class=\"menu_blur\" href=\"{!URL!}/modules.php?module=index&amp;what=active\">".getConfig('menu_blur_spacer').GUEST_ACTIVE_LINK."</a>",
-                       'what' => "active"
+                       'menu' => "<a class=\"menu_blur\" href=\"{?URL?}/modules.php?module=index&amp;what=active\">".getConfig('menu_blur_spacer').getMessage('GUEST_ACTIVE_LINK')."</a>",
+                       'what' => 'active'
                );
 
                // Add link to "we were active today" page
-               LOAD_TEMPLATE("guest_menu_bottom", false, $content);
+               $GLOBALS['rows'] .= loadTemplate('guest_menu_bottom', true, $content);
        } // END - if
 }
 
-//
+// [EOF]
 ?>