You are here

function custom_pagers_perm in Custom Pagers 6

Same name and namespace in other branches
  1. 5 custom_pagers.module \custom_pagers_perm()

File

./custom_pagers.module, line 45
Allows administrators to define context-sensitive previous/next pagers for any node type.

Code

function custom_pagers_perm() {
  return array(
    'administer custom pagers',
    'use php in custom pagers',
  );
}