xhtml = ''; } /** * Affichage global * */ function show() { return $this->xhtml; } /** * Formulaire * */ function visitFormosite(Formosite $comp, $level) { $this->xhtml .= "
$comp->title
\n"; return true; } /** * Page * */ function visitPage(Page $comp, $level) { $this->xhtml .= "$comp->title
\n"; return true; } /** * Champ * */ function visitField(Field $comp, $level) { $this->xhtml .= "$comp->name
\n"; return true; } //Pas d'action sur ces composites function visitBlock(Block $comp, $level) { return true; } } ?>