Possible fix for error 'Empty delimiter,errfile=wrapper-functions.php,errline=1050'
[mailer.git] / inc / libs / rewrite_functions.php
index e282612b4bff31b5652fc1cddc8f5fba6796a9c1..ae1854d4d2289ff2afb853884b96c80d37b3b5a7 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 10/24/2004 *
- * ===============                              Last change: 11/14/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 10/24/2004 *
+ * ===================                          Last change: 11/14/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : rewrite_functions.php                            *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Spezielle Funktion fuer rewrite-Erweiterung      *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  ************************************************************************/
 
 // Some security stuff...
-if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
-{
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
+if (!defined('__SECURITY')) {
+       die();
 }
 
-//
-function REWRITE_LINKS($HTML)
-{
-       global $_CONFIG;
-
-       // Skip rewriting for the admin area (which search engine may enter here???)
-       if (ereg($GLOBALS['module'], $_CONFIG['rewrite_skipped_mods'])) return $HTML;
-
-       // Strip slashes with double-backslashes for the preg_replace() function
-       $URL = str_replace("/", "\\/", URL);
+// Rewrite links in HTML for better SEO (ugly part of mx!)
+function rewriteLinksInCode ($code) {
+       // Skip rewriting for configured or empty modules
+       if ((getModule() == '') || (isInStringIgnoreCase(getModule(), getConfig('rewrite_skip')) !== false)) {
+               return $code;
+       } // END - if
 
        // Generate target URL
-       $target = URL."/cms/";
+       $target = getUrl() . '/cms/';
 
        // Convert modules.php?module=...
-       $test = preg_replace("/".$URL."\\/modules.php\\?module=/i", $target, $HTML);
+       foreach (array(getUrl(), '{?URL?}') as $rewrite) {
+               $code = str_replace($rewrite . '/modules.php?module=', $target, $code);
+       } // END - foreach
 
-       if (eregi(SERVER_URL, $test))
-       {
-               // Konvert URLs from my server
-               $URL = str_replace("/", "\\/", SERVER_URL);
-               $test = preg_replace("/".$URL."\\/modules.php\\?module=/i", SERVER_URL."/cms/", $test);
-       }
+       // Do we have an URL linked to mxchange.org?
+       if (isInStringIgnoreCase(getServerUrl(), $code)) {
+               // Convert URLs from my server
+               $code = str_replace('{?URL?}/modules.php?module=', getServerUrl() . '/cms/', $code);
+
+               // Convert URLs from my server
+               $code = str_replace(getUrl() . '/modules.php?module=', getServerUrl() . '/cms/', $code);
+       } // END - if
 
        // Strip slashes as above for the main URL
-       $target2 = str_replace("/", "\\/", $target);
+       $target2 = preg_quote($target, '/');
 
        // Action variable
-       $act = $target."\$1/act/";
+       $action = $target . '$1/act/';
 
        // Convert &amp;|&action=...
-       $test = preg_replace("/".$target2."(.*)&amp;action=/i", $act, $test);
+       $code = preg_replace('/' . $target2 . '(.*)&amp;action=/i', $action, $code);
 
        // "The same procedure as last variable"... now for &amp;what=
-       $wht = $target."\$1/wht/";
-       $target2 = str_replace("/", "\\/", $target);
-       $test = preg_replace("/".$target2."(.*)&amp;what=/i", $wht, $test);
-
-       if ((EXT_IS_ACTIVE("rallye")) && (eregi("rallye=", $test)))
-       {
-               // Replace data when rallye extension is active
-               // Add more if you need more like these entries
-               $REPLACE = array("rallye", "activate", "auto", "notify", "sub");
-               foreach ($REPLACE as $var)
-               {
-                       // This will replace "&amp;var=" to "/var/"
-                       $test = preg_replace("/&amp;".$var."=/i", "/".$var."/", $test);
-               }
-       }
-
-       // Simple from->to replacements
-       $REPLACE = array(
-               'search'  => array("u_id", "url", "page", "offset", "mid", "bid", "sub", "home"),
-               'replace' => array("u"   , "url", "page", "offset", "m"  , "b"  , "s"  , "h")
-       );
-
-       if ((EXT_IS_ACTIVE("admins")) && (eregi("admin=", $test)))
-       {
-               // Replace &amp;admin= with "/aid/"
-               $REPLACE['search'][]  = "admin";
-               $REPLACE['replace'][] = "aid";
-       }
-
-       // Replace all array elements through
-       foreach ($REPLACE['search'] as $k=>$v)
-       {
-               if (eregi("$v=", $test))
-               {
-                       // Replace &amp;u_id= with /u/
-                       $test = preg_replace("/&amp;".$v."=/i", "/".$REPLACE['replace'][$k]."/", $test);
-               }
-       }
+       $what = $target . '$1/wht/';
+       $code = preg_replace('/' . $target2 . '(.*)&amp;what=/i', $what, $code);
 
        // Repair missed &amp;what=??? entries
-       while (preg_match("/&amp;what=(.*)\/(.*)\/(.*)/i", $test))
-       {
-               $test = preg_replace("/&amp;what=(.*)\/(.*)\/(.*)/i", "/wht/\$1/\$2/\$3", $test);
-       }
+       while (preg_match("/&amp;what=(.*)\/(.*)\/(.*)/i", $code)) {
+               $code = preg_replace("/&amp;what=(.*)\/(.*)\/(.*)/i", "/wht/\$1/\$2/\$3", $code);
+       } // END - while
 
        // Return rewritten code
-       return $test;
+       return $code;
 }
-//
+
+// [EOF]
 ?>