Mini Shell
<?php include('header.php') ?>
<?php
$cliente = new Cliente();
$flash = array();
// CREATE
if(isset($_POST['action']) && $_POST['action'] == 'create'):
unset($_POST['action']);
$file = $_FILES['image'];
if($file['size'] > 1):
$file_name = explode('.', $file['name']);
$file_ext = end($file_name);
// new name
$file_name = md5(time()) .'.'. $file_ext;
$_POST['image'] = $file_name;
if($cliente->create($_POST)):
move_uploaded_file($file['tmp_name'], DIR_IMG .'clientes/'. $file_name);
$flash = Helper::flash('success');
else:
$flash = Helper::flash('error');
endif;
endif;
endif;
// DELETE
if(isset($_GET['action']) && $_GET['action'] == 'delete'):
if($cliente->delete($_GET['id'])):
$flash = Helper::flash('success');
else:
$flash = Helper::flash('error');
endif;
endif;
// READ
$clientes = $cliente->findAll();
?>
<div id="page">
<div class="row">
<div class="col lg-12">
<h2>Clientes</h2>
</div>
</div>
<div class="row">
<?php if($flash): ?>
<div class="col-lg-12">
<div class="alert alert-<?= $flash['class'] ?> alert-dismissible">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
<?= $flash['message'] ?>
</div>
</div>
<?php endif ?>
<div class="col-lg-12">
<h4>Novo</h4>
<form action="" method="post" enctype="multipart/form-data">
<div class="form-group">
<label for="image">Imagem: <small>(dimensões 200x200 px)</small></label>
<input type="file" name="image" class="form-control">
</div>
<div class="form-group">
<input type="hidden" name="action" value="create">
<button type="submit" class="btn btn-primary">Adicionar</button>
</div>
</form>
</div>
<div class="col-lg-12">
<?php foreach($clientes as $cliente): ?>
<div class="col-xs-6 col-md-3">
<div class="thumbnail">
<img src="<?= URL_IMG .'clientes/'. $cliente->image ?>" alt="">
<div class="caption">
<a href="clientes.php?action=delete&id=<?= $cliente->id ?>" class="btn btn-danger" onclick="return confirm('Deseja realmente deletar?')"><i class="glyphicon glyphicon-trash"></i> Remover</a>
</div>
</div>
</div>
<?php endforeach ?>
</div>
</div>
</div>
<?php include('footer.php') ?>
Zerion Mini Shell 1.0