Server IP : 103.191.208.50 / Your IP : 216.73.216.53 Web Server : LiteSpeed System : Linux orion.herosite.pro 4.18.0-553.53.1.lve.el8.x86_64 #1 SMP Wed May 28 17:01:02 UTC 2025 x86_64 User : celkcksm ( 1031) PHP Version : 7.4.33 Disable Function : show_source, system, shell_exec, passthru, popen, exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/celkcksm/banking.ncriptech.com/application/helpers/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); // ----------------------------------------------------------------------------- //check auth if (!function_exists('auth_check')) { function auth_check() { // Get a reference to the controller object $ci =& get_instance(); if(!$ci->session->has_userdata('is_admin_login')) { redirect('admin/auth/login', 'refresh'); } } } // ----------------------------------------------------------------------------- // Get General Setting if (!function_exists('get_general_settings')) { function get_general_settings() { $ci =& get_instance(); $ci->load->model('admin/setting_model'); return $ci->setting_model->get_general_settings(); } } // ----------------------------------------------------------------------------- // Generate Admin Sidebar Sub Menu if (!function_exists('get_sidebar_sub_menu')) { function get_sidebar_sub_menu($parent_id) { $ci =& get_instance(); $ci->db->select('*'); $ci->db->where('parent',$parent_id); $ci->db->where('status',1); $ci->db->order_by('sort_order','asc'); return $ci->db->get('sub_module')->result_array(); } } // ----------------------------------------------------------------------------- // Generate Admin Sidebar Menu if (!function_exists('get_sidebar_menu')) { function get_sidebar_menu() { $ci =& get_instance(); $ci->db->select('*'); $ci->db->order_by('sort_order','asc'); return $ci->db->get('module')->result_array(); } } // ----------------------------------------------------------------------------- // Make Slug Function if (!function_exists('make_slug')) { function make_slug($string) { $lower_case_string = strtolower($string); $string1 = preg_replace('/[^a-zA-Z0-9 ]/s', '', $lower_case_string); return strtolower(preg_replace('/\s+/', '-', $string1)); } } // ----------------------------------------------------------------------------- //get recaptcha if (!function_exists('generate_recaptcha')) { function generate_recaptcha() { $ci =& get_instance(); if ($ci->recaptcha_status) { $ci->load->library('recaptcha'); echo '<div class="form-group mt-2">'; echo $ci->recaptcha->getWidget(); echo $ci->recaptcha->getScriptTag(); echo ' </div>'; } } } // ---------------------------------------------------------------------------- //print old form data if (!function_exists('old')) { function old($field) { $ci =& get_instance(); return html_escape($ci->session->flashdata('form_data')[$field]); } } // -------------------------------------------------------------------------------- if (!function_exists('date_time')) { function date_time($datetime) { return date('F j, Y',strtotime($datetime)); } } // -------------------------------------------------------------------------------- // limit the no of characters if (!function_exists('text_limit')) { function text_limit($x, $length) { if(strlen($x)<=$length) { echo $x; } else { $y=substr($x,0,$length) . '...'; echo $y; } } } ?>