MOON
Server: Apache
System: Linux nserver.cafsindia.com 4.18.0-553.104.1.lve.el8.x86_64 #1 SMP Tue Feb 10 20:07:30 UTC 2026 x86_64
User: cafsindia (1002)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: /home/cafsindia/lms_cafsinfotech_in/application/core/MY_Lang.php
<?php defined('BASEPATH') OR exit('No direct script access allowed');
/**
 * Extended Language Class with fallback to English
 *
 * @package     CodeIgniter
 * @subpackage  Libraries
 * @category    Language
 */
class MY_Lang extends CI_Lang {
    /**
     * List of translations
     *
     * @var array
     */
    public $language = array();
    /**
     * List of loaded language files
     *
     * @var array
     */
    public $is_loaded = array();
    /**
     * Class constructor
     *
     * @return  void
     */
    function __construct() {
        parent::__construct();
        log_message('info', 'Language Class Initialized');
    }
    // --------------------------------------------------------------------
    
    /**
     * Load a language file  - fallback to English if file is missing
     *
     * @param   mixed   $langfile   Language file name
     * @param   string  $idiom      Language name (english, etc.)
     * @param   bool    $return     Whether to return the loaded array of translations
     * @param   bool    $add_suffix Whether to add suffix to $langfile
     * @param   string  $alt_path   Alternative path to look for the language file
     *
     * @return  void|string[]   Array containing translations, if $return is set to TRUE
     */
    function load($langfile, $idiom = '', $return = FALSE, $add_suffix = TRUE, $alt_path = '') 
    {
        $ci = &get_instance();
        $ci->load->library("session");
        
        if (is_array($langfile)) 
        {
            foreach ($langfile as $value) 
            {
                $this->load($value, $idiom, $return, $add_suffix, $alt_path);
            }
            return;
        }

        $langfile = str_replace('.php', '', $langfile);

        if ($add_suffix === TRUE) 
        {
            $langfile = preg_replace('/_lang$/', '', $langfile) . '_lang';
        }

        $langfile.= '.php';

        if (empty($idiom) OR !preg_match('/^[a-z_-]+$/i', $idiom)) 
        {
            
            $config = & get_config();
            $idiom = empty($ci->session->language) ? 'english' : strtolower($ci->session->language);

        }

        if ($return === FALSE && isset($this->is_loaded[$langfile]) && $this->is_loaded[$langfile] === $idiom) 
        {
            return;
        }

        if(!count($this->language))
        {
            $database_lang =  $this->_get_from_db($idiom);

            if ( $database_lang )
            {
                $lang = $database_lang;
                $found = TRUE;
            }
        }

        if (!isset($lang) OR !is_array($lang)) {
            log_message('error', 'Language file contains no data: language/' . $idiom . '/' . $langfile);
            if ($return === TRUE) {
                return array();
            }
            return;
        }

        if ($return === TRUE) 
        {
            return $lang;
        }

        $this->is_loaded[$langfile] = $idiom;
        $this->language = array_merge($this->language, $lang);
        log_message('info', 'Language file loaded: language/' . $idiom . '/' . $langfile);
        return TRUE;
    }
    // --------------------------------------------------------------------
    
    /**
     * Language line
     *
     * Fetches a single line of text from the language array
     *
     * @param   string  $line       Language line key
     * @param   bool    $log_errors Whether to log an error message if the line is not found
     * @return  string  Translation
     */
    function line($line, $log_errors = TRUE) 
    {
        $value = isset($this->language[$line]) ? $this->language[$line] : FALSE;
        // Because killer robots like unicorns!
        if ($value === FALSE && $log_errors === TRUE) {
            log_message('error', 'Could not find the language line "' . $line . '"');
        }
        return $value;
    }

    private function _get_from_db($lang_name = NULL)
    {
        $CI =& get_instance();
        $CI->load->database();

        $CI->db->select('lang_token.*');
        $CI->db->join('language', 'language.id = lang_token.language_id');
        $CI->db->where('language.lang', $lang_name);

        $query = $CI->db->get('lang_token')->result();

        $return = array();
        foreach ( $query as $row )
        {
            $return[$row->token] = $row->description;
        }
        return $return;
    }

}