You are here

function _responsive_table_filter_tips in Responsive Table Filter 7

Implements hook_filter_FILTER_tips().

1 string reference to '_responsive_table_filter_tips'
responsive_table_filter_filter_info in ./responsive_table_filter.module
Implements hook_filter_info().

File

./responsive_table_filter.module, line 46
Text filter for wrapping <table> tags in a <figure> tag.

Code

function _responsive_table_filter_tips($format, $long = FALSE) {
  return t('Wraps a %table tags with a %figure tag.', array(
    '%table' => '<table>',
    '%figure' => '<figure>',
  ));
}