- 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>
39 lines
834 B
PHP
Executable File
39 lines
834 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* Special-case enum attribute definition that lazy loads allowed frame targets
|
|
*/
|
|
class HTMLPurifier_AttrDef_HTML_FrameTarget extends HTMLPurifier_AttrDef_Enum
|
|
{
|
|
|
|
/**
|
|
* @type array
|
|
*/
|
|
public $valid_values = false; // uninitialized value
|
|
|
|
/**
|
|
* @type bool
|
|
*/
|
|
protected $case_sensitive = false;
|
|
|
|
public function __construct()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @param string $string
|
|
* @param HTMLPurifier_Config $config
|
|
* @param HTMLPurifier_Context $context
|
|
* @return bool|string
|
|
*/
|
|
public function validate($string, $config, $context)
|
|
{
|
|
if ($this->valid_values === false) {
|
|
$this->valid_values = $config->get('Attr.AllowedFrameTargets');
|
|
}
|
|
return parent::validate($string, $config, $context);
|
|
}
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|