File "Edit.php"
Full Path: /home/spiraleeea/www/spirale/plugins-dist/safehtml/lib/xemlock/htmlpurifier-html5/library/HTMLPurifier/HTMLModule/HTML5/Edit.php
File size: 834 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* HTML5 extension to Edit Module
* http://developers.whatwg.org/edits.html
*
* @property HTMLPurifier_ElementDef[] $info
*/
class HTMLPurifier_HTMLModule_HTML5_Edit extends HTMLPurifier_HTMLModule_Edit
{
/**
* @type string
*/
public $name = 'HTML5_Edit';
/**
* @param HTMLPurifier_Config $config
* @throws HTMLPurifier_Exception
*/
public function setup($config)
{
parent::setup($config);
$editDatetime = new HTMLPurifier_AttrDef_HTML5_Datetime(array('Date', 'DatetimeGlobal'));
// https://html.spec.whatwg.org/dev/edits.html#the-ins-element
$this->info['ins']->attr['datetime'] = $editDatetime;
// https://html.spec.whatwg.org/dev/edits.html#the-del-element
$this->info['del']->attr['datetime'] = $editDatetime;
}
}