Scrolling Titlebar Text module is a simple Lightweight module which make the Browser's Title bar text to Scroll or Marquee (Text Effect). Scrolling Titlebar Text is the essential module for most of the websites for its Title Bar Text effect which grabs website visitor's attention.
Scrolling Titlebar uses a small custom JavaScript Function.
Settings
The settings in Scrolling Titlebar Text module are
Scroll or Marquee Speed. (in milliseconds)
Page Title End String
The default value for scroll or marquee speed is 300 ms. The Page title for scrolling is terminate with this end string. The default value for page title end string is two white spaces. You can configure it in Administrator Settings (admin/config/user-interface/scrolling-titlebar).
Some helpful debugging functions I have been using for a few years now. I'm not sure if the original author (Jake Rockowitz) is still maintaining the module.
Uses jqTransform plugin to change the appearance of form elements. You can apply the new style to all forms in your site or just to them ýou chose in the module administration.
Automatically adds a drupal_get_token query string parameter to any menu links that correspond to a menu router item that has 'token' => TRUE in its hook_menu() definition. This helps prevent certain links from CSRF attack requests.
Protection support for core menu callbacks
By default this module adds token CSRF protection for the following core menu callbacks:
user/logout
Which in turn ensures any menu links are output as:
function mymodule_menu() {
$items['mymodule/path'] = array(
'title' => 'Sample dangerous callback',
'description' => 'A sample menu callback that should be protected from CSRF attacks using tokens.',
'page callback' => 'mymodule_dangerous_callback',
'access arguments' => array('administer mymodule'),
'token' => TRUE, // Add this to automatically have this path protected.
);
return $items;
}