10-12-2018, 01:46 AM
In CI3:
config/autoload.php
controller/Test.php
The library was connected automatically, access to it was in any part of the project.
How to make it so that in CI4 was like this:
config/autoload.php
PHP Code:
$autoload['libraries'] = array('test_lib');
controller/Test.php
PHP Code:
class Test extends CI_Controller
{
public function index()
{
echo $this->CI->test_lib->variable;
$this->CI->test_lib->method();
}
}
The library was connected automatically, access to it was in any part of the project.
How to make it so that in CI4 was like this:
PHP Code:
class Test extends CI_Controller
{
public function index()
{
echo TestLib->variable;
TestLib->method();
}
}