File tree Expand file tree Collapse file tree 19 files changed +73
-73
lines changed Expand file tree Collapse file tree 19 files changed +73
-73
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ Changes:
38
38
39
39
Deprecations:
40
40
41
- - Deprecated ``Codeigniter \View\View::$currentSection `` property.
41
+ - Deprecated ``CodeIgniter \View\View::$currentSection `` property.
42
42
- Language strings and exceptions on invalid cookie samesite are deprecated for the ``CookieException ``'s own exception message.
43
43
- Deprecated `CodeIgniter\Entity ` in favor of `CodeIgniter\Entity\Entity `
44
44
- Deprecated cookie-related properties of ``Response `` in order to use the ``Cookie `` class.
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ Upgrade Configuration
8
8
Documentations
9
9
==============
10
10
11
- - `Config Documentation Codeigniter 3.X <http://codeigniter.com/userguide3/libraries/config.html >`_
12
- - :doc: `Configuration Documentation Codeigniter 4.X </general/configuration >`
11
+ - `Config Documentation CodeIgniter 3.X <http://codeigniter.com/userguide3/libraries/config.html >`_
12
+ - :doc: `Configuration Documentation CodeIgniter 4.X </general/configuration >`
13
13
14
14
15
15
What has been changed
@@ -37,7 +37,7 @@ Upgrade Guide
37
37
Code Example
38
38
============
39
39
40
- Codeigniter Version 3.11
40
+ CodeIgniter Version 3.11
41
41
------------------------
42
42
43
43
Path: ``application/models ``::
@@ -49,7 +49,7 @@ Path: ``application/models``::
49
49
$siteName = 'My Great Site';
50
50
51
51
52
- Codeigniter Version 4.x
52
+ CodeIgniter Version 4.x
53
53
-----------------------
54
54
55
55
Path: ``app/Config ``::
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ Upgrade Controllers
8
8
Documentations
9
9
==============
10
10
11
- - `Controller Documentation Codeigniter 3.X <http://codeigniter.com/userguide3/general/controllers.html >`_
12
- - :doc: `Controller Documentation Codeigniter 4.X </incoming/controllers >`
11
+ - `Controller Documentation CodeIgniter 3.X <http://codeigniter.com/userguide3/general/controllers.html >`_
12
+ - :doc: `Controller Documentation CodeIgniter 4.X </incoming/controllers >`
13
13
14
14
What has been changed
15
15
=====================
@@ -38,7 +38,7 @@ Upgrade Guide
38
38
Code Example
39
39
============
40
40
41
- Codeigniter Version 3.11
41
+ CodeIgniter Version 3.11
42
42
------------------------
43
43
44
44
Path: ``application/controllers ``::
@@ -53,7 +53,7 @@ Path: ``application/controllers``::
53
53
}
54
54
}
55
55
56
- Codeigniter Version 4.x
56
+ CodeIgniter Version 4.x
57
57
-----------------------
58
58
59
59
Path: ``app/Controllers ``::
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ Upgrade Database
9
9
Documentations
10
10
==============
11
11
12
- - `Database Reference Documentation Codeigniter 3.X <http://codeigniter.com/userguide3/database/index.html >`_
13
- - :doc: `Working with Databases Documentation Codeigniter 4.X </database/index >`
12
+ - `Database Reference Documentation CodeIgniter 3.X <http://codeigniter.com/userguide3/database/index.html >`_
13
+ - :doc: `Working with Databases Documentation CodeIgniter 4.X </database/index >`
14
14
15
15
16
16
What has been changed
@@ -46,7 +46,7 @@ Upgrade Guide
46
46
Code Example
47
47
============
48
48
49
- Codeigniter Version 3.11
49
+ CodeIgniter Version 3.11
50
50
------------------------
51
51
::
52
52
@@ -55,7 +55,7 @@ Codeigniter Version 3.11
55
55
->limit(10, 20)
56
56
->get('mytable');
57
57
58
- Codeigniter Version 4.x
58
+ CodeIgniter Version 4.x
59
59
-----------------------
60
60
::
61
61
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ Upgrade Emails
9
9
Documentations
10
10
==============
11
11
12
- - `Email Documentation Codeigniter 3.X <http://codeigniter.com/userguide3/libraries/email.html >`_
13
- - :doc: `Email Documentation Codeigniter 4.X </libraries/email >`
12
+ - `Email Documentation CodeIgniter 3.X <http://codeigniter.com/userguide3/libraries/email.html >`_
13
+ - :doc: `Email Documentation CodeIgniter 4.X </libraries/email >`
14
14
15
15
16
16
What has been changed
@@ -27,7 +27,7 @@ Upgrade Guide
27
27
Code Example
28
28
============
29
29
30
- Codeigniter Version 3.11
30
+ CodeIgniter Version 3.11
31
31
------------------------
32
32
::
33
33
@@ -43,7 +43,7 @@ Codeigniter Version 3.11
43
43
44
44
$this->email->send();
45
45
46
- Codeigniter Version 4.x
46
+ CodeIgniter Version 4.x
47
47
-----------------------
48
48
::
49
49
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ Upgrade Encryption
9
9
Documentations
10
10
==============
11
11
12
- - `Encryption Library Documentation Codeigniter 3.X <http://codeigniter.com/userguide3/libraries/encryption.html >`_
13
- - :doc: `Encryption Service Documentation Codeigniter 4.X </libraries/encryption >`
12
+ - `Encryption Library Documentation CodeIgniter 3.X <http://codeigniter.com/userguide3/libraries/encryption.html >`_
13
+ - :doc: `Encryption Service Documentation CodeIgniter 4.X </libraries/encryption >`
14
14
15
15
16
16
What has been changed
@@ -25,7 +25,7 @@ Upgrade Guide
25
25
Code Example
26
26
============
27
27
28
- Codeigniter Version 3.11
28
+ CodeIgniter Version 3.11
29
29
------------------------
30
30
::
31
31
@@ -38,7 +38,7 @@ Codeigniter Version 3.11
38
38
echo $this->encryption->decrypt($ciphertext);
39
39
40
40
41
- Codeigniter Version 4.x
41
+ CodeIgniter Version 4.x
42
42
-----------------------
43
43
::
44
44
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ Upgrade Working with Uploaded Files
8
8
9
9
Documentations
10
10
==============
11
- - `Output Class Documentation Codeigniter 3.X <http://codeigniter.com/userguide3/libraries/file_uploading.html >`_
12
- - :doc: `Working with Uploaded Files Documentation Codeigniter 4.X </libraries/uploaded_files >`
11
+ - `Output Class Documentation CodeIgniter 3.X <http://codeigniter.com/userguide3/libraries/file_uploading.html >`_
12
+ - :doc: `Working with Uploaded Files Documentation CodeIgniter 4.X </libraries/uploaded_files >`
13
13
14
14
What has been changed
15
15
=====================
@@ -25,7 +25,7 @@ You have to change your file uploading code to match the new methods.
25
25
Code Example
26
26
============
27
27
28
- Codeigniter Version 3.11
28
+ CodeIgniter Version 3.11
29
29
------------------------
30
30
::
31
31
@@ -69,7 +69,7 @@ Codeigniter Version 3.11
69
69
}
70
70
}
71
71
72
- Codeigniter Version 4.x
72
+ CodeIgniter Version 4.x
73
73
-----------------------
74
74
::
75
75
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ Upgrade HTML Tables
9
9
Documentations
10
10
==============
11
11
12
- - `HTML Table Documentation Codeigniter 3.X <http://codeigniter.com/userguide3/libraries/table.html >`_
13
- - :doc: `HTML Table Documentation Codeigniter 4.X </outgoing/table >`
12
+ - `HTML Table Documentation CodeIgniter 3.X <http://codeigniter.com/userguide3/libraries/table.html >`_
13
+ - :doc: `HTML Table Documentation CodeIgniter 4.X </outgoing/table >`
14
14
15
15
16
16
What has been changed
@@ -26,7 +26,7 @@ Upgrade Guide
26
26
Code Example
27
27
============
28
28
29
- Codeigniter Version 3.11
29
+ CodeIgniter Version 3.11
30
30
------------------------
31
31
::
32
32
@@ -40,7 +40,7 @@ Codeigniter Version 3.11
40
40
41
41
echo $this->table->generate();
42
42
43
- Codeigniter Version 4.x
43
+ CodeIgniter Version 4.x
44
44
-----------------------
45
45
::
46
46
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ Upgrade Localization
9
9
Documentations
10
10
==============
11
11
12
- - `Language Documentation Codeigniter 3.X <http://codeigniter.com/userguide3/libraries/language.html >`_
13
- - :doc: `Localization Documentation Codeigniter 4.X </outgoing/localization >`
12
+ - `Language Documentation CodeIgniter 3.X <http://codeigniter.com/userguide3/libraries/language.html >`_
13
+ - :doc: `Localization Documentation CodeIgniter 4.X </outgoing/localization >`
14
14
15
15
16
16
What has been changed
@@ -31,7 +31,7 @@ Upgrade Guide
31
31
Code Example
32
32
============
33
33
34
- Codeigniter Version 3.11
34
+ CodeIgniter Version 3.11
35
35
------------------------
36
36
::
37
37
@@ -45,7 +45,7 @@ Codeigniter Version 3.11
45
45
$this->lang->load('error', $lang);
46
46
echo $this->lang->line('error_email_missing');
47
47
48
- Codeigniter Version 4.x
48
+ CodeIgniter Version 4.x
49
49
-----------------------
50
50
::
51
51
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ Upgrade Migrations
8
8
Documentations
9
9
==============
10
10
11
- - `Database Migrations Documentation Codeigniter 3.X <http://codeigniter.com/userguide3/libraries/migration.html >`_
12
- - :doc: `Database Migrations Documentation Codeigniter 4.X </dbmgmt/migration >`
11
+ - `Database Migrations Documentation CodeIgniter 3.X <http://codeigniter.com/userguide3/libraries/migration.html >`_
12
+ - :doc: `Database Migrations Documentation CodeIgniter 4.X </dbmgmt/migration >`
13
13
14
14
What has been changed
15
15
=====================
@@ -48,7 +48,7 @@ Upgrade Guide
48
48
Code Example
49
49
============
50
50
51
- Codeigniter Version 3.11
51
+ CodeIgniter Version 3.11
52
52
------------------------
53
53
54
54
Path: ``application/migrations ``::
@@ -87,7 +87,7 @@ Path: ``application/migrations``::
87
87
}
88
88
}
89
89
90
- Codeigniter Version 4.x
90
+ CodeIgniter Version 4.x
91
91
-----------------------
92
92
93
93
Path: ``app/Database/Migrations ``::
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ Upgrade Models
8
8
Documentations
9
9
==============
10
10
11
- - `Model Documentation Codeigniter 3.X <http://codeigniter.com/userguide3/general/models.html >`_
12
- - :doc: `Model Documentation Codeigniter 4.X </models/model >`
11
+ - `Model Documentation CodeIgniter 3.X <http://codeigniter.com/userguide3/general/models.html >`_
12
+ - :doc: `Model Documentation CodeIgniter 4.X </models/model >`
13
13
14
14
15
15
What has been changed
@@ -38,7 +38,7 @@ You can find more information to those methods :doc:`here </models/model>`.
38
38
Code Example
39
39
============
40
40
41
- Codeigniter Version 3.11
41
+ CodeIgniter Version 3.11
42
42
------------------------
43
43
44
44
Path: ``application/models ``::
@@ -57,7 +57,7 @@ Path: ``application/models``::
57
57
}
58
58
}
59
59
60
- Codeigniter Version 4.x
60
+ CodeIgniter Version 4.x
61
61
-----------------------
62
62
63
63
Path: ``app/Models ``::
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ Upgrade Pagination
9
9
Documentations
10
10
==============
11
11
12
- - `Pagination Class Documentation Codeigniter 3.X <http://codeigniter.com/userguide3/libraries/pagination.html >`_
13
- - :doc: `Pagination Documentation Codeigniter 4.X </libraries/pagination >`
12
+ - `Pagination Class Documentation CodeIgniter 3.X <http://codeigniter.com/userguide3/libraries/pagination.html >`_
13
+ - :doc: `Pagination Documentation CodeIgniter 4.X </libraries/pagination >`
14
14
15
15
16
16
What has been changed
@@ -34,7 +34,7 @@ Upgrade Guide
34
34
Code Example
35
35
============
36
36
37
- Codeigniter Version 3.11
37
+ CodeIgniter Version 3.11
38
38
------------------------
39
39
::
40
40
@@ -50,7 +50,7 @@ Codeigniter Version 3.11
50
50
51
51
$this->load->view('posts/index', $data);
52
52
53
- Codeigniter Version 4.x
53
+ CodeIgniter Version 4.x
54
54
-----------------------
55
55
::
56
56
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ Upgrade HTTP Responses
8
8
9
9
Documentations
10
10
==============
11
- - `Output Class Documentation Codeigniter 3.X <http://codeigniter.com/userguide3/libraries/output.html >`_
12
- - :doc: `HTTP Responses Documentation Codeigniter 4.X </outgoing/response >`
11
+ - `Output Class Documentation CodeIgniter 3.X <http://codeigniter.com/userguide3/libraries/output.html >`_
12
+ - :doc: `HTTP Responses Documentation CodeIgniter 4.X </outgoing/response >`
13
13
14
14
What has been changed
15
15
=====================
@@ -23,7 +23,7 @@ Upgrade Guide
23
23
Code Example
24
24
============
25
25
26
- Codeigniter Version 3.11
26
+ CodeIgniter Version 3.11
27
27
------------------------
28
28
::
29
29
@@ -35,7 +35,7 @@ Codeigniter Version 3.11
35
35
->set_content_type('application/json')
36
36
->set_output(json_encode(array('foo' => 'bar')));
37
37
38
- Codeigniter Version 4.x
38
+ CodeIgniter Version 4.x
39
39
-----------------------
40
40
::
41
41
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ Upgrade Routing
9
9
Documentations
10
10
==============
11
11
12
- - `URI Routing Documentation Codeigniter 3.X <http://codeigniter.com/userguide3/general/routing.html >`_
13
- - :doc: `URI Routing Documentation Codeigniter 4.X </incoming/routing >`
12
+ - `URI Routing Documentation CodeIgniter 3.X <http://codeigniter.com/userguide3/general/routing.html >`_
13
+ - :doc: `URI Routing Documentation CodeIgniter 4.X </incoming/routing >`
14
14
15
15
16
16
What has been changed
@@ -28,7 +28,7 @@ Upgrade Guide
28
28
Code Example
29
29
============
30
30
31
- Codeigniter Version 3.11
31
+ CodeIgniter Version 3.11
32
32
------------------------
33
33
Path: ``application/config/routes.php ``::
34
34
@@ -45,7 +45,7 @@ Path: ``application/config/routes.php``::
45
45
$route['drivers/update'] = 'drivers/update';
46
46
$route['posts/(:any)'] = 'posts/view/$1';
47
47
48
- Codeigniter Version 4.x
48
+ CodeIgniter Version 4.x
49
49
-----------------------
50
50
Path: ``app/Config/Routes.php ``::
51
51
You can’t perform that action at this time.
0 commit comments