Jump to content

Form elements available for module options


Max_nl

Recommended Posts

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

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