summaryrefslogtreecommitdiff
path: root/protected/views
diff options
context:
space:
mode:
Diffstat (limited to 'protected/views')
-rw-r--r--protected/views/search/results.php4
-rw-r--r--protected/views/standort/index.php1
-rw-r--r--protected/views/standort/view.php4
-rw-r--r--protected/views/veranstaltung/index.php1
-rw-r--r--protected/views/veranstaltung/now.php2
-rw-r--r--protected/views/veranstaltung/view.php1
-rw-r--r--protected/views/verein/index.php1
-rw-r--r--protected/views/verein/view.php1
8 files changed, 11 insertions, 4 deletions
diff --git a/protected/views/search/results.php b/protected/views/search/results.php
index e72cc51..b2af731 100644
--- a/protected/views/search/results.php
+++ b/protected/views/search/results.php
@@ -2,7 +2,9 @@
$this->breadcrumbs=array(
'Search'=>array('/search'),
'Results',
-);?>
+);
+$this->pageTitle = 'Suchergebnisse für ' .CHtml::encode($search). ' - ' . Yii::app()->name;
+?>
<h3>Suchergebnisse für "<?php echo CHtml::encode($search) ?>"</h3>
<?php foreach ($results as $mod => $res) {?>
<?php $dataProvider = new CArrayDataProvider($res);
diff --git a/protected/views/standort/index.php b/protected/views/standort/index.php
index eabd7a6..f5eda10 100644
--- a/protected/views/standort/index.php
+++ b/protected/views/standort/index.php
@@ -2,6 +2,7 @@
$this->breadcrumbs=array(
'Standorte'
);
+$this->pageTitle = 'Standorte - ' . Yii::app()->name;
$this->menu=array(
diff --git a/protected/views/standort/view.php b/protected/views/standort/view.php
index df5a235..098f397 100644
--- a/protected/views/standort/view.php
+++ b/protected/views/standort/view.php
@@ -1,9 +1,9 @@
<?php
$this->breadcrumbs=array(
- 'Speis & Trank'=>array('index'),
+ 'Standort'=>array('index'),
$model->name,
);
-
+$this->pageTitle = $model->name . ' - ' . Yii::app()->name;
$this->menu=array(
array('label'=>'Standorte', 'url'=>array('index')),
diff --git a/protected/views/veranstaltung/index.php b/protected/views/veranstaltung/index.php
index 89c3894..c7e1145 100644
--- a/protected/views/veranstaltung/index.php
+++ b/protected/views/veranstaltung/index.php
@@ -2,6 +2,7 @@
$this->breadcrumbs=array(
'Veranstaltungen',
);
+$this->pageTitle = 'Veranstaltungen - ' . Yii::app()->name;
$this->menu=array(
array('label'=>'Jetzt auf dem Fest', 'url'=>array('now')),
diff --git a/protected/views/veranstaltung/now.php b/protected/views/veranstaltung/now.php
index 24354f2..c9cf1c3 100644
--- a/protected/views/veranstaltung/now.php
+++ b/protected/views/veranstaltung/now.php
@@ -2,7 +2,7 @@
$this->breadcrumbs=array(
'Veranstaltungen'=>array('index'),'Jetzt'
);
-
+$this->pageTitle = 'Jetzt auf dem Fest - ' . Yii::app()->name;
$this->menu=array(
array('label'=>'Alle Veranstaltungen', 'url'=>array('index')),
diff --git a/protected/views/veranstaltung/view.php b/protected/views/veranstaltung/view.php
index edf3ca2..2547f4f 100644
--- a/protected/views/veranstaltung/view.php
+++ b/protected/views/veranstaltung/view.php
@@ -3,6 +3,7 @@ $this->breadcrumbs=array(
'Veranstaltungen'=>array('index'),
$model->titel,
);
+$this->pageTitle = $model->titel . ' - ' . Yii::app()->name;
$this->menu=array(
array('label'=>'Alle Veranstaltungen', 'url'=>array('index')),
diff --git a/protected/views/verein/index.php b/protected/views/verein/index.php
index bfb20a8..3f3a807 100644
--- a/protected/views/verein/index.php
+++ b/protected/views/verein/index.php
@@ -2,6 +2,7 @@
$this->breadcrumbs=array(
'Vereine',
);
+$this->pageTitle = 'Vereine anzeigen - ' . Yii::app()->name;
/*
$this->menu=array(
array('label' => 'Verein suchen', 'url' => array('search')),
diff --git a/protected/views/verein/view.php b/protected/views/verein/view.php
index 2e0d0e5..3bb770f 100644
--- a/protected/views/verein/view.php
+++ b/protected/views/verein/view.php
@@ -3,6 +3,7 @@ $this->breadcrumbs=array(
'Vereine'=>array('index'),
$model->name,
);
+$this->pageTitle = $model->name . ' - ' . Yii::app()->name;
/*$this->menu=array(
array('label'=>'Vereine verwalten', 'url'=>array('index')),