summaryrefslogtreecommitdiff
path: root/protected/views/standort/_buehne.php
blob: 0dc0870dc665b060a0e2459f530a76cfbf0e87c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<h6>Folgende Veranstaltungen finden <?php echo $data->name?> statt</h6>
<?php /*
$dataProvider=new CActiveDataProvider('Veranstaltung', 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'=>'/veranstaltung/_short',
		'sortableAttributes'=>array(
				'name'
		)
  ));?>