Documentation ------------- page description ----------------- A wizard contains some pages. Each page of the wizard are implemented or described into several files : - a class, in which the display and the process of an optional form are implemented. - a template, used to display the page - a locale file, in which localized string are stored, in php. There should be one locale file for each language. It should have at least a locale file for english lang. Files of a page are stored in a same directory, and a page is identified with a name. For instance, if the name of the page is "welcome" : - the directory for the page is named welcome. - welcome/welcome.page.php is the file which implements the class of the page - welcomeWizPage should be the name of the class - welcome/welcome.tpl is the template - welcome/welcome.en.php is the locale file for english, welcome.fr.php for french etc. A template file should contain only a html fragment, which will be inserted into an other main template provided by installWizard. So you should not include , elements for instance. You mustn't use the
element, since your fragment will be include into an existing element into the main template. However, you can use any form elements like ,