Lines Matching refs:output

4 $output = "";  variable
7 $output .= '<a name="form"></a>';
10 $output .= '<form name="onlineordering_form" id="onlineordering_form" method="post" action="?'.$_SE…
11 $output .= '<input type="hidden" name="onlineordering_stage" id="onlineordering_stage" value="'.$fo…
12 $output .= '<input type="hidden" name="onlineordering_title" id="onlineordering_title" value="'.$fo…
13 $output .= '<input type="hidden" name="onlineordering_firstname" id="onlineordering_firstname" valu…
14 $output .= '<input type="hidden" name="onlineordering_lastname" id="onlineordering_lastname" value=…
15 $output .= '<input type="hidden" name="onlineordering_street" id="onlineordering_street" value="'.$…
16 $output .= '<input type="hidden" name="onlineordering_postcode" id="onlineordering_postcode" value=…
17 $output .= '<input type="hidden" name="onlineordering_place" id="onlineordering_place" value="'.$fo…
18 $output .= '<input type="hidden" name="onlineordering_country" id="onlineordering_country" value="'…
19 $output .= '<input type="hidden" name="onlineordering_email" id="onlineordering_email" value="'.$fo…
20 $output .= '<input type="hidden" name="onlineordering_tickets" id="onlineordering_tickets" value="'…
21 $output .= '<input type="hidden" name="onlineordering_remarks" id="onlineordering_remarks" value="'…
23 $output .= '<b>'.$this->getLang('confirm_values').'</b><br /><br />';
25 $output .= '<table>';
29 $output .= '<tr>';
30 $output .= '<th><label for="title">'.$this->getLang('title').'</label></th>';
31 $output .= '<td>'.$form['title'].'</td>';
32 $output .= '</tr>';
36 $output .= '<tr>';
37 $output .= '<th><label for="firstname">'.$this->getLang("firstname").'</label></th>';
38 $output .= '<td>'.$form['firstname'].'</td>';
39 $output .= '</tr>';
42 $output .= '<tr>';
43 $output .= '<th><label for="lastname">'.$this->getLang('lastname').'</label></th>';
44 $output .= '<td>'.$form['lastname'].'</td>';
45 $output .= '</tr>';
48 $output .= '<tr>';
49 $output .= '<th><label for="street">'.$this->getLang('street').'</label></th>';
50 $output .= '<td>'.$form['street'].'</td>';
51 $output .= '</tr>';
54 $output .= '<tr>';
55 $output .= '<th><label for="postcode">'.$this->getLang('postcode').'</label></th>';
56 $output .= '<td>'.$form['postcode'].'</td>';
57 $output .= '</tr>';
60 $output .= '<tr>';
61 $output .= '<th><label for="place">'.$this->getLang('place').'</label></th>';
62 $output .= '<td>'.$form['place'].'</td>';
63 $output .= '</tr>';
66 $output .= '<tr>';
67 $output .= '<th><label for="country">'.$this->getLang('country').'</label></th>';
68 $output .= '<td>'.$form['country'].'</td>';
69 $output .= '</tr>';
72 $output .= '<tr>';
73 $output .= '<th><label for="email">'.$this->getLang('email').'</label></th>';
74 $output .= '<td>'.$form['email'].'</td>';
75 $output .= '</tr>';
78 $output .= '<tr>';
79 $output .= '<th><label for="price">'.$this->getLang('price').'</label></th>';
87 $output .= '<td>'.number_format(($price*$form['tickets']) + $porto,2,',','.').' '.$data['currency'];
88 $output .= ' ('.$form['tickets'].' x '.number_format($price,2,',','.').' '.$data['currency'].' + '.…
90 $output .= '</tr>';
93 $output .= '<tr>';
94 $output .= '<th><label for="remarks">'.$this->getLang('remarks').'</label></th>';
95 $output .= '<td>'.$form['remarks'].'</td>';
96 $output .= '</tr>';
98 $output .= '</table>';
101 $output .= '<br /><input type="submit" name="Submit" value="'.$this->getLang('send').'" tabindex="1…
102 $output .= '</form>';
104 $output .= '<form name="onlineordering_form" id="onlineordering_form" method="post" action="?'.$_SE…
105 $output .= '<input type="hidden" name="onlineordering_stage" id="onlineordering_stage" value="0">';
106 $output .= '<input type="hidden" name="onlineordering_title" id="onlineordering_title" value="'.$fo…
107 $output .= '<input type="hidden" name="onlineordering_firstname" id="onlineordering_firstname" valu…
108 $output .= '<input type="hidden" name="onlineordering_lastname" id="onlineordering_lastname" value=…
109 $output .= '<input type="hidden" name="onlineordering_street" id="onlineordering_street" value="'.$…
110 $output .= '<input type="hidden" name="onlineordering_postcode" id="onlineordering_postcode" value=…
111 $output .= '<input type="hidden" name="onlineordering_place" id="onlineordering_place" value="'.$fo…
112 $output .= '<input type="hidden" name="onlineordering_country" id="onlineordering_country" value="'…
113 $output .= '<input type="hidden" name="onlineordering_email" id="onlineordering_email" value="'.$fo…
114 $output .= '<input type="hidden" name="onlineordering_tickets" id="onlineordering_tickets" value="'…
115 $output .= '<input type="hidden" name="onlineordering_remarks" id="onlineordering_remarks" value="'…
116 $output .= '<input type="submit" name="Submit" value="'.$this->getLang('correct').'" tabindex="10" …
117 $output .= '</form>';