protected ConfigImporter::getNextExtensionOperation()
Gets the next extension operation to perform.
Return value
array|bool An array containing the next operation and extension name to perform it on. If there is nothing left to do returns FALSE;
File
- core/lib/Drupal/Core/Config/ConfigImporter.php, line 659
Class
- ConfigImporter
- Defines a configuration importer.
Namespace
Drupal\Core\Config
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | protected function getNextExtensionOperation() { foreach ( array ( 'module' , 'theme' ) as $type ) { foreach ( array ( 'install' , 'uninstall' ) as $op ) { $unprocessed = $this ->getUnprocessedExtensions( $type ); if (! empty ( $unprocessed [ $op ])) { return array ( 'op' => $op , 'type' => $type , 'name' => array_shift ( $unprocessed [ $op ]), ); } } } return FALSE; } |
Please login to continue.