You are here

function htmltidy_perm in HTML Tidy 5

Same name and namespace in other branches
  1. 6 htmltidy.module \htmltidy_perm()

Drupal hook that returns an array of valid permissions for the htmltidy module.

Return value

An array of valid permissions for the htmltidy module.

File

./htmltidy.module, line 345

Code

function htmltidy_perm() {
  return array(
    'use htmltidy debug mode',
    'administer htmltidy',
  );
}