public MissingContentEvent::resolveMissingContent($uuid)
Resolves the missing content by removing it from the list.
string $uuid: The UUID of the content entity to mark resolved.
$this The MissingContentEvent object.
public function resolveMissingContent($uuid) { if (isset($this->missingContent[$uuid])) { unset($this->missingContent[$uuid]); } return $this; }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Config!Importer!MissingContentEvent.php/function/MissingContentEvent::resolveMissingContent/8.1.x