pictcode / app / View / Images / add.ctp @ dd7691f4
履歴 | 表示 | アノテート | ダウンロード (567 Bytes)
| 1 | 
      <div class="form">  | 
  
|---|---|
| 2 | 
      <?php  echo $this->Form->create('Image',array('type'=>'file')); ?> 
     | 
  
| 3 | 
      <fieldset>  | 
  
| 4 | 
      		<legend><?php  echo __('Add Image'); ?></legend>
     | 
  
| 5 | 
      		<?php echo $this->Form->input('name'); ?>
     | 
  
| 6 | 
      		<?php echo $this->Form->input('image',array('type'=>'file','label'=>'画像')); ?>
     | 
  
| 7 | 
      </fieldset>  | 
  
| 8 | 
      <?php  echo $this->Form->end(__('Submit')); ?>
     | 
  
| 9 | 
      </div>  | 
  
| 10 | 
      <?php  echo $this->element('admin_action');?>
     | 
  
| 11 | 
      <div class="actions">  | 
  
| 12 | 
      	<h3><?php  echo __('Actions'); ?></h3>
     | 
  
| 13 | 
      <ul>  | 
  
| 14 | 
       | 
  
| 15 | 
      		<li><?php  echo $this->Html->link(__('List Images'), array('action' => 'index')); ?></li>
     | 
  
| 16 | 
      </ul>  | 
  
| 17 | 
      </div>  |