summaryrefslogtreecommitdiff
path: root/protected/views/standort/_standort.php
blob: 2c8ef4c357293b337ce6897cc0b8c26b9f7331a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<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,
		'dataProvider'=>Veranstaltung::model('Veranstaltung')->published()->thisYear()->parentStage($data->id)->sorted()->search(),
		'itemView'=>'/verein/_short',
		'sortableAttributes'=>array(
				'name'
		)
  ));?>