ifthenelse-8.x-1.x-dev-no-core/modules/contrib/default_content/src/ImporterInterface.php
modules/contrib/default_content/src/ImporterInterface.php
<?php
namespace Drupal\default_content;
/**
* An interface defining a default content importer.
*/
interface ImporterInterface {
/**
* Imports default content from a given module.
*
* @param string $module
* The module to create the default content from.
*
* @return \Drupal\Core\Entity\EntityInterface[]
* An array of created entities keyed by their UUIDs.
*/
public function importContent($module);
}
