/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
templates
/
Admin
/
CauseNews
/
/var/www/vhosts/ihelp.ro/httpdocs/templates/Admin/CauseNews
mkdir
upload
Name
Size
Mode
Actions
add.php
1498
0644
edit
dl
rm
edit.php
1531
0644
edit
dl
rm
index.php
3503
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/templates/Admin/CauseNews/add.php
(1498B)
<!-- 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 __('News'); ?><small> <?php echo __('Add'); ?></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($causeNews); echo $this->Form->control('cause_id', ['options' => $causes]); echo $this->Form->control('name'); echo $this->Form->control('slug'); echo $this->Form->control('content'); echo $this->Form->control('is_published'); echo $this->Form->button(__('Submit')); echo $this->Form->end(); ?> </div> </div> </div> </div> </div> </section>
Save
cmd:
run