예제 #1
0
파일: bug.php 프로젝트: nhandler/whube
 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'.
 }
예제 #2
0
파일: user.php 프로젝트: pedro3005/whube
 function user()
 {
     dbobj::dbobj("users", "uID");
 }
예제 #3
0
파일: rights.php 프로젝트: pedro3005/whube
 function rights()
 {
     dbobj::dbobj("user_rights", "userID");
 }
예제 #4
0
파일: bug.php 프로젝트: saji89/whube
 function bug()
 {
     dbobj::dbobj("bugs", "bID");
 }
예제 #5
0
파일: project.php 프로젝트: nhandler/whube
 function project()
 {
     dbobj::dbobj("projects", "pID");
 }
예제 #6
0
파일: register.php 프로젝트: saji89/whube
 function register()
 {
     dbobj::dbobj("users", "uID");
 }
예제 #7
0
 function bug_comment()
 {
     dbobj::dbobj("bug_comments", "cID");
     // SQL table `bug_comments', PK `cID'
 }