-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgerenciar.php
69 lines (43 loc) · 1.44 KB
/
gerenciar.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
66
67
68
69
<?php
require_once 'config.php';
require 'functions.php';
require 'functions/gerenciar_materia_functions.php';
//se foi enviado algum dado do formulario
if(!empty($_POST['opcao'])) {
$opcao = addslashes($_POST['opcao']);
$ordem = addslashes($_POST['ordem']);
$nome = addslashes($_POST['nome']);
$qtd_pomodoros = addslashes($_POST['qtd_pomodoros']);
//topicos
$nome_topico_array = $_POST['nome_topico'];
$links_array = $_POST['links'];
switch($opcao) {
case 1:
addMateria($ordem, $qtd_pomodoros, $nome);
header('Location: '.URL.'gerenciar.php');
break;
case 2:
$id_materia = addslashes($_POST['id']);
editMateria($id_materia, $ordem, $qtd_pomodoros, $nome, $nome_topico_array, $links_array);
header('Location: '.URL.'gerenciar.php');
break;
}
}
$data = array();
if(!empty($_GET['add'])) {
$data['add'] = true;
} else if(!empty($_GET['edit'])) {
$data['materia'] = getMateria(addslashes($_GET['edit']));
$data['topicos'] = getTopicos(addslashes($_GET['edit']));
if(!empty($data['materia'])) {
$data['edit'] = true;
}
} else if(!empty($_GET['delete'])) {
$id_materia = addslashes($_GET['delete']);
deleteMateria($id_materia);
header('Location: '.URL.'gerenciar.php');
} else {
$data = array('data' => getListaMaterias());
}
loadTemplate('Gerenciar', 'gerenciar', $data);
?>