cmc-sales/php/app/views/pages/view.ctp

39 lines
1.5 KiB
PHP
Executable file

<div class="pages view">
<h2><?php __('Page');?></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 $page['Page']['id']; ?>
&nbsp;
</dd>
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Page Number'); ?></dt>
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
<?php echo $page['Page']['page_number']; ?>
&nbsp;
</dd>
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('ContentPage'); ?></dt>
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
<?php echo $page['Page']['contentPage']; ?>
&nbsp;
</dd>
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Content'); ?></dt>
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
<?php echo $page['Page']['content']; ?>
&nbsp;
</dd>
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Document Id'); ?></dt>
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
<?php echo $page['Page']['document_id']; ?>
&nbsp;
</dd>
</dl>
</div>
<div class="actions">
<ul>
<li><?php echo $html->link(__('Edit Page', true), array('action' => 'edit', $page['Page']['id'])); ?> </li>
<li><?php echo $html->link(__('Delete Page', true), array('action' => 'delete', $page['Page']['id']), null, sprintf(__('Are you sure you want to delete # %s?', true), $page['Page']['id'])); ?> </li>
<li><?php echo $html->link(__('List Pages', true), array('action' => 'index')); ?> </li>
<li><?php echo $html->link(__('New Page', true), array('action' => 'add')); ?> </li>
</ul>
</div>