Не работает "increment"

InstantCMS 2.X
#1 23 сентября 2017 в 15:54
Друзья всем привет, хочу при вступления в команду что бы в таблице прибавлялся + 1 с помощью increment, но сделал так все пишет null но другие ячейки рядом заполняются в чем может быть ошибка ?

add.php
  1. $is_submitted = $this->request->has('submit');
  2. $team = $form->parse($this->request, $is_submitted);
  3. $user = cmsUser::getInstance();
  4. if ($is_submitted){
  5.  
  6. $errors = $form->validate($this, $team);
  7.  
  8. if (!$errors){
  9. $tournament = $this->model->getTournament($tournament_id);
  10.  
  11. $team['tournament_id'] = $tournament_id;
  12. $team['user_id'] = $user->id;
  13. $team['team_name'] = $tournament['tournament_name'];
  14. $team['sport_system'] = $sport;
  15. $this->model->addTeam($team);
  16.  
  17.  
  18.  
  19. $team = $this->model->getItemById('sport_teams', $tournament_id);
  20. $this->model->update('users', $user->id, array('tournament_id' => $tournament_id, 'tournament_name' => $tournament['tournament_name']));
  21.  
  22. $teams_name = $team['tournament_name'];
  23.  
  24. //if ($tournament['users_count'] >= $tournament['min_users']){
  25. //$this->model->setTournamentStatus($tournament_id, sport::STATUS_MODERATION);
  26. //}
  27.  
  28. cmsCore::getController('activity')->addEntry($this->name, 'join', array(
  29. 'subject_id' => $tournament_id,
  30. 'team_id' => $tournament_id,
  31. 'subject_title' => $team['tournament_name'],
  32. 'subject_url' => href_to_rel($this->name, 'team', $tournament_id)
  33. ));
  34.  
  35. $this->redirectToAction('team', array($tournament_id, $sport));
  36.  
  37. }
  38.  
  39. if ($errors){
  40. cmsUser::addSessionMessage(LANG_FORM_ERRORS, 'error');
  41. }
  42.  
  43. }
  44.  
model.php
  1. /* Вступление в команду */
  2. public function addTeam($team){
  3. $team_id = $this->insert('sport_team_info', $team);
  4. $this->filterEqual('id', $team['tournament_id']);
  5. $this->increment('sport_teams','users_count');
  6. return $team_id;
  7. }
Вы не можете отвечать в этой теме.
Войдите или зарегистрируйтесь, чтобы писать на форуме.
Используя этот сайт, вы соглашаетесь с тем, что мы используем файлы cookie.