Email.php 343 B

123456789101112131415161718192021
  1. <?php
  2. abstract class HTMLPurifier_AttrDef_URI_Email extends HTMLPurifier_AttrDef
  3. {
  4. /**
  5. * Unpacks a mailbox into its display-name and address
  6. * @param string $string
  7. * @return mixed
  8. */
  9. public function unpack($string)
  10. {
  11. // needs to be implemented
  12. }
  13. }
  14. // sub-implementations
  15. // vim: et sw=4 sts=4