[ Avaa Bypassed ]




Upload:

Command:

www-data@18.216.67.249: ~ $
<?php

if (!defined('BASEPATH'))
    exit('No direct script access allowed');

class Plan_Model extends MY_Model {

    function __construct() {
        parent::__construct();
    }

    public function get_plan_list() {

        $this->db->select('P.*');
        $this->db->from('saas_plans AS P');
        $this->db->order_by('P.id', 'DESC');
        return $this->db->get()->result();
    }

    public function get_single_plan($id) {

        $this->db->select('P.*');
        $this->db->from('saas_plans AS P');
        $this->db->where('P.id', $id);
        return $this->db->get()->row();
    }

    function duplicate_check($name, $id = null) {

        if ($id) {
            $this->db->where_not_in('id', $id);
        }
        
        $this->db->where('plan_name', $name);
        return $this->db->get('saas_plans')->num_rows();
    }

}

Filemanager

Name Type Size Permission Actions
Faq_Model.php File 872 B 0777
Plan_Model.php File 890 B 0777
Setting_Model.php File 762 B 0777
Slider_Model.php File 717 B 0777
Subscription_Model.php File 1.06 KB 0777
index.html File 131 B 0777