コード例 #1
0
ファイル: user.php プロジェクト: pin-git/icms2
 /**
  * Увеличивает счетчик загруженных пользователем файлов
  * @return bool
  */
 public function increaseFilesCount()
 {
     $this->files_count++;
     $model = new cmsModel();
     $model->filterEqual('id', $this->id);
     return $model->increment('{users}', 'files_count');
 }