[ Avaa Bypassed ]




Upload:

Command:

www-data@18.216.156.171: ~ $
<?php

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

class News_Model extends MY_Model {
    
    function __construct() {
        parent::__construct();
    }
    
    public function get_news_list($school_id = null){
        
        $this->db->select('N.*, S.school_name');
        $this->db->from('news AS N');
        $this->db->join('schools AS S', 'S.id = N.school_id', 'left');
        
        if($this->session->userdata('role_id') != SUPER_ADMIN){
            $this->db->where('N.school_id', $this->session->userdata('school_id'));
        }
        
        if($this->session->userdata('role_id') == SUPER_ADMIN && $school_id){
            $this->db->where('N.school_id', $school_id);
        }
        $this->db->where('S.status', 1);
        $this->db->order_by('N.id', 'DESC');
        
        return $this->db->get()->result();
        
    }
    
    public function get_single_news($news_id){
        
        $this->db->select('N.*, S.school_name');
        $this->db->from('news AS N');
        $this->db->join('schools AS S', 'S.id = N.school_id', 'left');
        $this->db->where('N.id', $news_id);
        return $this->db->get()->row();
        
    }
        
     function duplicate_check($school_id, $title, $date, $id = null ){           
           
        if($id){
            $this->db->where_not_in('id', $id);
        }
        $this->db->where('school_id', $school_id);
        $this->db->where('title', $title);
        $this->db->where('date', date('Y-m-d', strtotime($date)));
        return $this->db->get('news')->num_rows();            
    }

}

Filemanager

Name Type Size Permission Actions
Holiday_Model.php File 1.65 KB 0777
News_Model.php File 1.63 KB 0777
Notice_Model.php File 1.78 KB 0777
index.html File 131 B 0777