v1/vendor/chi-teck/drupal-code-generator/templates/plugin-manager/hook/model.module.twig

18 lines
358 B
Twig

/**
* Implements hook_{{ plugin_type }}_info().
*/
function {{ machine_name }}_{{ plugin_type }}_info() {
return [
'foo' => [
'id' => 'foo',
'label' => t('Foo'),
'description' => t('Foo description.'),
],
'bar' => [
'id' => 'bar',
'label' => t('Bar'),
'description' => t('Bar description.'),
],
];
}