mirror of
https://github.com/moodle/moodle.git
synced 2025-07-14 10:56:54 +02:00
19 lines
375 B
PHP
19 lines
375 B
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/AttrDef.php';
|
|
|
|
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
|
|
//moodlefix require_once 'HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php';
|