config = $config; } /** * {@inheritdoc} */ public function getFileTypes() { $types = []; $convertNode = $this->config->getValue(self::XML_PATH_CUSTOM_FILES, 'default'); if ($convertNode) { foreach ($convertNode as $name => $value) { $types[$name] = $value; } } return $types; } }