1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-22 14:13:03 +02:00

Move email obfuscation function somewhere sensible

This commit is contained in:
e107steved
2008-10-30 22:42:41 +00:00
parent f59d93c10d
commit 568740cdc4
2 changed files with 22 additions and 12 deletions

View File

@@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_handlers/e_parse_class.php,v $
| $Revision: 1.38 $
| $Date: 2008-09-04 19:50:10 $
| $Revision: 1.39 $
| $Date: 2008-10-30 22:42:36 $
| $Author: e107steved $
+----------------------------------------------------------------------------+
*/
@@ -1086,6 +1086,23 @@ class e_parse
return $text;
}
// Given an email address, returns a link including js-based obfuscation
function emailObfuscate($email, $words='', $subject='')
{
if (strpos($email,'@') === FALSE)
{
return '';
}
if ($subject)
{
$subject = '?subject='.$subject;
}
list($name,$address) = explode('@',$email,2);
$reassembled = '"'.$name.'"+"@"+"'.$address.'"';
return "<a rel='external' href='javascript:window.location=\"mai\"+\"lto:\"+".$reassembled.$subject.";self.close();' onmouseover='window.status=\"mai\"+\"lto:\"+".$reassembled."; return true;' onmouseout='window.status=\"\";return true;'>".$words.'</a>';
}
}
?>