예제 #1
0
파일: user.php 프로젝트: rockylo/ionize
 /**
  * Must be called by XHR
  * Called by User Edition form Validation
  *
  * Returns 1 if true, 0 if false
  *
  */
 function check_email_exists()
 {
     $id_user = $this->input->post('id_user');
     $email = $this->input->post('email');
     $exists = $this->user_model->user_with_same_email_exists($email, $id_user);
     $this->xhr_output($exists);
 }