MaketRandevu/application/config/autoload.php

134 lines
3.3 KiB
PHP
Raw Normal View History

2020-12-09 15:17:45 +03:00
<?php defined('BASEPATH') or exit('No direct script access allowed');
2018-01-23 12:08:37 +03:00
/*
| -------------------------------------------------------------------
| 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. Helper files
| 4. Custom config files
| 5. Language files
| 6. Models
|
*/
/*
| -------------------------------------------------------------------
2020-12-08 15:49:17 +03:00
| Auto-load Packages
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['packages'] = array(APPPATH.'third_party', '/usr/local/shared');
|
*/
2018-01-23 12:08:37 +03:00
$autoload['packages'] = [];
/*
| -------------------------------------------------------------------
| Auto-load Libraries
| -------------------------------------------------------------------
| These are the classes located in the system/libraries folder
| or in your application/libraries folder.
|
| Prototype:
|
| $autoload['libraries'] = array('database', 'session', 'xmlrpc');
*/
2020-12-02 21:03:55 +03:00
$autoload['libraries'] = ['database', 'session'];
/*
| -------------------------------------------------------------------
| Auto-load Helper Files
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['helper'] = array('url', 'file');
*/
$autoload['helper'] = [
2022-10-16 18:03:55 +03:00
'array',
'asset',
'config',
2023-02-20 10:54:29 +03:00
'date',
'debug',
'env',
2021-10-28 14:26:48 +03:00
'file',
'html',
'http',
'installation',
'language',
'password',
'path',
'permission',
2022-03-25 12:58:17 +03:00
'rate_limit',
'routes',
'session',
'setting',
2021-10-28 14:26:48 +03:00
'string',
'url',
'validation'
];
/*
| -------------------------------------------------------------------
| 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'] = ['app', 'google', 'email'];
/*
| -------------------------------------------------------------------
| 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');
|
*/
2018-01-23 12:08:37 +03:00
$autoload['language'] = [];
/*
| -------------------------------------------------------------------
| Auto-load Models
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['model'] = array('model1', 'model2');
|
*/
2018-01-23 12:08:37 +03:00
$autoload['model'] = [];
/* End of file autoload.php */
/* Location: ./application/config/autoload.php */