summaryrefslogtreecommitdiff
path: root/protected/views/standort/_standort.php
blob: 280a351ccae726ac5e7982303dea6ff59984e11f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<h6>Folgende Vereine finden sich <?php echo $data->name?></h6>
<?php 
$dataProvider=new CActiveDataProvider('Verein', array(
		'criteria'=>array(
				'condition'=>'standort_id='.$data->id." and published = 1",
		),
		'pagination'=>array(
				'pageSize'=>20,
		),
		
));
$this->widget('zii.widgets.CListView', array(
		'dataProvider'=>$dataProvider,
		'pager'=>array('footer'=>'', 'header'=>''),
		'itemView'=>'/verein/_short',
		'sortableAttributes'=>array(
				'name'
		)
  ));
  
  ?>