From dbfaa193284da1823241a5bfb50fc60a0be7dbe0 Mon Sep 17 00:00:00 2001 From: Marek Isalski Date: Wed, 23 Mar 2016 11:24:13 +0000 Subject: [PATCH] remove accidental copy-pasta code --- fulcrm_collection.module | 17 ----------------- 1 file changed, 17 deletions(-) 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; }