/
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/edit.php
(1377B)
<!-- Content Header (Page header) --> <section class="content-header"> <div class="container-fluid"> <div class="row mb-2"> <div class="col-lg-12"> <h1 class="float-left"><?php echo $setting->name; ?><small> <?php echo __('Edit'); ?></small></h1> <ol class="breadcrumb float-right"> <li class="breadcrumb-item active" aria-current="page"> <a class="" href="<?php echo $this->Url->build(['action' => 'index']); ?>"><i class="fas fa-home"></i> <?php echo __('Home'); ?></a></li> </ol> </div> </div> </div><!-- /.container-fluid --> </section> <!-- Main content --> <section class="content"> <div class="container-fluid"> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-body"> <?php echo $this->Form->create($setting, ['role' => 'form']); ?> <?php echo $this->Form->control('name', ['disabled' => 'disabled']); echo $this->Form->control('value'); echo $this->Form->control('type', ['class' => 'select-with-search form-control', 'empty' => __('__Select Type'), 'options' => $types]); ?> <?php echo $this->Form->submit(__('Submit')); ?> <?php echo $this->Form->end(); ?> </div> </div> </div> </div> </div> <!-- /.row --> </section>
Save
cmd:
run