- Fix: Notifiable-Trait zum User-Model hinzugefuegt (behebt notify()-500er) - Installer: SMTP-Verbindungstest mit EsmtpTransport + Ueberspringen-Link - Admin: Neuer E-Mail-Tab mit SMTP-Konfiguration + Verbindungstest - Admin: Lazy Quill-Initialisierung (nur sichtbare Locale wird geladen) - Uebersetzungen: 17 neue Mail-Keys in allen 6 Sprachen Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
41 lines
995 B
PHP
Executable File
41 lines
995 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* Module defines proprietary tags and attributes in HTML.
|
|
* @warning If this module is enabled, standards-compliance is off!
|
|
*/
|
|
class HTMLPurifier_HTMLModule_Proprietary extends HTMLPurifier_HTMLModule
|
|
{
|
|
/**
|
|
* @type string
|
|
*/
|
|
public $name = 'Proprietary';
|
|
|
|
/**
|
|
* @param HTMLPurifier_Config $config
|
|
*/
|
|
public function setup($config)
|
|
{
|
|
$this->addElement(
|
|
'marquee',
|
|
'Inline',
|
|
'Flow',
|
|
'Common',
|
|
array(
|
|
'direction' => 'Enum#left,right,up,down',
|
|
'behavior' => 'Enum#alternate',
|
|
'width' => 'Length',
|
|
'height' => 'Length',
|
|
'scrolldelay' => 'Number',
|
|
'scrollamount' => 'Number',
|
|
'loop' => 'Number',
|
|
'bgcolor' => 'Color',
|
|
'hspace' => 'Pixels',
|
|
'vspace' => 'Pixels',
|
|
)
|
|
);
|
|
}
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|