]> git.llucax.com Git - software/sercom-old.git/blob - src/T/DBO/Curso_docente.php
Nuevo comando para hacer la entrega final de una entrega: sc_deliver.
[software/sercom-old.git] / src / T / DBO / Curso_docente.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_Curso_docente extends DB_DataObject
7 {
8     var $_database = 'taller';
9     var $__table = 'curso_docente';
10     var $curso_id;
11     var $docente_id;
12
13     /* Static get */
14     function staticGet($k, $v = NULL)
15     {
16         return DB_DataObject::staticGet('T_DBO_Curso_docente', $k, $v);
17     }
18
19     // now define your table structure.
20     // key is column name, value is type
21     function table()
22     {
23         return array(
24             'curso_id'      => DB_DATAOBJECT_INT,
25             'docente_id'    => DB_DATAOBJECT_INT,
26         );
27     }
28
29     // now define the keys.
30     function keys()
31     {
32         return array('curso_id', 'docente_id');
33     }
34
35 }
36
37 ?>