* @link https://www.oxidmodule.com */ declare(strict_types=1); namespace O3\TinyMCE\Application\Core\TinyMCE\Options; use OxidEsales\Eshop\Core\Registry; class DocumentBaseUrl extends AbstractOption { protected string $key = 'document_base_url'; public function get(): string { return Registry::getConfig()->getActiveView()->getViewConfig()->getBaseDir(); } public function isQuoted(): bool { return true; } }