29 lines
874 B
PHP
29 lines
874 B
PHP
<?php
|
|
/* @var $this PhotoAlbumRelationController */
|
|
/* @var $model PhotoAlbumRelation */
|
|
|
|
$this->breadcrumbs=array(
|
|
'Photo Album Relations'=>array('index'),
|
|
$model->name,
|
|
);
|
|
|
|
$this->menu=array(
|
|
array('label'=>'List PhotoAlbumRelation', 'url'=>array('index')),
|
|
array('label'=>'Create PhotoAlbumRelation', 'url'=>array('create')),
|
|
array('label'=>'Update PhotoAlbumRelation', 'url'=>array('update', 'id'=>$model->id)),
|
|
array('label'=>'Delete PhotoAlbumRelation', 'url'=>'#', 'linkOptions'=>array('submit'=>array('delete','id'=>$model->id),'confirm'=>'Are you sure you want to delete this item?')),
|
|
array('label'=>'Manage PhotoAlbumRelation', 'url'=>array('admin')),
|
|
);
|
|
?>
|
|
|
|
<h1>View PhotoAlbumRelation #<?php echo $model->id; ?></h1>
|
|
|
|
<?php $this->widget('zii.widgets.CDetailView', array(
|
|
'data'=>$model,
|
|
'attributes'=>array(
|
|
'id',
|
|
'imageUrl',
|
|
'name',
|
|
),
|
|
)); ?>
|