mirror of
https://github.com/brmlab/brmsklad.git
synced 2025-08-03 14:43:49 +02:00
Upgrade CakePHP from 2.2.5 to 2.9.5
This commit is contained in:
parent
5a580df460
commit
235a541597
793 changed files with 60746 additions and 23753 deletions
58
lib/Cake/Test/bake_compare/View/index.ctp
Normal file
58
lib/Cake/Test/bake_compare/View/index.ctp
Normal file
|
@ -0,0 +1,58 @@
|
|||
<div class="viewTaskComments index">
|
||||
<h2><?php echo __('View Task Comments'); ?></h2>
|
||||
<table cellpadding="0" cellspacing="0">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><?php echo $this->Paginator->sort('id'); ?></th>
|
||||
<th><?php echo $this->Paginator->sort('article_id'); ?></th>
|
||||
<th><?php echo $this->Paginator->sort('user_id'); ?></th>
|
||||
<th><?php echo $this->Paginator->sort('comment'); ?></th>
|
||||
<th><?php echo $this->Paginator->sort('published'); ?></th>
|
||||
<th><?php echo $this->Paginator->sort('created'); ?></th>
|
||||
<th><?php echo $this->Paginator->sort('updated'); ?></th>
|
||||
<th class="actions"><?php echo __('Actions'); ?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach ($viewTaskComments as $viewTaskComment): ?>
|
||||
<tr>
|
||||
<td><?php echo h($viewTaskComment['ViewTaskComment']['id']); ?> </td>
|
||||
<td>
|
||||
<?php echo $this->Html->link($viewTaskComment['Article']['title'], array('controller' => 'view_task_articles', 'action' => 'view', $viewTaskComment['Article']['id'])); ?>
|
||||
</td>
|
||||
<td><?php echo h($viewTaskComment['ViewTaskComment']['user_id']); ?> </td>
|
||||
<td><?php echo h($viewTaskComment['ViewTaskComment']['comment']); ?> </td>
|
||||
<td><?php echo h($viewTaskComment['ViewTaskComment']['published']); ?> </td>
|
||||
<td><?php echo h($viewTaskComment['ViewTaskComment']['created']); ?> </td>
|
||||
<td><?php echo h($viewTaskComment['ViewTaskComment']['updated']); ?> </td>
|
||||
<td class="actions">
|
||||
<?php echo $this->Html->link(__('View'), array('action' => 'view', $viewTaskComment['ViewTaskComment']['id'])); ?>
|
||||
<?php echo $this->Html->link(__('Edit'), array('action' => 'edit', $viewTaskComment['ViewTaskComment']['id'])); ?>
|
||||
<?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $viewTaskComment['ViewTaskComment']['id']), array('confirm' => __('Are you sure you want to delete # %s?', $viewTaskComment['ViewTaskComment']['id']))); ?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
</tbody>
|
||||
</table>
|
||||
<p>
|
||||
<?php
|
||||
echo $this->Paginator->counter(array(
|
||||
'format' => __('Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}')
|
||||
));
|
||||
?> </p>
|
||||
<div class="paging">
|
||||
<?php
|
||||
echo $this->Paginator->prev('< ' . __('previous'), array(), null, array('class' => 'prev disabled'));
|
||||
echo $this->Paginator->numbers(array('separator' => ''));
|
||||
echo $this->Paginator->next(__('next') . ' >', array(), null, array('class' => 'next disabled'));
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="actions">
|
||||
<h3><?php echo __('Actions'); ?></h3>
|
||||
<ul>
|
||||
<li><?php echo $this->Html->link(__('New View Task Comment'), array('action' => 'add')); ?></li>
|
||||
<li><?php echo $this->Html->link(__('List View Task Articles'), array('controller' => 'view_task_articles', 'action' => 'index')); ?> </li>
|
||||
<li><?php echo $this->Html->link(__('New Article'), array('controller' => 'view_task_articles', 'action' => 'add')); ?> </li>
|
||||
</ul>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue