CodeIgniter Forums
List of Deprecated functions - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: List of Deprecated functions (/showthread.php?tid=78979)



List of Deprecated functions - Ahirsi - 04-03-2021

Hi 

I am working through an old CodeIgniter 3 book and was wondering whether there are resources/documentation
pointing out all the deprecated functions/items and the new ones supported by CI4.

For example to load a view in CI3 one would use 
Code:
$this->load->view('Helloview');


In CI4 one must use: 
Code:
return view('Helloview');



I will appreciate if someone can point me in the right direction so that I can complete the examples in the old CI3 book.


RE: List of Deprecated functions - iRedds - 04-03-2021

You can think of CI4 as another framework with a similar name.

The view() function in CI4 is a wrapper/helper for the render class.
The view() method in CI3 is a render.