You are here

function jquery_ui_filter_dialog_filter_tips in jQuery UI filter 6

Implementation of hook_filter_tips().

1 call to jquery_ui_filter_dialog_filter_tips()
_jquery_ui_filter_dialog_demo in dialog/jquery_ui_filter_dialog.admin.inc
jQuery UI filter Dialog demo.

File

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

Code

function jquery_ui_filter_dialog_filter_tips($delta = NULL, $format = NULL, $long = FALSE) {
  $t_args = array(
    '@dialog_href' => 'http://jqueryui.com/demos/dialog/',
  );
  return t('To open a link inside a jQuery UI <a href="@dialog_href">Dialog</a> set the link\'s the target attribute to [dialog] with optional JSON data, with single or double quotes, included in the \'rel\' attribute.', $t_args);
}