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.
Creates a block with a search box that allows you to find/go to a Drupal Node by NID. I use this on a documentation site -> where I used the NID to track specific solutions. I wanted an easy way to be forwarded to a specific node ny using a Node ID.
Response to the practicality of this module
When I wrote this module I thought that this seems really, really dumb -> but within a certain context, this little module makes sense:
I was building a documentation site for a client where I wanted the (non-drupal) end users to gain quick access to the docs that they need straight away. Since the skill level of the end user wasn't that robust, the easiest and most reliable way was to give them "a reference " number; that number was the NID, of course.
The idea of saying "Well, just go to the site and search ...." isn't really practical as anyone in user experience knows. Also, saying "just type in 'node/42' isn't a practical solution because it leads to questions that are off topic (namely, what is a node?) It is more practical to say -> "Just go to doc 42"
This small module helps theme-developers to deal with cross-browser compatibility. It makes easier to handle different types of non-widespread browsers just as much as it helps with using different versions of Internet Explorer.
The module extends the $body_classes variable in page.tpl.php based on the enduser's browser, and platform.
The module also makes a $browser_classes variable available in page.tpl.php, which stores the data in an array, this way the developer can make use of it as needed, if he does not wish to use the $body_classes variable.
Supported browsers
ie
opera
safari
chrome
netscape
ff
konqueror
dillo
chimera
beonex
aweb
amaya
icab
lynx
galeon
operamini
Browser version checking
The module creates version classes.
ie[version]
opera[version]
chrome[version]
safari[version]
netscape[version]
ff[version]
konqueror[version]
operamini[version]
Supported platforms
win
ipad
ipod
iphone
mac
android
linux
nokia
blackberry
NetBSD
FreeBSD
OpenBSD
Mobile detecting
The module checks if the device is mobile and adds "mobile" or "desktop" class.