v1/vendor/chi-teck/drupal-code-generator/templates/hook/preprocess_HOOK.twig

9 lines
273 B
Twig

/**
* Implements hook_preprocess_HOOK().
*/
function {{ machine_name }}_preprocess_HOOK(&$variables) {
// This example is from rdf_preprocess_image(). It adds an RDF attribute
// to the image hook's variables.
$variables['attributes']['typeof'] = ['foaf:Image'];
}