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="1">';
13 $output .= '<b>'.$this->getLang('enter_values').'</b><br />';
14 $output .= $this->getLang('mandatory_fields').'<br /><br />';
16 $output .= '<table>';
20 $output .= '<tr>';
21 $output .= '<th><label for="title">'.$this->getLang('title').'</label></th>';
22 $output .= '<td><select size="1" name="onlineordering_title" id="onlineordering_title" tabindex="0…
24 $output .= '<option ';
25 if ($form_title == "") { $output .= 'selected'; }
26 $output .= ' value=""></option>';
27 $output .= '<option ';
29 if ($form_title == $this->getLang('field_title_ms') ) { $output .= 'selected'; }
30 $output .= ' value="'.$this->getLang('field_title_ms').'">'.$this->getLang('field_title_ms').'</opt…
31 $output .= '<option ';
33 if ($form_title == $this->getLang('field_title_mr') ) { $output .= 'selected'; }
34 $output .= ' value="'.$this->getLang('field_title_mr').'">'.$this->getLang('field_title_mr').'</opt…
35 $output .= '</select></td>';
36 $output .= '</tr>';
39 $output .= '<tr>';
40 $output .= '<th><label for="firstname">'.$this->getLang("firstname").'<i>*</i></label></th>';
41 $output .= '<td><input type="text" name="onlineordering_firstname" id="onlineordering_firstname" t…
42 $output .= '</tr>';
45 $output .= '<tr>';
46 $output .= '<th><label for="lastname">'.$this->getLang('lastname').'<i>*</i></label></th>';
47 $output .= '<td><input type="text" name="onlineordering_lastname" id="onlineordering_lastname" tab…
48 $output .= '</tr>';
51 $output .= '<tr>';
52 $output .= '<th><label for="street">'.$this->getLang('street').'<i>*</i></label></th>';
53 $output .= '<td><input type="text" name="onlineordering_street" id="onlineordering_street" tabinde…
54 $output .= '</tr>';
57 $output .= '<tr>';
58 $output .= '<th><label for="postcode">'.$this->getLang('postcode').'<i>*</i></label></th>';
59 $output .= '<td><input type="text" name="onlineordering_postcode" id="onlineordering_postcode" tab…
60 $output .= '</tr>';
63 $output .= '<tr>';
64 $output .= '<th><label for="place">'.$this->getLang('place').'<i>*</i></label></th>';
65 $output .= '<td><input type="text" name="onlineordering_place" id="onlineordering_place" tabindex=…
66 $output .= '</tr>';
69 $output .= '<tr>';
70 $output .= '<th><label for="country">'.$this->getLang('country').'<i>*</i></label></th>';
71 $output .= '<td><select size="1" name="onlineordering_country" id="onlineordering_country" tabinde…
83 $output .= '<option selected value="'.$countries[0].'">'.$countries[0].'</option>';
91 $output .= '<option ';
94 $output .= 'selected ';
96 $output .= 'value="'.$country.'">'.$country.'</option>';
100 $output .= '</select></td>';
101 $output .= '</tr>';
104 $output .= '<tr>';
105 $output .= '<th><label for="email">'.$this->getLang('email').'<i>*</i></label></th>';
106 $output .= '<td><input type="text" name="onlineordering_email" id="onlineordering_email" tabindex=…
107 $output .= '</tr>';
110 $output .= '<tr>';
111 $output .= '<th><label for="tickets">'.$this->getLang('nr_tickets').'<i>*</i></label></th>';
112 $output .= '<td><input type="text" name="onlineordering_tickets" id="onlineordering_tickes" tabinde…
120 $output .= ' ('.$this->getLang("ppu").': '.number_format($data['price'],2,",",":").' '.$data['curre…
121 $output .= '</tr>';
124 $output .= '<tr>';
125 $output .= '<th><label for="remarks">'.$this->getLang('remarks').'</label></th>';
126 $output .= '<td colspan="2"><textarea cols="40" rows="5" name="onlineordering_remarks" id="onlineor…
127 $output .= '</tr>';
129 $output .= '</table>';
132 $output .= '<br /><input type="submit" name="Submit" value="'.$this->getLang('confirm').'" tabindex…
133 $output .= '</form>';