You are here

public function ConfigurableContentLoader::getOptions in YAML Content 8.2

Fetch all configured options.

Return value

array All configured options for this ContentLoader.

File

src/ContentLoader/ConfigurableContentLoader.php, line 77

Class

ConfigurableContentLoader
A ContentLoader implementation supporting configuration options.

Namespace

Drupal\yaml_content\ContentLoader

Code

public function getOptions() {
  return $this->options + $this
    ->getDefaultOptions();
}