You are here

function seo_checker_perm in SEO Compliance Checker 6.2

Same name and namespace in other branches
  1. 6 inc/seo_checker.admin.inc \seo_checker_perm()

Implementation of hook_perm().

Return value

(array) permissions

File

inc/seo_checker.admin.inc, line 14
The functions used to configure the module over the admin interface.

Code

function seo_checker_perm() {
  return array(
    'administer seo_checker configuration',
    'skip seo checks',
    'allow seo check failures',
  );
}