You are here

function reg_with_pic_menu in Register with Picture 6

Implementation of hook_menu().

File

./reg_with_pic.module, line 10
This module allows a user picture to be uploaded at registration time.

Code

function reg_with_pic_menu() {
  $items = array();
  $items['admin/settings/reg_with_pic'] = array(
    'title' => t('Reg With Pic'),
    'description' => t('Settings for the Reg With Pic module.'),
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'reg_with_pic_admin_settings',
    ),
    'access arguments' => array(
      'administer site configuration',
    ),
    'file' => 'reg_with_pic.admin.inc',
  );
  return $items;
}