Advertisement
Virajsinh

Codeigniter Setup With Plugins

Dec 16th, 2019 (edited)
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1. Download Link -> https://userscloud.com/igqz7c31i4mc
  2. =====================================================
  3. # Codeigniter Complete With Some Plug-ins And Folder Details
  4. =====================================================
  5.  
  6. ## Framewrok Version
  7. - Codeigniter v3.1.11
  8.  
  9. ## List Of Plug-in Version And
  10.  
  11. - Bootstrap v4.3.1
  12. - Creative Design for WebSite
  13.  
  14. - ckeditor v4.13.0 standard
  15. - bold, italic, bullet, list etc.
  16.  
  17. - DataTable v1.10.20 with Plug-in
  18. - Data view in Table with lost of Feature.
  19. - Search, PDF Makem, Print View A
  20.  
  21. - gijgo combined v1.9.13
  22. - Date And Time Picker
  23.  
  24. - iCheck v1.0.2
  25. - Super Customized Checkboxes
  26.  
  27. - jQuery UI v1.12.1
  28. - jQuery UI is a curated set of user interface interactions, effects, widgets,
  29. and themes built on top of the jQuery JavaScript Library.
  30.  
  31. - jQuery Validation v1.19.1
  32. - jQuery Form Validation
  33.  
  34. - Magnific Popup v1.1.0
  35. - Magnific Popup is a responsive lightbox & dialog script with focus on performance
  36. and providing best experience for user with any device. (Gallery View)
  37.  
  38. - select2 v4.0.12
  39. - DropDown Multiple feature. Search And Multiple Value select in DropDown.
  40.  
  41. - sweetalert2 v9.3.17
  42. - A Beautiful, Responsive, Customizable, Accessible (wai-aria) Replacement For Javascript's Popup Boxes
  43.  
  44. - Switchery v0.8.2
  45. - iOS 7 Style Switches Checkboxes
  46.  
  47. - toastr v2.1.4-7
  48. - toastr is a Javascript library for Gnome / Growl type non-blocking notifications.
  49. jQuery is required. The goal is to create a simple core library that can be customized and extended.
  50.  
  51. ## Folder Details
  52. ```text
  53. - application
  54.  
  55. - config
  56. └── autoload.php
  57. > $autoload['libraries'] = array('database','session','form_validation');
  58. > $autoload['helper'] = array('url','my_helper');
  59.  
  60. - config.php
  61. > $config['base_url'] = 'http://'.$_SERVER['SERVER_NAME'].'/codeigniter/';
  62. > $config['base_url'] = 'http://'.$_SERVER['SERVER_NAME'].'/codeigniter/codeigniter_complete/';
  63. > $config['index_page'] = '';
  64.  
  65. - constant.php
  66. > define('WEBSITE_NAME', 'Your WebSite Name');
  67.  
  68. - routes.php
  69. > $route['404_override'] = 'error_404';
  70. > $route['admin'] = "admin/admin/index/"; ( subfolder controller open example "foldername/controlername/funcationame")
  71.  
  72. - controllers
  73. - Error_404.php
  74.  
  75. - core
  76. - MY_Router.php ( use for subfolder controller access. )
  77.  
  78. - helper
  79. - my_helper.php
  80.  
  81. - models
  82.  
  83. - views
  84. - includes
  85. - header.php
  86. - footer.php
  87. - sidebar.php
  88. - toast.php
  89. - error404.php
  90.  
  91. - assets
  92. - cs ( customized css file )
  93. - images ( website images use )
  94. - js ( javascript file )
  95. - plugins ( all plugins in plugins folder )
  96. - uploaded ( end user all the upload file here )
  97. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement