summaryrefslogtreecommitdiff
path: root/protected/views/standort/_buehne.php
blob: f20e9a92be6ad99dd809d2236aba6a8476550eba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<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',
		'pager'=>array('footer'=>'', 'header'=>''),
		'sortableAttributes'=>array(
				'name'
		)
  ));?>