| Server IP : 14.225.204.176 / Your IP : 216.73.216.6 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/wit-crm/application/hooks/ |
Upload File : |
<?php
defined('BASEPATH') or exit('No direct script access allowed');
class InitModules
{
/**
* Early init modules features
*/
public function handle()
{
include_once(__DIR__ . './../libraries/App_modules.php');
// // Load the directory helper so the directory_map function can be used
include_once(__DIR__ . './../../system/helpers/directory_helper.php');
//include_once('D:/xampp/htdocs/hgphome/application/libraries/App_modules.php');
// Load the directory helper so the directory_map function can be used
//include_once('D:/xampp/htdocs/hgphome/system/helpers/directory_helper.php');
foreach (\App_modules::get_valid_modules() as $module) {
$excludeUrisPath = $module['path'] . 'config' . DIRECTORY_SEPARATOR . 'csrf_exclude_uris.php';
if (file_exists($excludeUrisPath)) {
$uris = include_once($excludeUrisPath);
if (is_array($uris)) {
hooks()->add_filter('csrf_exclude_uris', function ($current) use ($uris) {
return array_merge($current, $uris);
});
}
}
}
}
}