<?php/** * This is the template for generating the 'view' 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";$nameColumn=$this->guessNameColumn($columns);$label=$this->class2name($modelClass,true);echo"\$this->breadcrumbs=array( '$label'=>array('index'),\$model->{$nameColumn},);\n";?>$this->menu=array( array('label'=>'List <?phpecho$modelClass;?>', 'url'=>array('index')), array('label'=>'Create <?phpecho$modelClass;?>', 'url'=>array('create')), array('label'=>'Update <?phpecho$modelClass;?>', 'url'=>array('update', 'id'=>$model-><?phpecho$ID;?>)), array('label'=>'Delete <?phpecho$modelClass;?>', 'url'=>'#', 'linkOptions'=>array('submit'=>array('delete','id'=>$model-><?phpecho$ID;?>),'confirm'=>Yii::t('zii','Are you sure you want to delete this item?'))), array('label'=>'Manage <?phpecho$modelClass;?>', 'url'=>array('admin')),);?><h1>View <?phpecho$modelClass." #<?php echo \$model->{$ID}; ?>";?></h1><?phpecho"<?php";?> $this->widget('zii.widgets.CDetailView', array( 'data'=>$model, 'attributes'=>array(<?phpforeach($columnsas$column)echo"\t\t'".$column->name."',\n";?> ),)); ?>