blob: 05d2b570a16d7a9280e27447898b3fe8d289ca85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
$this->breadcrumbs=array(
'Search'=>array('/search'),
'Results',
);?>
<h3>Suchergebnisse für "<?php echo CHtml::encode($search) ?>"</h3>
<?php foreach ($results as $mod => $res) {?>
<h5><?php echo $mod ?></h5>
<?php
$dataProvider = new CArrayDataProvider($res);
$this->widget('zii.widgets.CListView', array(
'dataProvider'=>$dataProvider,
'itemView'=>'/'.lcfirst($mod).'/_short', // refers to the partial view named '_post'
));?>
<?php }?>
|