bashgid/web/protected/views/article/view.php

41 lines
1.0 KiB
PHP
Raw Normal View History

2015-06-26 10:03:20 +00:00
<?php
/* @var $this ArticleController */
/* @var $model Article */
2015-07-02 08:37:15 +00:00
$this->breadcrumbs = array(
'Articles' => array('index'),
$model->name,
2015-06-26 10:03:20 +00:00
);
2015-07-02 08:37:15 +00:00
$this->menu = array(
array('label' => 'List Article', 'url' => array('index')),
array('label' => 'Create Article', 'url' => array('create')),
array('label' => 'Update Article', 'url' => array('update', 'id' => $model->id)),
array('label' => 'Delete Article', 'url' => '#', 'linkOptions' => array('submit' => array('delete', 'id' => $model->id), 'confirm' => 'Are you sure you want to delete this item?')),
array('label' => 'Manage Article', 'url' => array('admin')),
2015-06-26 10:03:20 +00:00
);
?>
<h1>View Article #<?php echo $model->id; ?></h1>
2015-07-02 08:37:15 +00:00
<?php
$this->widget('zii.widgets.CDetailView', array(
'data' => $model,
'attributes' => array(
'id',
'name',
'type',
'title',
'content',
'geoLat',
'geoLon',
'address',
'phone',
'externalLink',
'externalLinkText',
'dateTime',
'hidden',
),
));
?>