-
Notifications
You must be signed in to change notification settings - Fork 0
/
tarefas.php
65 lines (50 loc) · 1.58 KB
/
tarefas.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
require "config.php";
require "banco.php";
require "ajudantes.php";
require "classes/Tarefa.php";
require "classes/Anexo.php";
require "classes/RepositorioTarefas.php";
$repositorio_tarefas = new RepositorioTarefas($mysqli);
$exibir_tabela = true;
$tem_erros = false;
$erros_validacao = [];
$tarefa = new Tarefa();
$tarefa->setPrioridade(1);
if (tem_post()) {
if (array_key_exists('nome', $_POST) && strlen($_POST['nome']) > 0) {
$tarefa->setNome($_POST['nome']);
} else {
$tem_erros = true;
$erros_validacao['nome'] = 'O nome da tarefa é obrigatório!';
}
if (array_key_exists('descricao', $_POST)) {
$tarefa->setDescricao($_POST['descricao']);
} else {
$tarefa['descricao'] = '';
}
if (array_key_exists('prazo', $_POST) && strlen($_POST['prazo']) > 0) {
if (validar_data($_POST['prazo'])) {
$tarefa->setPrazo(traduz_data_br_para_objeto($_POST['prazo']));
} else {
$tem_erros = true;
$erros_validacao['prazo'] = 'O prazo não é uma data válida!';
}
}
$tarefa->setPrioridade($_POST['prioridade']);
if (array_key_exists('concluida', $_POST)) {
$tarefa->setConcluida(true);
} else {
$tarefa->setConcluida(false);
}
if (! $tem_erros) {
$repositorio_tarefas->salvar($tarefa);
if (isset($_POST['lembrete']) && $_POST['lembrete'] == '1') {
enviar_email($tarefa);
}
header('Location: tarefas.php');
die();
}
}
$tarefas = $repositorio_tarefas->buscar();
include "template.php";