public function getDownline($aktif = true) { $where = $aktif ? "AND status = 1" : ""; $downline_data = $this->db->query("SELECT code FROM members WHERE referral_code = '" . $this->attributes('code') . "' {$where}")->result(); $downline_obj = array(); foreach ($downline_data as $key => $value) { $member_model = new Member_model(); $downline_obj[] = $member_model->getData($value->code, 'code'); } return $downline_obj; }
public function __construct() { parent::__construct(); }