Email.php 282 B

1234567891011121314151617
  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. */
  7. function unpack($string) {
  8. // needs to be implemented
  9. }
  10. }
  11. // sub-implementations
  12. // vim: et sw=4 sts=4