]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/active_functions.php
Added update_year.sh (still not fully flexible) and updated all years with it.
[mailer.git] / inc / libs / active_functions.php
index b3c079aac547672ef5f4006f00b9be4f887c94b1..55dfc3e9fc5f2b71866beb30454065510df26c14 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 06/30/2003 *
- * ===============                              Last change: 11/27/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 06/30/2003 *
+ * ===================                          Last change: 11/27/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : active_functions.php                             *
  * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
  * $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                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2015 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')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
-       require($INC);
-}
-
-// 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'))) {
-               // 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'
-               );
+       die();
+} // END - if
 
-               // Add link to "we were active today" page
-               LOAD_TEMPLATE("guest_menu_bottom", false, $content);
+// Wrapper function for 'active_limit'
+function getActiveLimit () {
+       // Is there cache?
+       if (!isset($GLOBALS[__FUNCTION__])) {
+               // Get config entry
+               $GLOBALS[__FUNCTION__] = getConfig('active_limit');
        } // END - if
+
+       // Return cache
+       return $GLOBALS[__FUNCTION__];
 }
 
-//
+// [EOF]
 ?>