Jump to content

Trouble with Action Hooks


ferbla

Recommended Posts

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!

Link to comment
Share on other sites

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");

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated