File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ to load it manually:
1818
1919.. literalinclude :: pagination/001.php
2020
21+ .. _paginating-with-models :
2122
2223**********************
2324Paginating with Models
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ CodeIgniter does provide a model class that provides a few nice features, includ
3434- automatic database connection
3535- basic CRUD methods
3636- in-model validation
37- - automatic pagination
37+ - :ref: ` automatic pagination < paginating-with-models >`
3838- and more
3939
4040This class provides a solid base from which to build your own models, allowing you to
@@ -116,7 +116,7 @@ The Model's CRUD methods will take a step of work away from you and automaticall
116116the resulting data, instead of the Result object. This setting allows you to define
117117the type of data that is returned. Valid values are '**array **' (the default), '**object **', or the **fully
118118qualified name of a class ** that can be used with the Result object's ``getCustomResultObject() ``
119- method. Using the special ``::class `` constant of the class will allow most IDEs to
119+ method. Using the special ``::class `` constant of the class will allow most IDEs to
120120auto-complete the name and allow functions like refactoring to better understand your code.
121121
122122$useSoftDeletes
You can’t perform that action at this time.
0 commit comments