Exemplo n.º 1
0
 public function save_task_match($task_id)
 {
     $release_info = $this->_std_obj->_release_info;
     $match_obj = new Keke_witkey_task_match_class();
     $match_obj->_mt_id = null;
     $match_obj->setHirer_deposit($release_info['txt_task_cash']);
     $match_obj->setDeposit_cash($release_info['txt_task_cash']);
     $match_obj->setTask_id($task_id);
     $match_obj->setDeposit_rate($this->_task_config['deposit_rate']);
     return $match_obj->create_keke_witkey_task_match();
 }