HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
view.php
Go to the documentation of this file.
1 <?php
2 /* @var $this AccountTypesLimitsController */
3 /* @var $model AccountTypesLimits */
4 
5 $this->breadcrumbs = array(
6  Yii::t('app', 'Accounts') => array('//account/account'),
7  Yii::t('app', 'Account Types Limits') => array('index'),
8  $model->AccountTypes->Type,
9 );
10 
11 $this->menu = array(
12  array('label' => Yii::t('app', 'List AccountTypesLimits'), 'url' => array('index')),
13  array('label' => Yii::t('app', 'Create AccountTypesLimits'), 'url' => array('create')),
14  array('label' => Yii::t('app', 'Update AccountTypesLimits'), 'url' => array('update', 'id' => $model->AccountTypeId)),
15  array('label' => Yii::t('app', 'Delete AccountTypesLimits'), 'url' => '#', 'linkOptions' => array('submit' => array('delete','id' => $model->LimitsKey),'confirm' => 'Are you sure you want to delete this item?')),
16  array('label' => Yii::t('app', 'Manage AccountTypesLimits'), 'url' => array('admin')),
17 );
18 ?>
19 
20 <h1><?php echo Yii::t('app', 'View AccountTypesLimits') ?> #<?php echo $model->AccountTypes->Type; ?></h1>
21 
22 <?php $this->widget('zii.widgets.CDetailView', array(
23  'data' => $model,
24  'attributes' => array(
25  'LimitsKey',
26  'LimitsList',
27  'AccountTypeId',
28  ),
29 )); ?>