Subversion Repositories wpShopGermany4

Rev

Rev 8456 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8456 Rev 8477
Line 179... Line 179...
179
		</td>		
179
		</td>		
180
	</tr>
180
	</tr>
181
	<tr>
181
	<tr>
182
		<td style="padding:2px; line-height:100%; vertical-align:top;" class="col0"><?php echo __('Zahlungsart', 'wpsg'); ?>:
182
		<td style="padding:2px; line-height:100%; vertical-align:top;" class="col0"><?php echo __('Zahlungsart', 'wpsg'); ?>:
183
<br />		
183
<br />		
184
 
184
 
185
<?php
-
 
186
	
-
 
187
	require_once WPSG_PATH_LIB.'phpgirocode.class.php';
-
 
188
	
-
 
189
	if (isset($this->view['mod_prepayment']['subject']) && ($this->get_option('wpsg_mod_prepayment_qrcode') == true)) {
-
 
190
			
-
 
191
		if (in_array('kundenmail.phtml', $this->arTemplateStack)) {
-
 
192
 
-
 
193
		
-
 
194
			if ($this->get_option('wpsg_mod_prepayment_qrcode_country') == '0') {
-
 
195
 
-
 
196
				$qrcodes = array();
-
 
197
				$qrcodes = $this->callMod('wpsg_mod_prepayment', 'genQRCode', array($this->view['o_id'], $this->view['wpsg_mod_prepayment']['subject'], $this->view['basket']['sum']['preis_gesamt_brutto'], 3, PhpGirocode::OUTPUT_FILE, $this->get_option('wpsg_mod_prepayment_qrcode_country'), $this->view['basket']));
-
 
198
 
-
 
199
				foreach ($qrcodes as $qr) echo $qr;
-
 
200
 
-
 
201
			} else if ($this->get_option('wpsg_mod_prepayment_qrcode_country') == '1') { 
-
 
202
 
-
 
203
				echo $this->callMod('wpsg_mod_prepayment', 'genQRCode', array($this->view['o_id'], $this->view['mod_prepayment']['subject'], $this->view['basket']['sum']['preis_gesamt_brutto'], 3, PhpGirocode::OUTPUT_FILE, $this->get_option('wpsg_mod_prepayment_qrcode_country'), $this->view['basket']));
-
 
204
 
-
 
205
			} else if ($this->get_option('wpsg_mod_prepayment_qrcode_country') == '2') {
-
 
206
 
-
 
207
				echo $this->callMod('wpsg_mod_prepayment', 'genQRCode', array($this->view['o_id'], $this->view['mod_prepayment']['subject'], $this->view['basket']['sum']['preis_gesamt_brutto'], 3, PhpGirocode::OUTPUT_FILE, $this->get_option('wpsg_mod_prepayment_qrcode_country'), $this->view['basket']));
-
 
208
 
-
 
209
			}
-
 
210
 
-
 
211
		}
-
 
212
		
-
 
213
	}
-
 
214
	
-
 
215
?>
-
 
216
		
185
		
217
		
186
		
218
		</td>
187
		</td>
219
		<td style="padding:2px; line-height:100%; vertical-align:top;" class="col1">
188
		<td style="padding:2px; line-height:100%; vertical-align:top;" class="col1">
220
			<?php echo wpsg_hspc($this->arPayment[$this->view['basket']['checkout']['payment']]['name']); ?><br />
189
			<?php echo wpsg_hspc($this->arPayment[$this->view['basket']['checkout']['payment']]['name']); ?><br />
221
			<?php $this->callMods('mail_payment'); ?>
190
			<?php $this->callMods('mail_payment'); ?>
222
		</td>				
191
		</td>				
223
	</tr>
192
	</tr>
-
 
193
	<?php $this->callMods('mail_payment_after'); ?>
224
</table>
194
</table>
225
195