<?php/** * This is the template for generating the index view for crud. * The following variables are available in this template: * - $ID: the primary key name * - $modelClass: the model class name * - $columns: a list of column schema objects */?><?phpecho"<?php\n";$label=$this->class2name($modelClass,true);$route=$modelClass.'/index';$route[0]=strtolower($route[0]);echo"\$this->breadcrumbs=array( '$label',);\n";?>$this->menu=array( array('label'=>'Create <?phpecho$modelClass;?>', 'url'=>array('create')), array('label'=>'Manage <?phpecho$modelClass;?>', 'url'=>array('admin')),);?><h1><?phpecho$label;?></h1><?phpecho"<?php";?> $this->widget('zii.widgets.CListView', array( 'dataProvider'=>$dataProvider, 'itemView'=>'_view',)); ?>