mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 15:48:42 +00:00
2c955af135
Signed-off-by: Edward Z. Yang <edwardzyang@thewritingpot.com>
16 lines
259 B
PHP
16 lines
259 B
PHP
<?php
|
|
|
|
abstract class HTMLPurifier_AttrDef_URI_Email extends HTMLPurifier_AttrDef
|
|
{
|
|
|
|
/**
|
|
* Unpacks a mailbox into its display-name and address
|
|
*/
|
|
function unpack($string) {
|
|
// needs to be implemented
|
|
}
|
|
|
|
}
|
|
|
|
// sub-implementations
|