protected function InfoParserDynamic::getRequiredKeys in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Extension/InfoParserDynamic.php \Drupal\Core\Extension\InfoParserDynamic::getRequiredKeys()
Returns an array of keys required to exist in .info.yml file.
Return value
array An array of required keys.
1 call to InfoParserDynamic::getRequiredKeys()
- InfoParserDynamic::parse in core/
lib/ Drupal/ Core/ Extension/ InfoParserDynamic.php - Parses Drupal module, theme and profile .info.yml files.
File
- core/
lib/ Drupal/ Core/ Extension/ InfoParserDynamic.php, line 49 - Contains \Drupal\Core\Extension\InfoParserDynamic.
Class
- InfoParserDynamic
- Parses dynamic .info.yml files that might change during the page request.
Namespace
Drupal\Core\ExtensionCode
protected function getRequiredKeys() {
return array(
'type',
'core',
'name',
);
}