phpDocumentor Smarty
plugins
[ class tree: Smarty ] [ index: Smarty ] [ all elements ]

Source for file function.mailto.php

Documentation is available at function.mailto.php

  1. <?php
  2. /**
  3.  * Smarty plugin
  4.  * @package Smarty
  5.  * @subpackage plugins
  6.  */
  7.  
  8.  
  9. /**
  10.  * Smarty {mailto} function plugin
  11.  *
  12.  * Type:     function<br>
  13.  * Name:     mailto<br>
  14.  * Date:     May 21, 2002
  15.  * Purpose:  automate mailto address link creation, and optionally
  16.  *           encode them.<br>
  17.  * Input:<br>
  18.  *         - address = e-mail address
  19.  *         - text = (optional) text to display, default is address
  20.  *         - encode = (optional) can be one of:
  21.  *                * none : no encoding (default)
  22.  *                * javascript : encode with javascript
  23.  *                * hex : encode with hexidecimal (no javascript)
  24.  *         - cc = (optional) address(es) to carbon copy
  25.  *         - bcc = (optional) address(es) to blind carbon copy
  26.  *         - subject = (optional) e-mail subject
  27.  *         - newsgroups = (optional) newsgroup(s) to post to
  28.  *         - followupto = (optional) address(es) to follow up to
  29.  *         - extra = (optional) extra tags for the href link
  30.  * 
  31.  * Examples:
  32.  * <pre>
  33.  * {mailto address="[email protected]"}
  34.  * {mailto address="[email protected]" encode="javascript"}
  35.  * {mailto address="[email protected]" encode="hex"}
  36.  * {mailto address="[email protected]" subject="Hello to you!"}
  37.  * {mailto address="[email protected]" extra='class="mailto"'}
  38.  * </pre>
  39.  * @link http://smarty.php.net/manual/en/language.function.mailto.php {mailto}
  40.  *           (Smarty online manual)
  41.  * @version  1.2
  42.  * @author     Monte Ohrt <[email protected]>
  43.  * @author credits to Jason Sweat (added cc, bcc and subject functionality)
  44.  * @param array 
  45.  * @param Smarty 
  46.  * @return string 
  47.  */
  48. function smarty_function_mailto($params&$smarty)
  49. {
  50.     $extra '';
  51.     extract($params);
  52.  
  53.     if (empty($address)) {
  54.         $smarty->trigger_error("mailto: missing 'address' parameter");
  55.         return;
  56.     }
  57.     
  58.     if (empty($text)) {
  59.         $text $address;
  60.     }
  61.     
  62.     // netscape and mozilla do not decode %40 (@) in BCC field (bug?)
  63.     // so, don't encode it.
  64.     
  65.     $mail_parms array();
  66.     if (!empty($cc)) {
  67.         $mail_parms['cc='.str_replace('%40','@',rawurlencode($cc));
  68.     }
  69.     
  70.     if (!empty($bcc)) {
  71.         $mail_parms['bcc='.str_replace('%40','@',rawurlencode($bcc));
  72.     }
  73.     
  74.     if (!empty($subject)) {
  75.         $mail_parms['subject='.rawurlencode($subject);
  76.     }
  77.  
  78.     if (!empty($newsgroups)) {
  79.         $mail_parms['newsgroups='.rawurlencode($newsgroups);
  80.     }
  81.  
  82.     if (!empty($followupto)) {
  83.         $mail_parms['followupto='.str_replace('%40','@',rawurlencode($followupto));
  84.     }
  85.     
  86.     $mail_parm_vals '';
  87.     for ($i=0$i<count($mail_parms)$i++{
  88.         $mail_parm_vals .= (0==$i'?' '&';
  89.         $mail_parm_vals .= $mail_parms[$i];
  90.     }
  91.     $address .= $mail_parm_vals;
  92.     
  93.     if (empty($encode)) {
  94.         $encode 'none';
  95.     elseif (!in_array($encode,array('javascript','hex','none')) ) {
  96.         $smarty->trigger_error("mailto: 'encode' parameter must be none, javascript or hex");
  97.         return;        
  98.     }
  99.     
  100.     if ($encode == 'javascript' {
  101.         $string 'document.write(\'<a href="mailto:'.$address.'" '.$extra.'>'.$text.'</a>\');';
  102.         
  103.         for ($x=0$x strlen($string)$x++{
  104.             $js_encode .= '%' bin2hex($string[$x]);
  105.         }
  106.     
  107.         return '<script type="text/javascript" language="javascript">eval(unescape(\''.$js_encode.'\'))</script>';
  108.         
  109.     elseif ($encode == 'hex'{
  110.  
  111.         preg_match('!^(.*)(\?.*)$!',$address,$match);
  112.         if(!empty($match[2])) {
  113.             $smarty->trigger_error("mailto: hex encoding does not work with extra attributes. Try javascript.");
  114.             return;                        
  115.         }  
  116.         for ($x=0$x strlen($address)$x++{
  117.             if(preg_match('!\w!',$address[$x])) {
  118.                 $address_encode .= '%' bin2hex($address[$x]);
  119.             else {
  120.                 $address_encode .= $address[$x];                
  121.             }
  122.         }
  123.         for ($x=0$x strlen($text)$x++{
  124.             $text_encode .= '&#x' bin2hex($text[$x]).';';
  125.         }
  126.         
  127.         return '<a href="mailto:'.$address_encode.'" '.$extra.'>'.$text_encode.'</a>';
  128.         
  129.     else {
  130.         // no encoding        
  131.         return '<a href="mailto:'.$address.'" '.$extra.'>'.$text.'</a>';
  132.  
  133.     }
  134.     
  135. }
  136.  
  137. /* vim: set expandtab: */
  138.  
  139. ?>

Documentation generated on Tue, 24 Oct 2006 09:22:42 -0500 by phpDocumentor 1.3.1