Welcome Guest, Not a member yet? Register   Sign In
get_instance function
#5

(This post was last modified: 08-15-2019, 10:11 AM by dave friend.)

(08-15-2019, 06:47 AM)webdevron Wrote:
(10-16-2016, 08:31 AM)sv3tli0 Wrote: Autoloading removed the need of such method.
Now you have static service container which you can access to get DB or other service where you need it.
You can directly call objects which will be auto find.

Could you please share any documentations or example regarding this issue? What is the process to assess a LIBRARY within HELPER?

Thanks in advance.

If you examine a CIv4 helper source file you should find several examples. Here are a couple from url_helper.php

PHP Code:
$url = new \CodeIgniter\HTTP\URI($fullPath);
//or for a "service"
$config = \CodeIgniter\Config\Services::request()->config

In some cases, you might find it helpful to include a "use" directive in a helper. For instance, in form_helper.php you find

PHP Code:
use Config\Services

And then later in the file this simple piece of code uses "services"

PHP Code:
$request Services::request(); 
Reply


Messages In This Thread
get_instance function - by superior - 10-16-2016, 06:12 AM
RE: get_instance function - by sv3tli0 - 10-16-2016, 08:31 AM
RE: get_instance function - by superior - 10-17-2016, 01:06 AM
RE: get_instance function - by webdevron - 08-15-2019, 06:47 AM
RE: get_instance function - by dave friend - 08-15-2019, 10:02 AM
RE: get_instance function - by DzS1 - 12-23-2020, 07:38 AM
RE: get_instance function - by InsiteFX - 12-23-2020, 10:06 PM
RE: get_instance function - by DzS1 - 12-24-2020, 02:56 AM
RE: get_instance function - by InsiteFX - 12-24-2020, 01:16 PM
RE: get_instance function - by DzS1 - 12-26-2020, 03:50 AM
RE: get_instance function - by InsiteFX - 12-26-2020, 12:32 PM



Theme © iAndrew 2016 - Forum software by © MyBB