forked from gplanchat/wootook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
notes.php
178 lines (142 loc) · 5.76 KB
/
notes.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<?php
/**
* This file is part of Wootook
*
* @license http://www.gnu.org/licenses/gpl-3.0.txt
* @see http://www.wootook.com/
*
* Copyright (c) 2009-Present, Wootook Support Team <http://www.xnova-ng.org>
* All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* --> NOTICE <--
* This file is part of the core development branch, changing its contents will
* make you unable to use the automatic updates manager. Please refer to the
* documentation for further information about customizing Wootook.
*
*/
define('INSIDE' , true);
define('INSTALL' , false);
require_once dirname(__FILE__) .'/application/bootstrap.php';
$dpath = (!$user["dpath"]) ? DEFAULT_SKINPATH : $user["dpath"];
$a = $_GET['a'];
$n = intval($_GET['n']);
$lang['Please_Wait'] = "Patientez...";
//lenguaje
includeLang('notes');
$lang['PHP_SELF'] = 'notes.'.PHPEXT;
if($_POST["s"] == 1 || $_POST["s"] == 2){//Edicion y agregar notas
$time = time();
$priority = $_POST["u"];
$title = ($_POST["title"]) ? mysql_escape_string(strip_tags($_POST["title"])) : $lang['NoTitle'];
$text = ($_POST["text"]) ? mysql_escape_string(strip_tags($_POST["text"])) : $lang['NoText'];
if($_POST["s"] ==1){
doquery("INSERT INTO {{table}} SET owner={$user['id']}, time=$time, priority=$priority, title='$title', text='$text'","notes");
message($lang['NoteAdded'], $lang['Please_Wait'],'notes.'.PHPEXT,"3");
}elseif($_POST["s"] == 2){
/*
pequeño query para averiguar si la nota que se edita es del propio jugador
*/
$id = intval($_POST["n"]);
$note_query = doquery("SELECT * FROM {{table}} WHERE id=$id AND owner=".$user["id"],"notes");
if(!$note_query){ error($lang['notpossiblethisway'],$lang['Notes']); }
doquery("UPDATE {{table}} SET time=$time, priority=$priority, title='$title', text='$text' WHERE id=$id","notes");
message($lang['NoteUpdated'], $lang['Please_Wait'], 'notes.'.PHPEXT, "3");
}
}
elseif($_POST){//Borrar
foreach($_POST as $a => $b){
/*
Los checkbox marcados tienen la palabra delmes seguido del id.
Y cada array contiene el valor "y" para compro
*/
if(preg_match("/delmes/i",$a) && $b == "y"){
$id = str_replace("delmes","",$a);
$note_query = doquery("SELECT * FROM {{table}} WHERE id=$id AND owner={$user['id']}","notes");
//comprobamos,
if($note_query){
$deleted++;
doquery("DELETE FROM {{table}} WHERE `id`=$id;","notes");// y borramos
}
}
}
if($deleted){
$mes = ($deleted == 1) ? $lang['NoteDeleted'] : $lang['NoteDeleteds'];
message($mes,$lang['Please_Wait'],'notes.'.PHPEXT,"3");
}else{header("Location: notes.". PHPEXT);}
}else{//sin post...
if($_GET["a"] == 1){//crear una nueva nota.
/*
Formulario para crear una nueva nota.
*/
$parse = $lang;
$parse['c_Options'] = "<option value=2 selected=selected>{$lang['Important']}</option>
<option value=1>{$lang['Normal']}</option>
<option value=0>{$lang['Unimportant']}</option>";
$parse['cntChars'] = '0';
$parse['TITLE'] = $lang['Createnote'];
$parse['text'] = '';
$parse['title'] = '';
$parse['inputs'] = '<input type=hidden name=s value=1>';
$page .= parsetemplate(gettemplate('notes_form'), $parse);
display($page,$lang['Notes'],false);
}
elseif($_GET["a"] == 2){//editar
/*
Formulario donde se puestra la nota y se puede editar.
*/
$note = doquery("SELECT * FROM {{table}} WHERE owner={$user['id']} AND id=$n",'notes',true);
if(!$note){ message($lang['notpossiblethisway'],$lang['Error']); }
$cntChars = strlen($note['text']);
$SELECTED[$note['priority']] = ' selected="selected"';
$parse = array_merge($note,$lang);
$parse['c_Options'] = "<option value=2{$SELECTED[2]}>{$lang['Important']}</option>
<option value=1{$SELECTED[1]}>{$lang['Normal']}</option>
<option value=0{$SELECTED[0]}>{$lang['Unimportant']}</option>";
$parse['cntChars'] = $cntChars;
$parse['TITLE'] = $lang['Editnote'];
$parse['inputs'] = '<input type=hidden name=s value=2><input type=hidden name=n value='.$note['id'].'>';
$page .= parsetemplate(gettemplate('notes_form'), $parse);
display($page,$lang['Notes'],false);
}
else{//default
$notes_query = doquery("SELECT * FROM {{table}} WHERE owner={$user['id']} ORDER BY time DESC",'notes');
//Loop para crear la lista de notas que el jugador tiene
$count = 0;
$parse=$lang;
while ($note = $notes_query->fetch(PDO::FETCH_BOTH)){
$count++;
//Colorea el titulo dependiendo de la prioridad
if($note["priority"] == 0){ $parse['NOTE_COLOR'] = "lime";}//Importante
elseif($note["priority"] == 1){ $parse['NOTE_COLOR'] = "yellow";}//Normal
elseif($note["priority"] == 2){ $parse['NOTE_COLOR'] = "red";}//Sin importancia
//fragmento de template
$parse['NOTE_ID'] = $note['id'];
$parse['NOTE_TIME'] = date("Y-m-d h:i:s",$note["time"]);
$parse['NOTE_TITLE'] = $note['title'];
$parse['NOTE_TEXT'] = strlen($note['text']);
$list .= parsetemplate(gettemplate('notes_body_entry'), $parse);
}
if($count == 0){
$list .= "<tr><th colspan=4>{$lang['ThereIsNoNote']}</th>\n";
}
$parse = $lang;
$parse['BODY_LIST'] = $list;
//fragmento de template
$page .= parsetemplate(gettemplate('notes_body'), $parse);
display($page,$lang['Notes'],false);
}
}
?>