You are here

function fivestar_permission in Fivestar 7.2

Implements hook_permission().

Exposes permissions for rating content.

File

./fivestar.module, line 91

Code

function fivestar_permission() {
  return array(
    'rate content' => array(
      'title' => t('Use Fivestar to rate content'),
    ),
  );
}