- 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>
49 lines
873 B
PHP
Executable File
49 lines
873 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* Validates a boolean attribute
|
|
*/
|
|
class HTMLPurifier_AttrDef_HTML_Bool extends HTMLPurifier_AttrDef
|
|
{
|
|
|
|
/**
|
|
* @type string
|
|
*/
|
|
protected $name;
|
|
|
|
/**
|
|
* @type bool
|
|
*/
|
|
public $minimized = true;
|
|
|
|
/**
|
|
* @param bool|string $name
|
|
*/
|
|
public function __construct($name = false)
|
|
{
|
|
$this->name = $name;
|
|
}
|
|
|
|
/**
|
|
* @param string $string
|
|
* @param HTMLPurifier_Config $config
|
|
* @param HTMLPurifier_Context $context
|
|
* @return bool|string
|
|
*/
|
|
public function validate($string, $config, $context)
|
|
{
|
|
return $this->name;
|
|
}
|
|
|
|
/**
|
|
* @param string $string Name of attribute
|
|
* @return HTMLPurifier_AttrDef_HTML_Bool
|
|
*/
|
|
public function make($string)
|
|
{
|
|
return new HTMLPurifier_AttrDef_HTML_Bool($string);
|
|
}
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|