예제 #1
0
파일: Grades.php 프로젝트: Grasia/bolotweet
 static function register($fields)
 {
     // MAGICALLY put fields into current scope
     extract($fields);
     $ngrade = new Grades();
     $ngrade->userid = $userid;
     $ngrade->cdate = common_sql_now();
     $ngrade->grade = $grade;
     $ngrade->noticeid = $noticeid;
     $result = $ngrade->insert();
     if (!$result) {
         common_log_db_error($user, 'INSERT', __FILE__);
         return false;
     }
     return $ngrade;
 }