e082e34ed1ce48599d2fe52aa9c579b272bdbd20
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / preprocess_HOOK.twig
1 /**
2  * Implements hook_preprocess_HOOK().
3  */
4 function {{ machine_name }}_preprocess_HOOK(&$variables) {
5   // This example is from rdf_preprocess_image(). It adds an RDF attribute
6   // to the image hook's variables.
7   $variables['attributes']['typeof'] = ['foaf:Image'];
8 }