You are here

function seochecklist_permission in SEO Checklist 7.3

Implementation of hook_permission().

File

./seochecklist.module, line 23
SEO Checklist module allows users to track important SEO techniques on the website.

Code

function seochecklist_permission() {
  return array(
    'access seochecklist content' => array(
      'title' => t('Access SEOchecklist Content'),
      'description' => t('Access to SEO Checklist.'),
    ),
  );
}