8f7f4704442a722117232bc266fe479f891db771
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / 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'] = array('foaf:Image');
8 }