You are here

function favorites_perm in Favorites 6

Implements hook_perm().

File

./favorites.module, line 11
The favorites module allows users to bookmark any path within a site.

Code

function favorites_perm() {
  return array(
    'manage own favorites',
  );

  // this is not implemented yet: , 'manage all favorites');
}