📍 /home/diasdiamonds/public_html/adminarea/src/Template/Reports
📝 Editando: logs.ctp
<?php include "top.php"; ?> <div class="content-wrapper"> <section class="content-header sty-one"> <h1>products <small><?php echo $this->Paginator->counter('{{count}} record(s)');?> </small></h1> <ol class="breadcrumb"> <li><?php echo $this->Html->link('<i class="fa fa-home"></i>Home', array('controller'=>'Products','action'=>'products'),array('escape' => false));?></li> <li><i class="fa fa-angle-right"></i> products</li> </ol> </section> <section class="content"> <div class="panel-heading"> <div class="filter"><i class="fa fa-filter"></i> Filter</div> <div class="filterbar-panel"> <?php echo $this->Form->create('meetings', ['url' => ['controller' => 'reports', 'action' => 'logs'],'method' => 'get']);?> <div class="row"> <div class="col-md-3 col-sm-12"><?php echo $this->Form->control('receiveremail', array('class'=>'form-control','label'=>'RECEIVER EMAIL','default'=>$this->request->getQuery('receiveremail')));?></div> <div class="col-md-3 col-sm-12"><?php echo $this->Form->control('subject', array('class'=>'form-control','label'=>'SUBJECT','default'=>$this->request->getQuery('subject'),'empty'=>true,'options'=>array('Newsletter subscription success'=>'Newsletter','Reset your SuiFab password'=>'Forgot Password','Welcome to SuiFab'=>'Registration','SuiFab Order Confirmation'=>'order')));?></div> <div class="col-md-3 col-sm-12"><?php echo $this->Form->control('datefrom', array('id'=>'createdate','class'=>'form-control','label'=>'create date','value'=>$this->request->getQuery('datefrom')));?></div> <div class="col-md-3 col-sm-12"><?php echo $this->Form->control('dateto', array('id'=>'modifieddate','class'=>'form-control','label'=>'modified date','value'=>$this->request->getQuery('dateto')));?></div> </div> <div class="row"> <div class="col-md-3 col-sm-12"><?php echo $this->Form->submit('filter',array( 'div' => false,'name' => 'filter','class'=>'filterbtn'));?></div> </div> <?php echo $this->Form->end();?> </div> </div> <table class="table"> <tr> <th>ID</th> <th>receiveremail</th> <th>SUBJECT</th> <th>DATE</th> <th>VIIEW</th> </tr> <?php $i=1; foreach($querypages as $value) { ?> <tr> <td><?php echo $i++;?></td> <td><?php echo $value['receiveremail'];?></td> <td><?php echo $value['subject'];?></td> <td><?php echo date_format($value['date'],'Y-m-d');?> <?php echo $value['time'];?></td> <td><?php echo $this->Html->link('<i class="fa fa-search-plus"></i>',array('controller'=>'reports','action'=>'logsview',$value['id']),array('target'=>'_blank','class'=>'btn','escape'=>false));?></td> </tr> <?php } ?> </table> <div class="pagination-panel"> <div class="container"> <div class="row"> <div class="col-lg-12 col-md-12"> <div class="pagination"> <?php echo $this->Paginator->first('First',array('currentTag'=>'a','escape' => false));?> <?php echo $this->Paginator->numbers();?> <?php echo $this->Paginator->last('Last', array('currentTag' => 'a', 'escape' => false));?> </div> </div> </div> </div> </div> </section> </div> <?php include "footer.php"; ?>
[ Cancelar ]
Nome
Permissões
Ações
[ .. Voltar ]
📄 bestsellers.ctp
0644
[ EDITAR/VER ]
📄 logs.ctp
0644
[ EDITAR/VER ]
📄 logsview.ctp
0644
[ EDITAR/VER ]
📄 viewed.ctp
0644
[ EDITAR/VER ]