clsModulesNotaExame.inc.php
8.11 KB
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
<?php
/**
* i-Educar - Sistema de gestão escolar
*
* Copyright (C) 2006 Prefeitura Municipal de Itajaí
* <ctima@itajai.sc.gov.br>
*
* Este programa é software livre; você pode redistribuí-lo e/ou modificá-lo
* sob os termos da Licença Pública Geral GNU conforme publicada pela Free
* Software Foundation; tanto a versão 2 da Licença, como (a seu critério)
* qualquer versão posterior.
*
* Este programa é distribuído na expectativa de que seja útil, porém, SEM
* NENHUMA GARANTIA; nem mesmo a garantia implícita de COMERCIABILIDADE OU
* ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. Consulte a Licença Pública Geral
* do GNU para mais detalhes.
*
* Você deve ter recebido uma cópia da Licença Pública Geral do GNU junto
* com este programa; se não, escreva para a Free Software Foundation, Inc., no
* endereço 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
*
* @author Lucas Schmoeller da Silva <lucas@portabilis.com.br>
* @category i-Educar
* @license @@license@@
* @package Module
* @since ?
* @version $Id$
*/
require_once( "include/pmieducar/geral.inc.php" );
/**
* clsModulesNotaExame class.
*
* @author Lucas Schmoeller da Silva <lucas@portabilis.com.br>
* @category i-Educar
* @license @@license@@
* @package Module
* @since ?
* @version @@package_version@@
*/
class clsModulesNotaExame
{
var $ref_cod_matricula;
var $ref_cod_componente_curricular;
var $nota_exame;
// propriedades padrao
/**
* Armazena o total de resultados obtidos na ultima chamada ao metodo lista
*
* @var int
*/
var $_total;
/**
* Nome do schema
*
* @var string
*/
var $_schema;
/**
* Nome da tabela
*
* @var string
*/
var $_tabela;
/**
* Lista separada por virgula, com os campos que devem ser selecionados na proxima chamado ao metodo lista
*
* @var string
*/
var $_campos_lista;
/**
* Lista com todos os campos da tabela separados por virgula, padrao para selecao no metodo lista
*
* @var string
*/
var $_todos_campos;
/**
* Valor que define a quantidade de registros a ser retornada pelo metodo lista
*
* @var int
*/
var $_limite_quantidade;
/**
* Define o valor de offset no retorno dos registros no metodo lista
*
* @var int
*/
var $_limite_offset;
/**
* Define o campo padrao para ser usado como padrao de ordenacao no metodo lista
*
* @var string
*/
var $_campo_order_by;
/**
* Construtor (PHP 4)
*
* @return object
*/
function clsModulesNotaExame($ref_cod_matricula = NULL , $ref_cod_componente_curricular = NULL, $nota_exame = NULL)
{
$db = new clsBanco();
$this->_schema = "modules.";
$this->_tabela = "{$this->_schema}nota_exame";
$this->_campos_lista = $this->_todos_campos = "ref_cod_matricula, ref_cod_componente_curricular, nota_exame";
if( is_numeric( $ref_cod_matricula ) )
{
$this->ref_cod_matricula = $ref_cod_matricula;
}
if( is_numeric( $ref_cod_componente_curricular ) )
{
$this->ref_cod_componente_curricular = $ref_cod_componente_curricular;
}
if( is_numeric( $nota_exame ) )
{
$this->nota_exame = $nota_exame;
}
}
/**
* Cria um novo registro
*
* @return bool
*/
function cadastra()
{
if( is_numeric( $this->ref_cod_matricula ) && is_numeric( $this->ref_cod_componente_curricular ) && is_numeric( $this->nota_exame ) )
{
$db = new clsBanco();
$campos = "";
$valores = "";
$gruda = "";
if( is_numeric( $this->ref_cod_matricula ) )
{
$campos .= "{$gruda}ref_cod_matricula";
$valores .= "{$gruda}'{$this->ref_cod_matricula}'";
$gruda = ", ";
}
if( is_numeric( $this->ref_cod_componente_curricular ) )
{
$campos .= "{$gruda}ref_cod_componente_curricular";
$valores .= "{$gruda}'{$this->ref_cod_componente_curricular}'";
$gruda = ", ";
}
if( is_numeric( $this->nota_exame ) )
{
$campos .= "{$gruda}nota_exame";
$valores .= "{$gruda}'{$this->nota_exame}'";
$gruda = ", ";
}
$db->Consulta( "INSERT INTO {$this->_tabela} ( $campos ) VALUES( $valores )" );
return $this->ref_cod_matricula;
}
return false;
}
/**
* Edita os dados de um registro
*
* @return bool
*/
function edita()
{
if( is_numeric( $this->ref_cod_matricula ) && is_numeric( $this->ref_cod_componente_curricular ) && is_numeric( $this->nota_exame ) )
{
$db = new clsBanco();
$set = "";
if( is_numeric( $this->nota_exame ) )
{
$set .= "{$gruda}nota_exame = '{$this->nota_exame}'";
$gruda = ", ";
}
if( $set )
{
$db->Consulta( "UPDATE {$this->_tabela} SET $set WHERE ref_cod_matricula = '{$this->ref_cod_matricula}' AND ref_cod_componente_curricular = '{$this->ref_cod_componente_curricular}'" );
return true;
}
}
return false;
}
/**
* Retorna um array com os dados de um registro
*
* @return array
*/
function detalhe()
{
if( is_numeric( $this->ref_cod_matricula ) && is_numeric( $this->ref_cod_componente_curricular ) )
{
$db = new clsBanco();
$db->Consulta( "SELECT {$this->_todos_campos} FROM {$this->_tabela} WHERE ref_cod_matricula = '{$this->ref_cod_matricula}' AND ref_cod_componente_curricular = '{$this->ref_cod_componente_curricular}'" );
$db->ProximoRegistro();
return $db->Tupla();
}
return false;
}
/**
* Retorna um array com os dados de um registro
*
* @return array
*/
function existe()
{
if( is_numeric( $this->ref_cod_matricula ) && is_numeric( $this->ref_cod_componente_curricular ) )
{
$db = new clsBanco();
$db->Consulta( "SELECT 1 FROM {$this->_tabela} WHERE ref_cod_matricula = '{$this->ref_cod_matricula}' AND ref_cod_componente_curricular = '{$this->ref_cod_componente_curricular}'" );
$db->ProximoRegistro();
return $db->Tupla();
}
return false;
}
/**
* Exclui um registro
*
* @return bool
*/
function excluir()
{
if( is_numeric( $this->ref_cod_matricula ) && is_numeric( $this->ref_cod_componente_curricular ) )
{
$db = new clsBanco();
$db->Consulta( "DELETE FROM {$this->_tabela} WHERE ref_cod_matricula = '{$this->ref_cod_matricula}' AND ref_cod_componente_curricular = '{$this->ref_cod_componente_curricular}'" );
return true;
}
return false;
}
/**
* Define quais campos da tabela serao selecionados na invocacao do metodo lista
*
* @return null
*/
function setCamposLista( $str_campos )
{
$this->_campos_lista = $str_campos;
}
/**
* Define que o metodo Lista devera retornoar todos os campos da tabela
*
* @return null
*/
function resetCamposLista()
{
$this->_campos_lista = $this->_todos_campos;
}
/**
* Define limites de retorno para o metodo lista
*
* @return null
*/
function setLimite( $intLimiteQtd, $intLimiteOffset = null )
{
$this->_limite_quantidade = $intLimiteQtd;
$this->_limite_offset = $intLimiteOffset;
}
/**
* Retorna a string com o trecho da query resposavel pelo Limite de registros
*
* @return string
*/
function getLimite()
{
if( is_numeric( $this->_limite_quantidade ) )
{
$retorno = " LIMIT {$this->_limite_quantidade}";
if( is_numeric( $this->_limite_offset ) )
{
$retorno .= " OFFSET {$this->_limite_offset} ";
}
return $retorno;
}
return "";
}
/**
* Define campo para ser utilizado como ordenacao no metolo lista
*
* @return null
*/
function setOrderby( $strNomeCampo )
{
// limpa a string de possiveis erros (delete, insert, etc)
//$strNomeCampo = eregi_replace();
if( is_string( $strNomeCampo ) && $strNomeCampo )
{
$this->_campo_order_by = $strNomeCampo;
}
}
/**
* Retorna a string com o trecho da query resposavel pela Ordenacao dos registros
*
* @return string
*/
function getOrderby()
{
if( is_string( $this->_campo_order_by ) )
{
return " ORDER BY {$this->_campo_order_by} ";
}
return "";
}
}
?>