/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
templates
/
Admin
/
Settings
/
/var/www/vhosts/ihelp.ro/httpdocs/templates/Admin/Settings
mkdir
upload
Name
Size
Mode
Actions
add.php
1342
0644
edit
dl
rm
edit.php
1377
0644
edit
dl
rm
index.php
2409
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/templates/Admin/Settings/index.php
(2409B)
<!-- Content Header (Page header) --> <section class="content-header"> <div class="container-fluid"> <div class="row mb-2"> <div class="col-lg-12"> <h1> <?php echo __('Settings'); ?> <div class="float-right"><?php echo $this->Html->link(__('New'), ['action' => 'add'], ['class' => 'btn btn-success btn-xs']); ?></div> </h1> </div> </div> </div><!-- /.container-fluid --> </section> <!-- Main content --> <section class="content"> <div class="container-fluid"> <div class="row"> <div class="col-lg-12"> <div class="card"> <div class="card-body table-responsive p-0"> <table class="table table-hover text-nowrap"> <thead> <tr> <th scope="col"><?php echo $this->Paginator->sort('id'); ?></th> <th scope="col"><?php echo $this->Paginator->sort('name'); ?></th> <th scope="col"><?php echo $this->Paginator->sort('value'); ?></th> <th scope="col"><?php echo $this->Paginator->sort('type') ?></th> <th scope="col" class="actions text-center"><?php echo __('Actions');?></th> </tr> </thead> <tbody> <?php foreach ($settings as $setting) : ?> <tr> <td><?php echo $this->Number->format($setting->id); ?></td> <td><?php echo h($setting->name); ?></td> <td><?php echo h($setting->value); ?></td> <td><?php echo h($setting->type); ?></td> <td class="actions text-center"> <?php echo $this->Html->link(__('Edit'), ['action' => 'edit', $setting->id], ['class' => 'btn btn-warning btn-xs']); ?> <?php echo $this->Form->postLink(__('Delete'), ['action' => 'delete', $setting->id], ['confirm' => __('Are you sure you want to delete # {0}?', $setting->id), 'class' => 'btn btn-danger btn-xs']); ?> </td> </tr> <?php endforeach; ?> </tbody> </table> </div> <!-- /.box-body --> </div> <!-- /.box --> </div> </div> <div class="row"> <div class="col-sm-12"> <?php echo $this->element('paginator'); ?> </div> </div> </div> </section>
Save
cmd:
run