ferbla Posted August 19, 2014 Share Posted August 19, 2014 Hello, I am currently developing a module for WHMCS, but have run into a little bit of an issue. It seems that when the PreShoppingCartCheckout Action hook gets called that it should show the configoptions of the the product. Unfortunately I am not seeing any of the values, I only see a NULL. When I go into the Web GUI, I can see the config option I want under Products->Module Settings, but it doesn't show up with the under the $params variable. Here is the link to the action hook(http://docs.whmcs.com/Hooks:PreShoppingCartCheckout). Thanks in advance! 0 Quote Link to comment Share on other sites More sharing options...
mbit Posted August 19, 2014 Share Posted August 19, 2014 It should return config options as an Array, for example - one config option: [configoptions] => Array ( [18] => 362 ) This here should print everything you get from that hook as soon as you complete your order, but you have to complete it. function test($data) { print_r($data); } add_hook("PreShoppingCartCheckout",1,"test"); 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.