Exemplo n.º 1
0
 function bug()
 {
     dbobj::dbobj("bugs", "bID");
     // SQL table `bugs', PK `bID'
     // this just calls the super-class's constructor
     // this tells the dbobj sutff to use the the
     // `bugs' table, with a primary key of `bID'.
 }
Exemplo n.º 2
0
 function user()
 {
     dbobj::dbobj("users", "uID");
 }
Exemplo n.º 3
0
 function rights()
 {
     dbobj::dbobj("user_rights", "userID");
 }
Exemplo n.º 4
0
Arquivo: bug.php Projeto: saji89/whube
 function bug()
 {
     dbobj::dbobj("bugs", "bID");
 }
Exemplo n.º 5
0
 function project()
 {
     dbobj::dbobj("projects", "pID");
 }
Exemplo n.º 6
0
 function register()
 {
     dbobj::dbobj("users", "uID");
 }
Exemplo n.º 7
0
 function bug_comment()
 {
     dbobj::dbobj("bug_comments", "cID");
     // SQL table `bug_comments', PK `cID'
 }