CodeIgniter Forums
Services Codeigniter 4 - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28)
+--- Forum: CodeIgniter 4 Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=31)
+--- Thread: Services Codeigniter 4 (/showthread.php?tid=81768)



Services Codeigniter 4 - devo - 04-26-2022

can someone please give me some example how to use services / make services in codeigniter 4,
I've repeatedly read the documentation but still don't really understand


RE: Services Codeigniter 4 - JustJohnQ - 04-26-2022

Maybe this helps:
https://www.youtube.com/watch?v=iqQufhllUCo


RE: Services Codeigniter 4 - MGatner - 04-27-2022

Here’s an example where I make my own library and then wrap it using Services to make it globally accessible and shared: https://github.com/duke-bluesmith/bluesmith/blob/develop/app/Config/Services.php

You can also check out almost any of my libraries (in the Addins forum) as I usually make a new Service for most classes.


RE: Services Codeigniter 4 - devo - 04-28-2022

(04-27-2022, 10:56 AM)MGatner Wrote: Here’s an example where I make my own library and then wrap it using Services to make it globally accessible and shared: https://github.com/duke-bluesmith/bluesmith/blob/develop/app/Config/Services.php

You can also check out almost any of my libraries (in the Addins forum) as I usually make a new Service for most classes.

thanks

(04-26-2022, 12:59 AM)JustJohnQ Wrote: Maybe this helps:
https://www.youtube.com/watch?v=iqQufhllUCo

thanks