You are here

function jquery_ui_filter_dialog_enabled in jQuery UI filter 7

Same name and namespace in other branches
  1. 6 dialog/jquery_ui_filter_dialog.module \jquery_ui_filter_dialog_enabled()

Is page in a jQuery UI dialog.

4 calls to jquery_ui_filter_dialog_enabled()
jquery_ui_filter_dialog_form_alter in dialog/jquery_ui_filter_dialog.module
Implementation of hook_form_alter().
jquery_ui_filter_dialog_init in dialog/jquery_ui_filter_dialog.module
Implements hook_init().
jquery_ui_filter_preprocess_html in dialog/jquery_ui_filter_dialog.module
Implements hook_preprocess_html().
jquery_ui_filter_preprocess_page in dialog/jquery_ui_filter_dialog.module
Implements hook_preprocess_page().

File

dialog/jquery_ui_filter_dialog.module, line 236
Opens links inside a jQuery UI dialog widget.

Code

function jquery_ui_filter_dialog_enabled() {
  return isset($_GET['dialogFeatures']) ? TRUE : FALSE;
}