ゲッター/セッターを使用してモデルに値を格納および取得したいと思います。以下はコントローラーとモデルのコードです。それを行うための標準的な正しい方法を知りたいですか?
コントローラーコード:
public function saveevent() {
$this->event_model->setEvent_title($this->input->post('event_title'));
$this->event_model->setSms_description($this->input->post('sms_description'));
$event_id = $this->event_model->saveEvent();
}
モデルコード:
class Event_Model extends CI_Model{
private $id;
private $event_title;
private $sms_description;
function __construct() {
parent::__construct();
}
public function getId() {
return $this->id;
}
public function setId($id) {
$this->id = $id;
}
public function getEvent_title() {
return $this->event_title;
}
public function setEvent_title($event_title) {
$this->event_title = $event_title;
}
public function getSms_description() {
return $this->sms_description;
}
public function setSms_description($sms_description) {
$this->sms_description = $sms_description;
}
public function saveEvent() {
$data = array(
'title' => $this->getEvent_title() ,
'sms_description' => $this->getSms_description()
);
$this->db->insert('events', $data);
return $this->db->insert_id();
}
}