You are here

function htmltidy_permission in HTML Tidy 7

Implementation of hook_permission().

File

./htmltidy.module, line 48
The htmltidy module uses Tidy (http://tidy.sf.net) to properly format HTML for saving and display.

Code

function htmltidy_permission() {
  return array(
    'administer htmltidy' => array(
      'title' => t('Administer htmltidy'),
      'description' => t('use htmltidy debug mode.'),
    ),
  );
}