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
2 /* @var $this CustomerController */
3 /* @var $dataProvider CActiveDataProvider */
4 
5 $this->breadcrumbs=array(
6  'Customers',
7 );
8 
9 $this->menu=array(
10  array('label'=>'<i class="icon-plus-sign"></i> Create Customer', 'url'=>array('create')),
11  array('label'=>'<i class="icon-edit"></i> Manage Customers', 'url'=>array('admin')),
12 );
13 ?>
14 
15 <div class="page-header">
16  <h1>List Customers</h1>
17 </div>
18 
19 <?php $this->widget('zii.widgets.CListView', array(
20  'dataProvider'=>$dataProvider,
21  'itemsCssClass'=>'',
22  'itemView'=>'_view',
23  'sortableAttributes'=>array(
24  'first_name'=>'First Name',
25  'last_name'=>'Last Name',
26  ),
27 )); ?>