You are here

function social_comments_menu in Open Social 7

Implements hook_menu().

File

./social_comments.module, line 17

Code

function social_comments_menu() {
  $items = array();
  $items['admin/config/system/social-comments'] = array(
    'title' => 'Social comments',
    'description' => 'Configure social comments',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'social_comments_settings_form',
    ),
    'access arguments' => array(
      'administer site configuration',
    ),
    'file' => 'includes/social_comments.admin.inc',
  );
  return $items;
}