Welcome Guest, Not a member yet? Register   Sign In
List of Deprecated functions
#1

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.
Reply
#2

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.
Reply




Theme © iAndrew 2016 - Forum software by © MyBB