You are here

function thickbox_login in Thickbox 5

Same name and namespace in other branches
  1. 6 thickbox.module \thickbox_login()

Menu callback for thickbox_login.

5 string references to 'thickbox_login'
thickbox_admin_settings in ./thickbox.module
Menu callback for admin_settings.
thickbox_form_alter in ./thickbox.module
Implementation of hook_form_alter(). Reformat the login form.
thickbox_menu in ./thickbox.module
Implementation of hook_menu().
thickbox_uninstall in ./thickbox.install
Implementation of hook_uninstall().
_thickbox_doheader in ./thickbox.module
Loads the various js and css files.

File

./thickbox.module, line 127
Author: Fredrik Jonsson fredrik at combonet dot se The thickbox module is a simple wrapper for the jquery plugin ThickBox http://jquery.com/demo/thickbox/.

Code

function thickbox_login() {
  print drupal_get_form('user_login');
  exit;
}