AddOption( 'ToolBar', $module, $action ); // get access to the User Interface $ui = $MIOLO->GetUI(); // instanciates a new frmToolBar form // wich is located in /$module/forms $formSave = $ui->getForm( $module, 'frmToolBar' ); // clear the content of the theme $theme->clearContent(); // verify if the content is empty // ok, ok... this is not necessary... is only to show you the method... ;-) if ( $theme->getContent() == '' ) { // insert the form into the theme's content $theme->insertContent( $formSave ); } ?>