File indexing completed on 2025-01-26 05:29:06

0001 <?php
0002 
0003 abstract class HTMLPurifier_AttrDef_URI_Email extends HTMLPurifier_AttrDef
0004 {
0005 
0006     /**
0007      * Unpacks a mailbox into its display-name and address
0008      * @param string $string
0009      * @return mixed
0010      */
0011     public function unpack($string)
0012     {
0013         // needs to be implemented
0014     }
0015 
0016 }
0017 
0018 // sub-implementations
0019 
0020 // vim: et sw=4 sts=4