summaryrefslogtreecommitdiff
path: root/protected/views/veranstaltung/_form.php
diff options
context:
space:
mode:
Diffstat (limited to 'protected/views/veranstaltung/_form.php')
-rw-r--r--protected/views/veranstaltung/_form.php10
1 files changed, 8 insertions, 2 deletions
diff --git a/protected/views/veranstaltung/_form.php b/protected/views/veranstaltung/_form.php
index 833c693..5f5b6bf 100644
--- a/protected/views/veranstaltung/_form.php
+++ b/protected/views/veranstaltung/_form.php
@@ -63,7 +63,13 @@
<div class="row">
<?php echo $form->labelEx($model,'beschreibung'); ?>
- <?php $this->widget('application.extensions.tinymce.ETinyMce',
+ <?php $this->widget('application.extensions.extckeditor.ExtCKEditor', array(
+ 'model'=>$model,
+ 'attribute'=>'beschreibung', // model atribute
+ 'language'=>'DE', /* default lang, If not declared the language of the project will be used in case of using multiple languages */
+ 'editorTemplate'=>'basic', // Toolbar settings (full, basic, advanced)
+ ));
+ /*$this->widget('application.extensions.tinymce.ETinyMce',
array(
'name'=>'beschreibung',
"value"=>$model->beschreibung,
@@ -73,7 +79,7 @@
"height"=>"200px",
)
);
- ?>
+ */?>
<?php echo $form->error($model,'beschreibung'); ?>
</div>