File: /home/onlyfibr/public_html/sistema/_views/htm_imagens.enviadas.php
<?php include_once('base.php'); ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<title><?=$_titulo?> - <?=TITULO_VIEW?></title>
<link rel="icon" href="<?=FAVICON?>" type="image/x-icon" />
<link rel="stylesheet" href="<?=LAYOUT?>bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
<link rel="stylesheet" href="<?=LAYOUT?>plugins/datatables/dataTables.bootstrap.css">
<link rel="stylesheet" href="<?=LAYOUT?>dist/css/AdminLTE.min.css">
<link rel="stylesheet" href="<?=LAYOUT?>plugins/iCheck/square/blue.css">
<link rel="stylesheet" href="<?=LAYOUT?>dist/css/skins/_all-skins.min.css">
<link rel="stylesheet" href="<?=LAYOUT?>api/bootstrap-fileupload/bootstrap-fileupload.min.css" />
<?php include_once('css.php'); ?>
</head>
<body class="hold-transition skin-blue <?php if($_base['menu_fechado'] == 1){ echo "sidebar-collapse"; } ?> sidebar-mini">
<div class="wrapper">
<?php require_once('htm_modal.php'); ?>
<?php require_once('htm_topo.php'); ?>
<?php require_once('htm_menu.php'); ?>
<div class="content-wrapper">
<section class="content-header">
<h1>
<?=$_titulo?>
<small><?=$_subtitulo?></small>
</h1>
</section>
<!-- Main content -->
<section class="content">
<div class="row">
<div class="col-xs-12">
<div style="text-align:left; padding-bottom: 15px;">
<button type="button" class="btn btn-primary" onClick="modal('<?=$_base['objeto']?>criar', 'Enviar Nova');">Nova</button>
<button type="button" class="btn btn-default" onClick="window.location='<?=$_base['objeto']?>';">Voltar</button>
</div>
<!-- box -->
<div class="box">
<div class="box-body">
<table id="tabela1" class="table table-bordered table-striped">
<thead>
<tr>
<th></th>
<th>Imagem</th>
<th>Link</th>
</tr>
</thead>
<tbody>
<?php
foreach ($lista as $key => $value) {
$img = PASTA_CLIENTE.'imagens/'.$value['imagem'];
echo "
<tr>
<td><a href='#' onClick=\"confirma('".$_base['objeto']."apagar_enviada/codigo/".$value['codigo']."');\" >Remover</a></td>
<td>".$value['titulo']."</td>
<td>".$img."</td>
</tr>
";
}
?>
</tbody>
</table>
</div>
</div>
<!-- /.box -->
</div>
</div>
<!-- /.row -->
</section>
<!-- /.content -->
</div>
<!-- /.content-wrapper -->
<?php require_once('htm_rodape.php'); ?>
</div>
<!-- ./wrapper -->
<!-- jQuery 2.2.3 -->
<script src="<?=LAYOUT?>plugins/jQuery/jquery-2.2.3.min.js"></script>
<script src="<?=LAYOUT?>bootstrap/js/bootstrap.min.js"></script>
<script src="<?=LAYOUT?>plugins/datatables/jquery.dataTables.min.js"></script>
<script src="<?=LAYOUT?>plugins/datatables/dataTables.bootstrap.min.js"></script>
<script src="<?=LAYOUT?>plugins/slimScroll/jquery.slimscroll.min.js"></script>
<script src="<?=LAYOUT?>plugins/fastclick/fastclick.js"></script>
<script src="<?=LAYOUT?>plugins/iCheck/icheck.min.js"></script>
<script src="<?=LAYOUT?>api/bootstrap-fileupload/bootstrap-fileupload.min.js"></script>
<script src="<?=LAYOUT?>dist/js/app.min.js"></script>
<script src="<?=LAYOUT?>dist/js/demo.js"></script>
<!-- page script -->
<script>
$(function () {
$('#tabela1').DataTable({
"paging": true,
"lengthChange": true,
"searching": true,
"ordering": true,
"info": true,
"autoWidth": true
});
$('input').iCheck({
checkboxClass: 'icheckbox_square-blue',
radioClass: 'iradio_square-blue'
});
});
</script>
<script>function dominio(){ return '<?=DOMINIO?>'; }</script>
<script src="<?=LAYOUT?>js/funcoes.js"></script>
<script src="<?=LAYOUT?>js/ajuda.js"></script>
</body>
</html>