You are here

function complete_profile_menu in Complete profile 7

Implements hook_menu().

File

./complete_profile.module, line 6

Code

function complete_profile_menu() {
  $items['user/%user/complete-profile'] = array(
    'title' => 'Complete your profile',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'complete_profile_form',
      1,
    ),
    'access callback' => 'complete_profile_form_access',
    'access arguments' => array(
      1,
    ),
    'type' => MENU_CALLBACK,
    'file' => 'complete_profile.pages.inc',
  );
  return $items;
}