' . $altIcon . '

' . $titrePage; if($boutonAjouter) { $debutPage .= '' . __('Ajouter', 'annonces') . ''; } $debutPage .= '

' . $messageInfo . '
'; return $debutPage; } /** * Closes the "div" tag open in the header display of a classical HTML page. * @see afficherDebutPage * @return the closure. */ function afficherFinPage() { return '
'; } /** * Create a combo box output * * @param string $identifier The name and unique identifier of the combo box * @param array $content A complete array containing all values to put into the combo box * @param mixed $selectedValue The value we have to select into the combo * * @return mixed $output The combo box output */ function createComboBox($identifier, $name, $content, $selectedValue) { $output = ''; return $output; } }