diff options
Diffstat (limited to 'protected/views/myVeranstaltung')
| -rw-r--r-- | protected/views/myVeranstaltung/_form.php | 60 | ||||
| -rw-r--r-- | protected/views/myVeranstaltung/_search.php | 54 | ||||
| -rw-r--r-- | protected/views/myVeranstaltung/_view.php | 38 | ||||
| -rw-r--r-- | protected/views/myVeranstaltung/admin.php | 59 | ||||
| -rw-r--r-- | protected/views/myVeranstaltung/create.php | 15 | ||||
| -rw-r--r-- | protected/views/myVeranstaltung/index.php | 17 | ||||
| -rw-r--r-- | protected/views/myVeranstaltung/update.php | 18 | ||||
| -rw-r--r-- | protected/views/myVeranstaltung/view.php | 30 |
8 files changed, 291 insertions, 0 deletions
diff --git a/protected/views/myVeranstaltung/_form.php b/protected/views/myVeranstaltung/_form.php new file mode 100644 index 0000000..588048d --- /dev/null +++ b/protected/views/myVeranstaltung/_form.php @@ -0,0 +1,60 @@ +<div class="form"> + +<?php $form=$this->beginWidget('CActiveForm', array( + 'id'=>'veranstaltung-form', + 'enableAjaxValidation'=>false, +)); ?> + + <p class="note">Fields with <span class="required">*</span> are required.</p> + + <?php echo $form->errorSummary($model); ?> + + <div class="row"> + <?php echo $form->labelEx($model,'verein_id'); ?> + <?php echo $form->textField($model,'verein_id'); ?> + <?php echo $form->error($model,'verein_id'); ?> + </div> + + <div class="row"> + <?php echo $form->labelEx($model,'titel'); ?> + <?php echo $form->textField($model,'titel',array('size'=>60,'maxlength'=>100)); ?> + <?php echo $form->error($model,'titel'); ?> + </div> + + <div class="row"> + <?php echo $form->labelEx($model,'startzeit'); ?> + <?php echo $form->textField($model,'startzeit'); ?> + <?php echo $form->error($model,'startzeit'); ?> + </div> + + <div class="row"> + <?php echo $form->labelEx($model,'endzeit'); ?> + <?php echo $form->textField($model,'endzeit'); ?> + <?php echo $form->error($model,'endzeit'); ?> + </div> + + <div class="row"> + <?php echo $form->labelEx($model,'beschreibung'); ?> + <?php echo $form->textArea($model,'beschreibung',array('rows'=>6, 'cols'=>50)); ?> + <?php echo $form->error($model,'beschreibung'); ?> + </div> + + <div class="row"> + <?php echo $form->labelEx($model,'standort_id'); ?> + <?php echo $form->textField($model,'standort_id'); ?> + <?php echo $form->error($model,'standort_id'); ?> + </div> + + <div class="row"> + <?php echo $form->labelEx($model,'published'); ?> + <?php echo $form->textField($model,'published'); ?> + <?php echo $form->error($model,'published'); ?> + </div> + + <div class="row buttons"> + <?php echo CHtml::submitButton($model->isNewRecord ? 'Create' : 'Save'); ?> + </div> + +<?php $this->endWidget(); ?> + +</div><!-- form -->
\ No newline at end of file diff --git a/protected/views/myVeranstaltung/_search.php b/protected/views/myVeranstaltung/_search.php new file mode 100644 index 0000000..b4ec2ed --- /dev/null +++ b/protected/views/myVeranstaltung/_search.php @@ -0,0 +1,54 @@ +<div class="wide form"> + +<?php $form=$this->beginWidget('CActiveForm', array( + 'action'=>Yii::app()->createUrl($this->route), + 'method'=>'get', +)); ?> + + <div class="row"> + <?php echo $form->label($model,'id'); ?> + <?php echo $form->textField($model,'id'); ?> + </div> + + <div class="row"> + <?php echo $form->label($model,'verein_id'); ?> + <?php echo $form->textField($model,'verein_id'); ?> + </div> + + <div class="row"> + <?php echo $form->label($model,'titel'); ?> + <?php echo $form->textField($model,'titel',array('size'=>60,'maxlength'=>100)); ?> + </div> + + <div class="row"> + <?php echo $form->label($model,'startzeit'); ?> + <?php echo $form->textField($model,'startzeit'); ?> + </div> + + <div class="row"> + <?php echo $form->label($model,'endzeit'); ?> + <?php echo $form->textField($model,'endzeit'); ?> + </div> + + <div class="row"> + <?php echo $form->label($model,'beschreibung'); ?> + <?php echo $form->textArea($model,'beschreibung',array('rows'=>6, 'cols'=>50)); ?> + </div> + + <div class="row"> + <?php echo $form->label($model,'standort_id'); ?> + <?php echo $form->textField($model,'standort_id'); ?> + </div> + + <div class="row"> + <?php echo $form->label($model,'published'); ?> + <?php echo $form->textField($model,'published'); ?> + </div> + + <div class="row buttons"> + <?php echo CHtml::submitButton('Search'); ?> + </div> + +<?php $this->endWidget(); ?> + +</div><!-- search-form -->
\ No newline at end of file diff --git a/protected/views/myVeranstaltung/_view.php b/protected/views/myVeranstaltung/_view.php new file mode 100644 index 0000000..daa818a --- /dev/null +++ b/protected/views/myVeranstaltung/_view.php @@ -0,0 +1,38 @@ +<div class="view"> + + <b><?php echo CHtml::encode($data->getAttributeLabel('id')); ?>:</b> + <?php echo CHtml::link(CHtml::encode($data->id), array('view', 'id'=>$data->id)); ?> + <br /> + + <b><?php echo CHtml::encode($data->getAttributeLabel('verein_id')); ?>:</b> + <?php echo CHtml::encode($data->verein_id); ?> + <br /> + + <b><?php echo CHtml::encode($data->getAttributeLabel('titel')); ?>:</b> + <?php echo CHtml::encode($data->titel); ?> + <br /> + + <b><?php echo CHtml::encode($data->getAttributeLabel('startzeit')); ?>:</b> + <?php echo CHtml::encode($data->startzeit); ?> + <br /> + + <b><?php echo CHtml::encode($data->getAttributeLabel('endzeit')); ?>:</b> + <?php echo CHtml::encode($data->endzeit); ?> + <br /> + + <b><?php echo CHtml::encode($data->getAttributeLabel('beschreibung')); ?>:</b> + <?php echo CHtml::encode($data->beschreibung); ?> + <br /> + + <b><?php echo CHtml::encode($data->getAttributeLabel('standort_id')); ?>:</b> + <?php echo CHtml::encode($data->standort_id); ?> + <br /> + + <?php /* + <b><?php echo CHtml::encode($data->getAttributeLabel('published')); ?>:</b> + <?php echo CHtml::encode($data->published); ?> + <br /> + + */ ?> + +</div>
\ No newline at end of file diff --git a/protected/views/myVeranstaltung/admin.php b/protected/views/myVeranstaltung/admin.php new file mode 100644 index 0000000..6e2a1a3 --- /dev/null +++ b/protected/views/myVeranstaltung/admin.php @@ -0,0 +1,59 @@ +<?php +$this->breadcrumbs=array( + 'Veranstaltungs'=>array('index'), + 'Manage', +); + +$this->menu=array( + array('label'=>'List Veranstaltung', 'url'=>array('index')), + array('label'=>'Create Veranstaltung', 'url'=>array('create')), +); + +Yii::app()->clientScript->registerScript('search', " +$('.search-button').click(function(){ + $('.search-form').toggle(); + return false; +}); +$('.search-form form').submit(function(){ + $.fn.yiiGridView.update('veranstaltung-grid', { + data: $(this).serialize() + }); + return false; +}); +"); +?> + +<h1>Manage Veranstaltungs</h1> + +<p> +You may optionally enter a comparison operator (<b><</b>, <b><=</b>, <b>></b>, <b>>=</b>, <b><></b> +or <b>=</b>) at the beginning of each of your search values to specify how the comparison should be done. +</p> + +<?php echo CHtml::link('Advanced Search','#',array('class'=>'search-button')); ?> +<div class="search-form" style="display:none"> +<?php $this->renderPartial('_search',array( + 'model'=>$model, +)); ?> +</div><!-- search-form --> + +<?php $this->widget('zii.widgets.grid.CGridView', array( + 'id'=>'veranstaltung-grid', + 'dataProvider'=>$model->search(), + 'filter'=>$model, + 'columns'=>array( + 'id', + 'verein_id', + 'titel', + 'startzeit', + 'endzeit', + 'beschreibung', + /* + 'standort_id', + 'published', + */ + array( + 'class'=>'CButtonColumn', + ), + ), +)); ?> diff --git a/protected/views/myVeranstaltung/create.php b/protected/views/myVeranstaltung/create.php new file mode 100644 index 0000000..3c7af00 --- /dev/null +++ b/protected/views/myVeranstaltung/create.php @@ -0,0 +1,15 @@ +<?php +$this->breadcrumbs=array( + 'Veranstaltungs'=>array('index'), + 'Create', +); + +$this->menu=array( + array('label'=>'List Veranstaltung', 'url'=>array('index')), + array('label'=>'Manage Veranstaltung', 'url'=>array('admin')), +); +?> + +<h1>Create Veranstaltung</h1> + +<?php echo $this->renderPartial('_form', array('model'=>$model)); ?>
\ No newline at end of file diff --git a/protected/views/myVeranstaltung/index.php b/protected/views/myVeranstaltung/index.php new file mode 100644 index 0000000..6ff8a23 --- /dev/null +++ b/protected/views/myVeranstaltung/index.php @@ -0,0 +1,17 @@ +<?php +$this->breadcrumbs=array( + 'Veranstaltungs', +); + +$this->menu=array( + array('label'=>'Create Veranstaltung', 'url'=>array('create')), + array('label'=>'Manage Veranstaltung', 'url'=>array('admin')), +); +?> + +<h1>Veranstaltungs</h1> + +<?php $this->widget('zii.widgets.CListView', array( + 'dataProvider'=>$dataProvider, + 'itemView'=>'_view', +)); ?> diff --git a/protected/views/myVeranstaltung/update.php b/protected/views/myVeranstaltung/update.php new file mode 100644 index 0000000..cfeb467 --- /dev/null +++ b/protected/views/myVeranstaltung/update.php @@ -0,0 +1,18 @@ +<?php +$this->breadcrumbs=array( + 'Veranstaltungs'=>array('index'), + $model->id=>array('view','id'=>$model->id), + 'Update', +); + +$this->menu=array( + array('label'=>'List Veranstaltung', 'url'=>array('index')), + array('label'=>'Create Veranstaltung', 'url'=>array('create')), + array('label'=>'View Veranstaltung', 'url'=>array('view', 'id'=>$model->id)), + array('label'=>'Manage Veranstaltung', 'url'=>array('admin')), +); +?> + +<h1>Update Veranstaltung <?php echo $model->id; ?></h1> + +<?php echo $this->renderPartial('_form', array('model'=>$model)); ?>
\ No newline at end of file diff --git a/protected/views/myVeranstaltung/view.php b/protected/views/myVeranstaltung/view.php new file mode 100644 index 0000000..12ac308 --- /dev/null +++ b/protected/views/myVeranstaltung/view.php @@ -0,0 +1,30 @@ +<?php +$this->breadcrumbs=array( + 'Veranstaltungs'=>array('index'), + $model->id, +); + +$this->menu=array( + array('label'=>'List Veranstaltung', 'url'=>array('index')), + array('label'=>'Create Veranstaltung', 'url'=>array('create')), + array('label'=>'Update Veranstaltung', 'url'=>array('update', 'id'=>$model->id)), + array('label'=>'Delete Veranstaltung', 'url'=>'#', 'linkOptions'=>array('submit'=>array('delete','id'=>$model->id),'confirm'=>'Are you sure you want to delete this item?')), + array('label'=>'Manage Veranstaltung', 'url'=>array('admin')), +); +?> + +<h1>View Veranstaltung #<?php echo $model->id; ?></h1> + +<?php $this->widget('zii.widgets.CDetailView', array( + 'data'=>$model, + 'attributes'=>array( + 'id', + 'verein_id', + 'titel', + 'startzeit', + 'endzeit', + 'beschreibung', + 'standort_id', + 'published', + ), +)); ?> |
