blob: 24354f2368c5ca510a86cf6467a3b99d8139d987 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
$this->breadcrumbs=array(
'Veranstaltungen'=>array('index'),'Jetzt'
);
$this->menu=array(
array('label'=>'Alle Veranstaltungen', 'url'=>array('index')),
array('label'=>'Jetzt auf dem Fest', 'url'=>array('now')),
//array('label'=>'Veranstaltung suchen', 'url'=>array('search')),
);?>
<h3>Veranstaltungen heute um <?php echo date("H:i");?></h3>
<?php $this->widget('zii.widgets.CListView', array(
'dataProvider'=>$model->now(),
'itemView'=>'_short_all', // refers to the partial view named '_post'
'sortableAttributes'=>array(
'name',
/*'create_time'=>'Post Time',*/
),
));?>
|