diff --git a/fulcrm_collection.module b/fulcrm_collection.module index 13bfaab..7af87ec 100644 --- a/fulcrm_collection.module +++ b/fulcrm_collection.module @@ -27,22 +27,5 @@ function fulcrm_collection_menu() { 'access arguments' => array('administer fulcrm collection'), ); - $items[ 'fulcrm/buy/%' ] = array( 'page callback' => 'fulcrm_collection_buy', - 'page arguments' => array(2), - 'type' => MENU_CALLBACK, - 'access callback' => 'user_access', - 'access arguments' => array('access content'), - ); - $items[ 'fulcrm/cart' ] = array( 'page callback' => 'fulcrm_collection_cart', - 'type' => MENU_CALLBACK, - 'access callback' => 'user_access', - 'access arguments' => array('access content'), - ); - $items[ 'fulcrm/checkout' ] = array( 'page callback' => 'fulcrm_collection_checkout', - 'type' => MENU_CALLBACK, - 'access callback' => 'user_access', - 'access arguments' => array('access content'), - ); - return $items; }