Mart94 Posted April 8, 2011 Share Posted April 8, 2011 Hi! Well, i'm coding my own Module for WHMCS ( It will create User in another web application ), but i'm stuck. What i need, are "Configurable Options" to "Module Settings" ( "Products/Services -> Edit Product" ). I have downloaded example of Module, i edited it, but i can't figure out, what to add / change to get "Configurable Options" under "Module Settings". Top of the code: function MyModule_ConfigOptions() { # Should return an array of the module options for each product - maximum of 24 $configarray = array( "Package Name" => array( "Type" => "text", "Size" => "25", ), "Web Space Quota" => array( "Type" => "text", "Size" => "5", "Description" => "MB" ), "FTP Access" => array( "Type" => "yesno", "Description" => "Tick to grant access" ), "Subdomains" => array( "Type" => "dropdown", "Options" => "1,2,5,10,25,50,Unlimited"), ); return $configarray; } What to change in there? Also, if i need to change something else in code, then tell it and say how to get Gonfigureable Options values. All the best, and waiting answer, Mart L. 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.