Server IP : 192.185.129.71 / Your IP : 18.117.244.233 Web Server : Apache System : Linux bh-ht-3.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : svymadmin ( 4072) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home4/svymadmin/public_html/vivekaexcel.edu.in/bkp/application/config/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php defined('BASEPATH') or exit('No direct script access allowed'); /* | ------------------------------------------------------------------- | AUTO-LOADER | ------------------------------------------------------------------- | This file specifies which systems should be loaded by default. | | In order to keep the framework as light-weight as possible only the | absolute minimal resources are loaded by default. For example, | the database is not connected to automatically since no assumption | is made regarding whether you intend to use it. This file lets | you globally define which systems you would like loaded with every | request. | | ------------------------------------------------------------------- | Instructions | ------------------------------------------------------------------- | | These are the things you can load automatically: | | 1. Packages | 2. Libraries | 3. Drivers | 4. Helper files | 5. Custom config files | 6. Language files | 7. Models | */ /* | ------------------------------------------------------------------- | Auto-load Packages | ------------------------------------------------------------------- | Prototype: | | $autoload['packages'] = array(APPPATH.'third_party', '/usr/local/shared'); | */ $autoload['packages'] = []; /* | ------------------------------------------------------------------- | Auto-load Libraries | ------------------------------------------------------------------- | These are the classes located in system/libraries/ or your | application/libraries/ directory, with the addition of the | 'database' library, which is somewhat of a special case. | | Prototype: | | $autoload['libraries'] = array('database', 'email', 'session'); | | You can also supply an alternative library name to be assigned | in the controller: | | $autoload['libraries'] = array('user_agent' => 'ua'); */ $autoload['libraries'] = [ 'database', 'user_agent', 'image_lib', 'encryption', 'app', 'gateways/app_gateway', 'email', // As last because it's using get_option via $this->app library ]; $CI = &get_instance(); $CI->load->helper('files'); $gateways = list_files(APPPATH . '/libraries/gateways'); foreach ($gateways as $gateway) { $pathinfo = pathinfo($gateway); // Check if file is .php and do not starts with .dot // Offen happens Mac os user to have underscore prefixed files while unzipping the zip file. if ($pathinfo['extension'] == 'php' && 0 !== strpos($gateway, '.') && $pathinfo['filename'] != 'App_gateway') { array_push($autoload['libraries'], 'gateways/' . strtolower($pathinfo['filename'])); } } /* | ------------------------------------------------------------------- | Auto-load Drivers | ------------------------------------------------------------------- | These classes are located in system/libraries/ or in your | application/libraries/ directory, but are also placed inside their | own subdirectory and they extend the CI_Driver_Library class. They | offer multiple interchangeable driver options. | | Prototype: | | $autoload['drivers'] = array('cache'); */ $autoload['drivers'] = ['session']; /* | ------------------------------------------------------------------- | Auto-load Helper Files | ------------------------------------------------------------------- | Prototype: | | $autoload['helper'] = array('url', 'file'); */ /* * @deprecated version 2.3.0 */ include_once(APPPATH . 'third_party/action_hooks.php'); $autoload['helper'] = [ 'language', 'url', 'file', 'form', 'settings', 'modules', 'core_hooks', 'admin', 'assets', 'user_meta', 'emails_tracking', 'staff', 'countries', 'payment_gateways', 'general', 'misc', 'func', 'gdpr', 'datatables', 'custom_fields', 'menu', 'template', 'email_templates', 'invoices', 'subscriptions', 'estimates', 'contracts', 'credit_notes', 'proposals', 'projects', 'tasks', 'fields', 'leads', 'tickets', 'relation', 'tags', 'pdf', 'clients', 'database', 'upload', 'sales', 'themes', 'pre_query_data_formatters', 'widgets', 'sms', 'deprecated', ]; if (file_exists(APPPATH . 'helpers/my_functions_helper.php')) { array_push($autoload['helper'], 'my_functions'); } /* | ------------------------------------------------------------------- | Auto-load Config files | ------------------------------------------------------------------- | Prototype: | | $autoload['config'] = array('config1', 'config2'); | | NOTE: This item is intended for use ONLY if you have created custom | config files. Otherwise, leave it blank. | */ $autoload['config'] = []; /* | ------------------------------------------------------------------- | Auto-load Language files | ------------------------------------------------------------------- | Prototype: | | $autoload['language'] = array('lang1', 'lang2'); | | NOTE: Do not include the "_lang" part of your file. For example | "codeigniter_lang.php" would be referenced as array('codeigniter'); | */ $autoload['language'] = ['english']; /* | ------------------------------------------------------------------- | Auto-load Models | ------------------------------------------------------------------- | Prototype: | | $autoload['model'] = array('first_model', 'second_model'); | | You can also supply an alternative model name to be assigned | in the controller: | | $autoload['model'] = array('first_model' => 'first'); */ $autoload['model'] = [ 'misc_model', 'roles_model', 'clients_model', 'tasks_model', ]; if (file_exists(APPPATH . 'config/my_autoload.php')) { include_once(APPPATH . 'config/my_autoload.php'); }