protected ConfigImporter::getUnprocessedExtensions($type)
Gets a list of unprocessed changes for extensions.
string $type: The type of extension, either 'theme' or 'module'.
array An array of extension names.
protected function getUnprocessedExtensions($type) { $changelist = $this->getExtensionChangelist($type); return array( 'install' => array_diff($changelist['install'], $this->processedExtensions[$type]['install']), 'uninstall' => array_diff($changelist['uninstall'], $this->processedExtensions[$type]['uninstall']), ); }
© 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!ConfigImporter.php/function/ConfigImporter::getUnprocessedExtensions/8.1.x