Mini Shell

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

<?php include('header.php') ?>
<?php
$noticia = new Noticia();

$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['body']) > 7):

		$file_name = explode('.', $file['name']);
		$file_ext  = end($file_name);

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

		$_POST['image'] = $file_name;

		if($noticia->create($_POST)):
			move_uploaded_file($file['tmp_name'], DIR_IMG .'noticias/'. $file_name);
			$flash = Helper::flash('success');
		else:
			$flash = Helper::flash('error');
		endif;

	else:
		$flash = Helper::flash('error');
	endif;
endif;
?>
<div id="page">
	<div class="row">
		<div class="col lg-12">
			<h2>Notícias / 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="noticias.php" class="btn btn-primary">Voltar</a>
			<hr>
			<small>* todos os campos são obrigatórios</small>
			<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="body">Conteúdo:</label>
					<textarea name="body" class="form-control" cols="30" rows="10"></textarea>
				</div>
				<div class="form-group">
					<label for="image">Imagem: <small>(dimensões 650x271 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