2006-11-08 03:10:43 +00:00
|
|
|
<?php
|
|
|
|
|
2007-11-25 02:24:39 +00:00
|
|
|
abstract class HTMLPurifier_AttrDef_URI_Email extends HTMLPurifier_AttrDef
|
2006-11-08 03:10:43 +00:00
|
|
|
{
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2006-11-08 03:10:43 +00:00
|
|
|
/**
|
|
|
|
* Unpacks a mailbox into its display-name and address
|
2013-07-16 11:56:14 +00:00
|
|
|
* @param string $string
|
|
|
|
* @return mixed
|
2006-11-08 03:10:43 +00:00
|
|
|
*/
|
2013-07-16 11:56:14 +00:00
|
|
|
public function unpack($string)
|
|
|
|
{
|
2006-11-08 03:10:43 +00:00
|
|
|
// needs to be implemented
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2006-11-08 03:10:43 +00:00
|
|
|
}
|
|
|
|
|
2007-09-06 19:38:12 +00:00
|
|
|
// sub-implementations
|
2008-12-06 09:24:59 +00:00
|
|
|
|
|
|
|
// vim: et sw=4 sts=4
|