<?php/** * This is the template for generating the update 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}=>array('view','id'=>\$model->{$ID}), 'Update',);\n";?>$this->menu=array( array('label'=>'List <?phpecho$modelClass;?>', 'url'=>array('index')), array('label'=>'Create <?phpecho$modelClass;?>', 'url'=>array('create')), array('label'=>'View <?phpecho$modelClass;?>', 'url'=>array('view', 'id'=>$model-><?phpecho$ID;?>)), array('label'=>'Manage <?phpecho$modelClass;?>', 'url'=>array('admin')),);?><h1>Update <?phpecho$modelClass." <?php echo \$model->{$ID}; ?>";?></h1><?phpecho"<?php echo \$this->renderPartial('_form', array('model'=>\$model)); ?>";?>