![]() |
Library for codeigniter 3.1.5 - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=11) +--- Thread: Library for codeigniter 3.1.5 (/showthread.php?tid=68867) |
Library for codeigniter 3.1.5 - artex - 09-06-2017 Hello everyone, I am new. where can i find the libraries? for example the listview.php listview_helper.php and so on. I am using codeigniter 3.1.5 Thanks RE: Library for codeigniter 3.1.5 - dave friend - 09-06-2017 There are no "listview" files in the Codeigniter framework. The libraries and helpers are all in subfolders of the "system " folder. You might want to spend some time reading the official documentation at https://www.codeigniter.com/user_guide/ RE: Library for codeigniter 3.1.5 - ciadmin - 09-06-2017 CodeIgniter libraries & helpers are inside system/libraries & system/helpers if they are provided as part of the framework. If you are adding your own, they go inside the same named folders but inside application/ RE: Library for codeigniter 3.1.5 - artex - 09-07-2017 (09-06-2017, 10:05 PM)ciadmin Wrote: CodeIgniter libraries & helpers are inside system/libraries & system/helpers if they are provided as part of the framework. Thank you. I've seen the pagination and table libraries. is ther a library to manages CRUD operation on a db table? RE: Library for codeigniter 3.1.5 - ciadvantage - 09-07-2017 It is easy to add your own libraries and it should be under application/libraries. For quick crud, you can use https://www.grocerycrud.com/ and it is CI ready. Read the doc and try it, it is simple to use however if you try a large table with many rows (>10000) then you may run into problem. I only use this approach for lesser row table and use datatable (another table library for jquery). It works well and support large tables Good luck |