function textsize_perm in Text Size 5
Same name and namespace in other branches
- 6 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',
);
}