vote up 0 vote down star

To add javascript, you can use:

drupal_add_js

And similar for css:

drupal_add_css

But what if I just want to add html at the end of my page. I.e. Add a div with some text in it at the end of the page?

flag

74% accept rate

3 Answers

vote up 1 vote down

You can add the following to your theme's template.php file:

  
function phptemplate_preprocess_page(&$vars) {
  $vars['closure'] .= 'Add markup here';
}
  
link|flag
vote up 1 vote down

You could write a block to do it and put the block in the colsure.

link|flag
vote up 1 vote down

...or, probably not as recommended as the other answers, but more direct, you can add the html straight to the page.tpl.php file.

link|flag
I want to do it in such a way, that when I enable a module, it appears in the page, and if I disable the module, it doesnt. So none of these methods would work. – RD Sep 6 at 7:15
Add a condition to check if the module exists: api.drupal.org/?q=api/function/… – lazysoundsystem Sep 6 at 23:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.