* @link https://www.oxidmodule.com */ declare(strict_types=1); namespace O3\TinyMCE\Application\Core\TinyMCE\Options; class ContextMenu extends AbstractOption { protected string $key = 'contextmenu'; public function get(): string { return 'link linkchecker image table'; } public function isQuoted(): bool { return true; } }