(2010-) * @author Maurice Preuß * @license GPLv2 http://files.froxlor.org/misc/COPYING.txt * @package Froxlor\UI\Callbacks * */ class SSLCertificate { public static function domainWithSan(array $attributes): array { return [ 'type' => 'domainWithSan', 'data' => [ 'domain' => $attributes['data'], 'san' => implode(', ', $attributes['fields']['san'] ?? []), ] ]; } public function canDelete(array $attributes): bool { return false; } }