3f660889f439f81aff3a84ff857c1b081a65f842
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / page_build.twig
1 /**
2  * Implements hook_page_build().
3  */
4 function {{ machine_name }}_page_build(&$page) {
5   if (menu_get_object('node', 1)) {
6     // We are on a node detail page. Append a standard disclaimer to the
7     // content region.
8     $page['content']['disclaimer'] = array(
9       '#markup' => t('Acme, Inc. is not responsible for the contents of this sample code.'),
10       '#weight' => 25,
11     );
12   }
13 }