From 9a7559622b3b427de8c9a569d12284aca6ef9448 Mon Sep 17 00:00:00 2001 From: Maxime Bourget Date: Sun, 7 Apr 2013 17:24:02 +0100 Subject: [PATCH] Remove hooks as it doesn't work for delivery --- hooks.php | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 hooks.php diff --git a/hooks.php b/hooks.php deleted file mode 100644 index 78b7768..0000000 --- a/hooks.php +++ /dev/null @@ -1,38 +0,0 @@ -. -***********************************************************************/ - -class hooks_textcart extends hooks { - var $module_name = 'textcart'; - - function install_options($app) { - $local = array( - 'inventory/adjustments.php', - 'inventory/transfers.php', - 'purchasing/po_entry_items.php', - 'sales/sales_order_entry.php' - ); - // supersede some url's with provided by textcart extension - foreach($app->modules as $id => $mod) - { - foreach($mod->lappfunctions as $fun=>$option) - if (in_array(strtok($option->link,'?'), $local)) - $app->modules[$id]->lappfunctions[$fun]->link = - 'modules/textcart/'.$app->modules[$id]->lappfunctions[$fun]->link; - foreach($mod->rappfunctions as $fun=>$option) - if (in_array(strtok($option->link,'?'), $local)) - $app->modules[$id]->rappfunctions[$fun]->link = - 'modules/textcart/'.$app->modules[$id]->rappfunctions[$fun]->link; - - } - } -} -?> \ No newline at end of file -- 2.30.2