Gentics Portal.Node PHP API
 All Classes Namespaces Functions Variables Pages
updateStep1.php
1 <?php
2 /**
3  *
4  */
5 Yii::app()->clientScript->registerCssFile(Yii::app()->getModule('updates')->getAssetsUrl() . '/css/styles.css');
6 ?>
7 <div class="updates-release-update-step1">
8  <?php $form = $this->beginWidget('CActiveForm', array(
9  'id' => 'update-form',
10  'htmlOptions' => array('enctype' => 'multipart/form-data')
11  )
12 )?>
13 
14  <?php echo $form->errorSummary($model)?>
15 
16  <div class="row">
17  <?php echo $form->labelEx($model, 'file')?>
18  <?php echo $form->fileField($model, 'file')?>
19  </div>
20 
21  <div class="row">
22  <?php echo CHtml::submitButton(UpdatesModule::t('Upload'))?>
23  </div>
24 
25  <?php $this->endWidget()?>
26 
27 </div>