You are here

function textsize_permission in Text Size 7

Implement hook_permission().

File

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

Code

function textsize_permission() {
  return array(
    'administer textsize' => array(
      'title' => t('Administer Text Size'),
    ),
    'access textsize content' => array(
      'title' => t('Access Text Size content'),
    ),
  );
}