OSDN Git Service

不要viewファイル削除
authorCake <cake_67@users.sourceforge.jp>
Tue, 26 Jan 2010 01:15:02 +0000 (10:15 +0900)
committerCake <cake_67@users.sourceforge.jp>
Tue, 26 Jan 2010 01:15:02 +0000 (10:15 +0900)
app/views/profile_selects/view.ctp [deleted file]

diff --git a/app/views/profile_selects/view.ctp b/app/views/profile_selects/view.ctp
deleted file mode 100644 (file)
index 44bcda6..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-<div class="profileSelects view">
-<h2><?php  __('ProfileSelect');?></h2>
-       <dl><?php $i = 0; $class = ' class="altrow"';?>
-               <dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Id'); ?></dt>
-               <dd<?php if ($i++ % 2 == 0) echo $class;?>>
-                       <?php echo $profileSelect['ProfileSelect']['id']; ?>
-                       &nbsp;
-               </dd>
-               <dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Profile'); ?></dt>
-               <dd<?php if ($i++ % 2 == 0) echo $class;?>>
-                       <?php echo $html->link($profileSelect['Profile']['name'], array('controller' => 'profiles', 'action' => 'view', $profileSelect['Profile']['id'])); ?>
-                       &nbsp;
-               </dd>
-               <dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Value'); ?></dt>
-               <dd<?php if ($i++ % 2 == 0) echo $class;?>>
-                       <?php echo $profileSelect['ProfileSelect']['value']; ?>
-                       &nbsp;
-               </dd>
-               <dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Sort Order'); ?></dt>
-               <dd<?php if ($i++ % 2 == 0) echo $class;?>>
-                       <?php echo $profileSelect['ProfileSelect']['sort_order']; ?>
-                       &nbsp;
-               </dd>
-       </dl>
-</div>
-<div class="actions">
-       <ul>
-               <li><?php echo $html->link(__('Edit ProfileSelect', true), array('action' => 'edit', $profileSelect['ProfileSelect']['id'])); ?> </li>
-               <li><?php echo $html->link(__('Delete ProfileSelect', true), array('action' => 'delete', $profileSelect['ProfileSelect']['id']), null, sprintf(__('Are you sure you want to delete # %s?', true), $profileSelect['ProfileSelect']['id'])); ?> </li>
-               <li><?php echo $html->link(__('List ProfileSelects', true), array('action' => 'index')); ?> </li>
-               <li><?php echo $html->link(__('New ProfileSelect', true), array('action' => 'add')); ?> </li>
-               <li><?php echo $html->link(__('List Profiles', true), array('controller' => 'profiles', 'action' => 'index')); ?> </li>
-               <li><?php echo $html->link(__('New Profile', true), array('controller' => 'profiles', 'action' => 'add')); ?> </li>
-       </ul>
-</div>