Example #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'.
 }
Example #2
0
 function user()
 {
     dbobj::dbobj("users", "uID");
 }
Example #3
0
 function rights()
 {
     dbobj::dbobj("user_rights", "userID");
 }
Example #4
0
File: bug.php Project: saji89/whube
 function bug()
 {
     dbobj::dbobj("bugs", "bID");
 }
Example #5
0
 function project()
 {
     dbobj::dbobj("projects", "pID");
 }
Example #6
0
 function register()
 {
     dbobj::dbobj("users", "uID");
 }
Example #7
0
 function bug_comment()
 {
     dbobj::dbobj("bug_comments", "cID");
     // SQL table `bug_comments', PK `cID'
 }