You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -220,7 +220,7 @@ The view at `app/Views/example.php` is a simple Codeigniter view file and includ
220
220
| unsetRead |```$crud->unsetRead();```| The method unsetRead is removing completely the Read operation for the end-user. |
221
221
| unsetReadFields |```$crud->unsetReadFields(['address_1', 'address_2', 'credit_limit']);```| Unset (do not display) the specified fields for the view (read only) form. |
222
222
| unsetTexteditor |```$crud->unsetTexteditor(['description', 'full_description']);```| Unsets the texteditor for the selected fields. This function is really rare to use as by default there is not any load of the texteditor for optimising purposes. |
223
-
| where |```$crud->like('country', 'USA');```| Filter the queries with an extra where statement. |
223
+
| where |```$crud->where('country', 'USA');```| Filter the queries with an extra where statement. |
224
224
225
225
### Callback Functionality (Changing or enhancing the default behavior with callbacks)
226
226
@@ -650,4 +650,4 @@ able to change and this is causing a development and an end-user confusion. It i
650
650
need to specify which fields with `$crud->setTexteditor`
651
651
*`unsetOperations` (previously `unset_operations`) is not removing the print and the export ability
652
652
653
-
For more information, visit http://www.grocerycrud.com
653
+
For more information, visit http://www.grocerycrud.com
0 commit comments