Cakephp : HABTM アソシエーションでのupdateAll
状況としては、UserモデルとStudentモデルがある。Userは複数のStudentを持つ。 さらに、Studentは複数のCourseを持つ。Courseは重複するのでHABTM Associationとして登録。 Studentは各コース毎に受講しているか休学してるかstatusで管理する。status = 1 -> 受講中 、status = 0 -> 休学とする。 受講、休学はこんなボタンを表示させて、それぞれ studentsコントローラのadmin_couse_take()で処理を行う。 ちなみに、コントローラ内のファンクションにこうやって複数引数を渡せることも知った。 // absent echo $this->Form->postLink(__(‘Absent’), array( ‘controller’ => ‘students’, ‘action’ => ‘couse_take’, $student[‘Student’][‘id’], $course[‘CoursesStudent’][‘id’], false, ‘admin’ => true ), null, __(‘Are you sure you want to retake the class?’)); // take echo $this->Form->postLink(__(‘Take’), array( ‘controller’ => ‘students’, ‘action’ => ‘couse_take’, $student[‘Student’][‘id’], $course[‘CoursesStudent’][‘id’], […]