HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
create.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'=>array('index'),
12  'Create',
13 );\n";
14 ?>
15 
16 $this->menu=array(
17 array('label'=>'List <?php echo $this->modelClass; ?>','url'=>array('index')),
18 array('label'=>'Manage <?php echo $this->modelClass; ?>','url'=>array('admin')),
19 );
20 ?>
21 
22 <h1>Create <?php echo $this->modelClass; ?></h1>
23 
24 <?php echo "<?php echo \$this->renderPartial('_form', array('model'=>\$model)); ?>"; ?>