forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
18 lines
358 B
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.'),
|
|
],
|
|
];
|
|
}
|