/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
templates
/
Admin
/
Banners
/
/var/www/vhosts/ihelp.ro/httpdocs/templates/Admin/Banners
mkdir
upload
Name
Size
Mode
Actions
add.php
1283
0644
edit
dl
rm
edit.php
1996
0644
edit
dl
rm
index.php
6697
0644
edit
dl
rm
view.php
1635
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/templates/Admin/Banners/view.php
(1635B)
<section class="content-header"> <div class="container-fluid"> <div class="row mb-2"> <div class="col-sm-12"> <h1 class="float-left"><?php echo __('Banner') . ' ' . $banner->id; ?></h1> <ol class="breadcrumb float-right"> <li class="breadcrumb-item active mr-3" aria-current="page"> <a class="" href="<?php echo $this->Url->build(['action' => 'index']); ?>"><i class="fas fa-home"></i> <?php echo __('Home'); ?></a></li> <li> <?= $this->Html->link( $this->Html->tag('i', '', ['class' => 'fas fa-trash']), ['action' => 'delete', $banner->id], [ 'confirm' => __('Are you sure you want to delete # {0}?', $banner->id), 'class' => 'btn btn-danger btn-xs', 'escape' => false ] ) ?> </li> </ol> </div> </div> </div> </section> <section class="content"> <div class="container-fluid"> <div class="row"> <div class="col-lg-12"> <div class="card"> <div class="card-body"> <?php if (!empty($banner->id)) : ?> <?php echo $this->cell('Admin/InfoBannerBlock', [$banner->id]); ?> <?php endif; ?> </div> </div> </div> </div> </div> </section>
Save
cmd:
run