You are here

function pagestyle_permission in Page Style 7

Implement hook_permission().

File

./pagestyle.module, line 24
Display a style changer on the page and in the browser menu for a better web accessibility.

Code

function pagestyle_permission() {
  return array(
    'administer pagestyle' => array(
      'title' => t('Administer Page Style'),
    ),
    'access pagestyle content' => array(
      'title' => t('Access Page Style content'),
    ),
  );
}