user/%uuers/persona not created

  1. <?php
  2. // $Id$
  3.  
  4. /**
  5.  * @file Openid Attribute Exchange implementation for drupal
  6.  */
  7.  
  8. /**
  9.  * Implementation ofhook_menu()
  10.  */
  11. function openid_ax_menu() {
  12.   $items['openid/ax'] = array(
  13.     'title' => 'Openid Attribute Exchange',
  14.     'page callback' => 'openid_ax_endpoint',
  15.     'type' => MENU_CALLBACK,
  16.     'file' => 'openid_ax.pages.inc',
  17.     'access callback' => TRUE
  18.     );
  19.  
  20.   $items['openid/ax/continue'] = array(
  21.     'title' => 'OpenID Attribute Exchange',
  22.     'page callback' => 'openid_ax_continue',
  23.     'access callback' => TRUE,
  24.     'type' => MENU_CALLBACK,
  25.     'file' => 'openid_ax.pages.inc'
  26.     );
  27.  
  28.   $items['openid/ax/send'] = array(
  29.     'title' => 'OpenID Attribute Exchange',
  30.     'page callback' => 'openid_ax_send',
  31.     'access callback' => TRUE,
  32.     'type' => MENU_CALLBACK,
  33.     'file' => 'openid_ax.pages.inc'
  34.     );
  35.  
  36.   $items['user/%user/persona'] = array(
  37.     'title' => 'OpenID Attribute Exchange Personas',
  38.     'page callback' => 'openid_ax_persona',
  39.     'access callback' => TRUE,
  40.     'type' => MENU_LOCAT_TASK,
  41.     'file' => 'openid_ax.pages.inc'
  42.     );
  43.   $items['openid/ax/openid_sites'] = array(
  44.     'title' => 'anshu prateek',
  45.     'page callback' => 'openid_provider_sites',
  46.     'page arguments' => array(1),
  47.     'access callback' => TRUE,
  48.     'type' => MENU_LOCAL_TASK,
  49.     'file' => 'openid_provider.pages.inc'
  50.   );
  51.   return $items;
  52. }
  53.  
  54.  
  55. ?>