Chris@0: /** Chris@0: * Implements hook_page_build(). Chris@0: */ Chris@0: function {{ machine_name }}_page_build(&$page) { Chris@0: if (menu_get_object('node', 1)) { Chris@0: // We are on a node detail page. Append a standard disclaimer to the Chris@0: // content region. Chris@0: $page['content']['disclaimer'] = array( Chris@0: '#markup' => t('Acme, Inc. is not responsible for the contents of this sample code.'), Chris@0: '#weight' => 25, Chris@0: ); Chris@0: } Chris@0: }