Max_nl Posted July 29, 2010 Share Posted July 29, 2010 The module development kit contains the following example for the configOptions function: function template_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; } I was wondering if any other form elements are available. In particular I'm looking for a way to allow the user to select multiple items from a list. E.g. an option to generate a list of checkboxes, or a <select multiple> box 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.