default_content-2.0.x-dev/src/ImporterInterface.php
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);
}
