HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
index.php
Go to the documentation of this file.
1 <?php
6 ?>
7 <?php
8 echo "<?php\n";
9 $label = $this->pluralize($this->class2name($this->modelClass));
10 echo "\$this->breadcrumbs=array(
11  '$label',
12 );\n";
13 ?>
14 
15 $this->menu=array(
16 array('label'=>'Create <?php echo $this->modelClass; ?>','url'=>array('create')),
17 array('label'=>'Manage <?php echo $this->modelClass; ?>','url'=>array('admin')),
18 );
19 ?>
20 
21 <h1><?php echo $label; ?></h1>
22 
23 <?php echo "<?php"; ?> $this->widget('booster.widgets.TbListView',array(
24 'dataProvider'=>$dataProvider,
25 'itemView'=>'_view',
26 )); ?>