You are here

function google_authorship_permission in Google Authorship 7.2

Implements hook_permission().

Adds permissions.

File

./google_authorship.module, line 42
A module to display Google+ profile pictures of node authors in Google search results.

Code

function google_authorship_permission() {
  return array(
    'administer google authorship' => array(
      'title' => t('Administer Google Authorship'),
      'description' => t('Perform administration tasks for the Google Authorship module.'),
    ),
  );
}