]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/newsletter_functions.php
Mailer continued, sub-id tracking continued:
[mailer.git] / inc / libs / newsletter_functions.php
index ec20b363ad6762cc80dc1261ebf28727641cff54..525cb28540ad0c3233c0749308097762d7a87507 100644 (file)
@@ -1,10 +1,10 @@
 <?php
 /************************************************************************
  * Mailer v0.2.1-FINAL                                Start: 04/25/2004 *
- * ================                             Last change: 04/29/2004 *
+ * ===================                          Last change: 04/29/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
- * File              : newsletter_functions.php                          *
+ * File              : newsletter_functions.php                         *
  * -------------------------------------------------------------------- *
  * Short description : Functions for the HTML extension                 *
  * -------------------------------------------------------------------- *
  * $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 - 2009 by Roland Haeder                           *
- * 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 *
@@ -46,16 +45,18 @@ function insertNewsletterUrls ($text) {
        $test = $text;
 
        // First replace URLs...
-       while (ereg('http://', $test)) {
+       while (isInString('http://', $test)) {
                $check = substr($test, strpos($test, 'http://')); $check2 = $check;
 
                // See ext-html.php if you want to add more URL ends...
                foreach ($GLOBALS['url_ends'] as $end) {
-                       if (ereg($end, $check)) $check = substr($check, 0, strpos($check, $end));
+                       if (isInString($end, $check)) {
+                               $check = substr($check, 0, strpos($check, $end));
+                       } // END - if
                } // END - foreach
 
                // Now replace the URL against anchor container and pray...
-               $text = substr($text, 0, strpos($text, $check2)) . generateDerefererUrl($check) . substr($text, strpos($text, $check2) + strlen($check));
+               $text = substr($text, 0, strpos($text, $check2)) . generateDereferrerUrl($check) . substr($text, strpos($text, $check2) + strlen($check));
 
                // Finally remove the url from testing string (or we have a loop and maybe server overload!)
                $test = substr($test, strpos($test, $check) + strlen($check));
@@ -69,7 +70,7 @@ function insertNewsletterUrls ($text) {
 
        // ... what will the email address be out the @... ;-)
        $PARTS = array();
-       while (ereg('@', $test)) {
+       while (isInString('@', $test)) {
                $pos = strpos($test, '@');
                $test2 = substr($test, 0, $pos);
 
@@ -92,7 +93,7 @@ function insertNewsletterUrls ($text) {
                }
 
                // And now go forward...
-               $idx = '0';
+               $idx = 0;
                while ($idx < strlen($test)) {
                        $check = substr($test, $idx, 1);
                        if ((!in_array($check, $GLOBALS['valid_email_chars'])) && ($check != '@')) {
@@ -108,20 +109,21 @@ function insertNewsletterUrls ($text) {
                }
 
                // Now replace the email against anchor with mailto and pray...
-               $PARTS[] = $check2 . $check;
+               array_push($PARTS, $check2 . $check);
 
                // Remove email from testing string (see above why...)
                $test = substr($test, strlen($check));
        }
 
        // Now put all parts together
-       $text = ''; $PARTS[] = $test;
+       $text = '';
+       array_push($PARTS, $test);
        foreach ($PARTS as $part) {
                $text .= $part;
        }
 
-       // Compile possible own HTML tags out...
-       return compileCode($text);
+       // Pre-ompile possible own HTML tags out...
+       return preCompileCode($text);
 }
 
 // Wrapper for sending newsletter and wrapping URLs / HTML mail