tolgaaaltas
PHP konusunda iyi değilim, ancak forumumda çalışmasını sağlamakta sorun yaşıyorum. kod doğru mu?
Bunu “extend.php” ye ekledim
use Flarum\Extend;
use Flarum\Frontend\Document;
return [
(new Extend\Formatter())->configure(function ($configurator) {
$configurator->urlConfig->allowScheme('magnet');
}),
];
return [
(new Extend\Formatter())->configure(function ($configurator) {
$configurator->plugins->load('HTMLEntities');
$configurator->HTMLElements->allowElement('img');
$configurator->HTMLElements->allowElement('b');
$configurator->HTMLElements->allowAttribute('b', 'class');
$configurator->HTMLElements->allowElement('i');
$configurator->finalize();
}),
];