You are here

public function ContentTypeConfigurationHandler::getIdentifiers in Configuration Management 7.3

Returns the configuration identifiers handled by this instance.

Return value

array An array of identifiers.

Overrides ConfigurationHandler::getIdentifiers

File

src/Handlers/ContentTypeConfigurationHandler.php, line 14

Class

ContentTypeConfigurationHandler

Namespace

Configuration\Handlers

Code

public function getIdentifiers() {
  return $this->configuration_manager
    ->drupal()
    ->node_type_get_names();
}