Gentics Portal.Node PHP API
 All Classes Namespaces Functions Variables Pages
_shoppingStep_3.php
1 <?php
2 /**
3  * Gentics Portal.Node PHP
4  * Author & Copyright (c) by Gentics Software GmbH
5  * sales@gentics.com
6  * http://www.gentics.com
7  * Licenses can be found in the LICENSE.txt file in the root-folder of this installation
8  * You must not use this software without a valid license agreement.
9  *
10  */
11 ?>
12 <?php $form = $this->beginWidget('CActiveForm', array('id'=>'order-form')); ?>
13 
14 <div class="row block">
15  <?php echo $form->labelEx($this->order,'shipping_info'); ?>
16 
17  <div class="row">
18  <?php echo $this->shipping_info; ?>
19  </div>
20  <?php echo $form->hiddenField($this->order,'shipping_info'); ?>
21 </div>
22 
23 <div class="row block">
24  <?php echo $form->labelEx($this->order,'payment_info'); ?>
25 
26  <div class="row">
27  <?php echo $this->payment_info; ?>
28  </div>
29  <?php echo $form->hiddenField($this->order,'payment_info'); ?>
30 </div>
31 
32  <?php echo CHtml::hiddenField('checksum',$checksum); ?>
33 
34 <input type="hidden" name="step" value="<?php echo $this->step ?>">
35 
36 <div class="row controls">
37  <?php echo CHtml::submitButton(ShoppingcartModule::t('Next')); ?>
38 </div>
39 
40 <?php $this->endWidget(); ?>