You are here

function _jquery_ui_filter_dialog_tips_callback in jQuery UI filter 7

Implementation of hook_filter_tips().

1 call to _jquery_ui_filter_dialog_tips_callback()
_jquery_ui_filter_dialog_demo in dialog/jquery_ui_filter_dialog.admin.inc
jQuery UI filter Dialog demo.
1 string reference to '_jquery_ui_filter_dialog_tips_callback'
jquery_ui_filter_filter_info in dialog/jquery_ui_filter_dialog.module
Implements hook_filter_info().

File

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

Code

function _jquery_ui_filter_dialog_tips_callback($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);
}