Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
Hi,
I'm using the 'marvin' theme, it only allows you to add blocks to either the sidebars, but not anywhere-else. Therefore i'm after some php code to include a menu item block i've created.
e.g. similar to the following adsense code:
<?php
if (module_exists('adsense'))
{
print adsense_display('468x60', 1, 1); // Format, Group, Channel
}
?>
P.S. Can anyone indicate a good page which lists the inline use of standard blocks?
Hi. I'm moving my first steps in Drupal. I installed a local version of the 4.7.6 Drupal. For the site I'm going to build, I need a module that manages upload and download of files with a bit of extra information not provided by the default Upload module.
I downloaded the Filemanager and the attachment modules, unzipped them into the modules directory and then disabled the upload module and enabled those two.
I have a standalone app I'm running separate from my D 5 install. I has its own folder and works as is. But, I want to write a tweak it so that it references my D 5 users. How would I check - from a folder outside of Drupal - to see if user logged, plus user id ?