Have a look at the file ispconfig_isp_web.lib.php. In the web_show function. Some of the elemets on the page are made visible / invisible by their index. E.g.: $doc->deck[0]->elements[14]->visible = 0; If you put your plugin on the top of the form, you have to set all indices for deck[0] plus one. in the case of the above example: $doc->deck[0]->elements[15]->visible = 0; The values for the hostingplan are set from line 166 - 187.
Last edited by till; 7th November 2005 at 09:41.
|