OSDN Git Service

first commit
[exmascake/exmascake.git] / app / View / Dbs / edit.ctp
1 <div class="dbs form">
2 <?php echo $this->Form->create('Db'); ?>
3         <fieldset>
4                 <legend><?php echo DB.EDIT; ?></legend>
5         <?php
6                 echo $this->Form->input('id');
7                 echo $this->Form->input('db_name',array('label'=>DB_NAME));
8                 echo $this->Form->input('db_host',array('label'=>DB_HOST));
9                 echo $this->Form->input('db_port',array('label'=>DB_PORT));
10                 echo $this->Form->input('db_user',array('label'=>DB_USER));
11                 echo $this->Form->input('db_password',array('label'=>DB_PASSWORD));
12         ?>
13         </fieldset>
14 <?php echo $this->Form->end(SUBMIT); ?>
15 </div>
16 <div class="actions">
17         <h3><?php echo MENU; ?></h3>
18         <ul>
19                 <li><?php echo $this->Html->link(DB.LOOKUP, array('action' => 'index')); ?></li>
20         </ul>
21 </div>