]> git.llucax.com Git - software/sercom-old.git/blob - src/T/DBO/Correccion.php
Nueva estructura de directorios de intentos. Uso de decorators.
[software/sercom-old.git] / src / T / DBO / Correccion.php
1 <?php // vim: set binary noeol et sts=4 sw=4 :
2
3 require_once 'DB.php';
4 require_once 'DB/DataObject.php';
5
6 class T_DBO_Correccion extends DB_DataObject
7 {
8     var $_database = 'taller';
9     var $__table = 'correccion';
10     var $id;
11     var $entrega_id;
12     var $inscripto_id;
13     var $intento_id;
14     var $docente_id;
15     var $nota;
16     var $observaciones;
17
18     /* Static get */
19     function staticGet($k, $v = NULL)
20     {
21         return DB_DataObject::staticGet('T_DBO_Correccion', $k, $v);
22     }
23
24     // now define your table structure.
25     // key is column name, value is type
26     function table()
27     {
28         return array(
29             'id'            => DB_DATAOBJECT_INT,
30             'entrega_id'    => DB_DATAOBJECT_INT,
31             'inscripto_id'  => DB_DATAOBJECT_INT,
32             'intento_id'    => DB_DATAOBJECT_INT,
33             'docente_id'    => DB_DATAOBJECT_INT,
34             'nota'          => DB_DATAOBJECT_INT,
35             'observaciones' => DB_DATAOBJECT_STR + DB_DATAOBJECT_TXT,
36         );
37     }
38
39     // now define the keys.
40     function keys()
41     {
42         return array('id');
43     }
44
45 }
46
47 ?>