/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
templates
/
Carts
/
/var/www/vhosts/ihelp.ro/httpdocs/templates/Carts
mkdir
upload
Name
Size
Mode
Actions
add.php
867
0644
edit
dl
rm
edit.php
1124
0644
edit
dl
rm
index.php
2481
0644
edit
dl
rm
view.bkp.php
6011
0644
edit
dl
rm
view.php
9258
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/templates/Carts/index.php
(2481B)
<div class="carts index content"> <?php echo $this->Html->link(__('New Cart'), ['action' => 'add'], ['class' => 'button float-right']) ?> <h3><?php echo __('Carts'); ?></h3> <div class="table-responsive"> <table> <thead> <tr> <th><?php echo $this->Paginator->sort('id'); ?></th> <th><?php echo $this->Paginator->sort('uuid'); ?></th> <th><?php echo $this->Paginator->sort('user_id'); ?></th> <th><?php echo $this->Paginator->sort('modified'); ?></th> <th><?php echo $this->Paginator->sort('created'); ?></th> <th class="actions"><?php echo __('Actions'); ?></th> </tr> </thead> <tbody> <?php foreach ($carts as $cart) : ?> <tr> <td><?php echo $this->Number->format($cart->id); ?></td> <td><?php echo h($cart->uuid); ?></td> <td><?php echo $cart->has('user') ? $this->Html->link($cart->user->id, ['controller' => 'Users', 'action' => 'view', $cart->user->id]) : ''; ?></td> <td><?php echo h($cart->modified); ?></td> <td><?php echo h($cart->created); ?></td> <td class="actions"> <?php echo $this->Html->link(__('View'), ['action' => 'view', $cart->id]); ?> <?php echo $this->Html->link(__('Edit'), ['action' => 'edit', $cart->id]); ?> <?php echo $this->Form->postLink(__('Delete'), ['action' => 'delete', $cart->id], ['confirm' => __('Are you sure you want to delete # {0}?', $cart->id)]); ?> </td> </tr> <?php endforeach; ?> </tbody> </table> </div> <div class="paginator"> <ul class="pagination"> <?php echo $this->Paginator->first('<< ' . __('first')); ?> <?php echo $this->Paginator->prev('< ' . __('previous')); ?> <?php echo $this->Paginator->numbers(); ?> <?php echo $this->Paginator->next(__('next') . ' >'); ?> <?php echo $this->Paginator->last(__('last') . ' >>'); ?> </ul> <p><?php echo $this->Paginator->counter(__('Page {{page}} of {{pages}}, showing {{current}} record(s) out of {{count}} total')); ?></p> </div> </div>
Save
cmd:
run