You are here

function textsize_perm in Text Size 6

Same name and namespace in other branches
  1. 5 textsize.module \textsize_perm()

Implement hook_perm().

File

./textsize.module, line 17
Display a text size changer on the page for a better web accessibility.

Code

function textsize_perm() {
  return array(
    'administer textsize',
    'access textsize content',
  );
}