Example #1
0
 /**
  * This is a generic function to
  * add any type of vote (like/dislike)
  * and also this will update the vote count
  * of particular table type (post, comment, reply)
  */
 function add_vote()
 {
     $this->load->model('vote_m');
     $vote_m = new Vote_m();
     $post_id = $this->input->post('post_id');
     $vote_type = $this->input->post('vote_type');
     $table = $this->input->post('table');
     $user_id = $this->session->userdata('userId');
     //echo $post_id.":????????????????????????".$vote_type;
     $vote_m->add_vote($user_id, $vote_type, $post_id, $table);
 }
Example #2
0
 /**
  * This is a generic function to
  * add any type of vote (like/dislike)
  * and also this will update the vote count
  * of particular table type (post, comment, reply)
  */
 function add_vote() {
     $this->load->model('vote_m');
     $vote_m = new Vote_m();
     $vote_m->add_vote(2,1,3,"post");
 }