|
Server : Apache/2.4.18 (Ubuntu) System : Linux canvaswebdesign 3.13.0-71-generic #114-Ubuntu SMP Tue Dec 1 02:34:22 UTC 2015 x86_64 User : oppastar ( 1041) PHP Version : 7.0.33-0ubuntu0.16.04.15 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, Directory : /var/www/laciasmara.com/public_html/shop/application/models/ |
Upload File : |
<?php
defined('BASEPATH') or exit('No direct script access allowed');
class Comment_m extends MY_Model
{
public function __construct()
{
parent::__construct();
}
public function add_comment($data)
{
$this->db->insert('comments', $data);
}
public function get_comments()
{
$this->db->select('c.id, c.customer_id, c.content, c.created_at, c.parent_id, u.name');
$this->db->from('comments c');
$this->db->join('customers u', 'u.id_customers = c.customer_id');
$this->db->order_by('c.created_at', 'ASC');
$query = $this->db->get();
$comments = $query->result_array();
$comment_structure = [];
foreach ($comments as $comment) {
if ($comment['parent_id'] == NULL) {
$comment_structure[$comment['id']] = $comment;
$comment_structure[$comment['id']]['replies'] = [];
} else {
$comment_structure[$comment['parent_id']]['replies'][] = $comment;
}
}
return array_values($comment_structure);
}
public function get_comments_by_parent($parent_comment_id)
{
$this->db->where('parent_id', $parent_comment_id);
return $this->db->get('comments')->result_array();
}
}