Webform Bestätigungsseite
Eingetragen von miesel (148)
am 02.04.2009 - 09:04 Uhr in
am 02.04.2009 - 09:04 Uhr in
Hallo Drupaler,
ich habe ein Webform erstellt und möchte nun nach dem Abschicken des Formular eine Bestätigungsseite mit der Übersicht der ausgefüllten Felder.
Habe auf Drupal.org und hier im Forum schon geschaut leider fnktionieren die PHP Scripte nicht oder weiß jemand was ich eintragen muss in das Feld:
"Bestätigungsnachricht oder Weiterleitungs-URL: "
oder gibt es irgendwelche Tokens/Variablen
Vielen vielen Dank
- Anmelden oder Registrieren um Kommentare zu schreiben
Ich hoffe dir hilft das
am 02.04.2009 - 10:41 Uhr
Ich hoffe dir hilft das weiter:
Ist aus der readme von Webform
Theme the confirmation page
---------------------------
After a user submits a webform, they are directed to a page that contains the
confirmation message set in the webform node settings (assuming the form doesn't
direct to a complete URL). These instructions let you customize the format of
the confirmation page of a single node or all webforms on your site.
- Open your template.php file located in your theme's directory.
- Add the following lines of php code:
function phptemplate_webform_confirmation_[node id here]($node, $sid) {
return _phptemplate_callback('webform-confirmation-[node id here]', array('node' => $node, 'sid' => $sid));
}
- Create a new file in your theme's directory named
"webform-confirmation-[node id here].tpl.php", once again replacing [node id here]
with the node ID of the webform.
- Open the new file and change it's contents to the your liking. Here's an
example that inserts some additional HTML around the confirmation message and
gives links to edit the submission.
<?php
/* Begin sample webform confirmation page */
?>
<*div class="confirmation-message">
<?php
print check_markup($node->webform['confirmation'], $node->format, FALSE);
?>
<*/div>
<*ul>
<*li><*a href="<*?php print url('node/'. $node->nid . '/submission/'. $sid)?>">View your submission
<*li><*a href="<*?php print url('node/'. $node->nid . '/submission/'. $sid .'/edit')?>">Edit your submission
<*/ul>
<?php
/* End sample webform confirmation page */
?>
- You can make this apply to all webforms by using this function in template.php
function phptemplate_webform_confirmation($node, $sid) {
return _phptemplate_callback('webform-confirmation', array('node' => $node, 'sid' => $sid));
}
- Note that the [node id here] has simply been removed to make it work with all
webform nodes.
Teste
am 02.04.2009 - 11:44 Uhr
Danek teste ich sofort und gebe Feedback
... close the world, open the next ...
--
Alex Misgin
www.misgin.com
--
... close the world, open the next ...
--
Alex Misgin
www.misgin.com
--
... webform Mail
am 05.05.2009 - 07:10 Uhr
ich versuche gerade die zu versendenede Mail anzupassen, das klappt soweit auch alles ganz toll bis auf die Datumsangaben da bekomme ich nur ein "Array" ausgespuckt
Name: Alex Msigin
Funktion: Drupalfuzzi
Geburtsdatum: Array
Firma: misgin
Arbeitsgruppe: misgin
der Code dafür
Geburtsdatum:
<?php
echo $form_values['submitted_tree']['geburtsdatum'];
?>
Da ich nicht programmierer bin würde ich gerne wissen wie ich das Datum angezeigt bekomme, durch
<?php
print_r($form_values)
?>
bekomme ich alle variablen ausgespuckt
[submitted_tree] => Array
(
[name] => ghteh
[vorname] => ehzt
[funktion] => egr
[geburtsdatum] => Array
(
[0] => 4
[1] => 4
[2] => 1927
)
Wie komme ich denn nun an die richtige Anzeige des Geburtstages hin?
Bin für jede Hilfe dankbar ...
... close the world, open the next ...
--
Alex Misgin
www.misgin.com
--
... close the world, open the next ...
--
Alex Misgin
www.misgin.com
--
Array
am 05.05.2009 - 07:31 Uhr
Moin.
[geburtsdatum] => Array
(
[0] => 4
[1] => 4
[2] => 1927
)
Wie komme ich denn nun an die richtige Anzeige des Geburtstages hin?
Wie Du siehst, enthält das Array alle Informationen, die Du benötigst.
<?php
$bday = $form_values['submitted_tree']['geburtsdatum'];
print sprintf('%02d', $bday[0]) .'.'. sprintf('%02d', $bday[1]) .'.'. $bday[2]; // 04.04.1927
print $bday[2] .'-'. sprintf('%02d', $bday[1]) .'-'. sprintf('%02d', $bday[0]); // 1927-04-04
?>
Ganz einfach.
hth,
Stefan
--
2 Personen mit Halbwissen sind schlimmer als Einer, der gar nichts weiss.
Tipp: Beachte die Verhaltensregeln des DrupalCenter.
Wow ... Danke
am 05.05.2009 - 09:09 Uhr
Ja cool, vielen dank das heißt also das ich den Array erstmal reinziehe und dann aufgesplittet wieder ausspucke ...
Weiss denn auch jemand wie ich ne Bestätigungsseite damit machen kann, also der User füllt den Kram aus und bekommt alle Werte nach dem abschicken präsentiert zum ausdrucken ;) daran beisse ich mir gerade seit Tagen die Zähne aus ... hab mehrere snippets vom Drupal.org ausprobiert irgendwie funktionieren die aber nicht richtig (drupal 5 webform)
... close the world, open the next ...
--
Alex Misgin
www.misgin.com
--
... close the world, open the next ...
--
Alex Misgin
www.misgin.com
--