function google_authorship_menu in Google Authorship 7.2
Implement hook_menu().
Adds a configuration page.
File
- ./
google_authorship.module, line 23 - A module to display Google+ profile pictures of node authors in Google search results.
Code
function google_authorship_menu() {
$items['admin/config/search/google_authorship'] = array(
'title' => 'Google Authorship',
'description' => 'Configure different settings for the Google Authorship module.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'google_authorship_admin',
),
'file' => 'includes/google_authorship.admin.inc',
'access arguments' => array(
'administer google authorship',
),
);
return $items;
}