All Projects → JCSama → Codeigniter Develbar

JCSama / Codeigniter Develbar

Licence: mit
CodeIgniter Developer Toolbar is a third party library based on Profiler Library with additional functionality for debugging and optimisation, Database, Models, Helpers, Libraries, Views, Ajax...

Projects that are alternatives of or similar to Codeigniter Develbar

Skeleton
A ready-to-use CodeIgniter skeleton with tons of new features and a whole new concept of hooks (actions and filters) as well as a ready-to-use and application-free themes and plugins system. Facebook Page: http://bit.ly/2oHzpxC | Facebook Group: http://bit.ly/2o3KOrA. Help me carry on making more free stuff → http://bit.ly/2ppNujE ←
Stars: ✭ 74 (-50.99%)
Mutual labels:  codeigniter
Startblog
Startblog is a simple Markdown blog system based on the CodeIgniter!
Stars: ✭ 107 (-29.14%)
Mutual labels:  codeigniter
Codeigniter Hmvc
为 CodeIgniter 增加 HMVC 支持
Stars: ✭ 139 (-7.95%)
Mutual labels:  codeigniter
Codeigniter Ratchet Websocket
This library contains the demo of commenting/posting realtime using CodeIgniter+AngularJS+Ratchet PHP Websocket
Stars: ✭ 84 (-44.37%)
Mutual labels:  codeigniter
Classroombookings
The open source hassle-free room booking system for schools
Stars: ✭ 89 (-41.06%)
Mutual labels:  codeigniter
Codeigniter Angularjs App
Sample App based on CodeIgniter and AngularJS
Stars: ✭ 127 (-15.89%)
Mutual labels:  codeigniter
Stisla Codeigniter
Free Bootstrap Admin Template for CodeIgniter
Stars: ✭ 64 (-57.62%)
Mutual labels:  codeigniter
Codeigniter Login Logout Register
A user login, logout, register start for Codeigniter 3
Stars: ✭ 144 (-4.64%)
Mutual labels:  codeigniter
Manga Tracker
A cross-site manga-tracker.
Stars: ✭ 93 (-38.41%)
Mutual labels:  codeigniter
Memcached Library
A CodeIgniter Library to Interface with the Memcached cache system
Stars: ✭ 139 (-7.95%)
Mutual labels:  codeigniter
Playground
A space to learn and experience CodeIgniter 4
Stars: ✭ 84 (-44.37%)
Mutual labels:  codeigniter
Hr Payroll
HRM is a Modern and responsive Human Resource Management System. It is developed by PHP and Codeigniter framework. It is designed and developed for office management and company employee management.
Stars: ✭ 86 (-43.05%)
Mutual labels:  codeigniter
Luthier Ci
Improved routing, middleware support, authentication tools and more for CodeIgniter 3 framework
Stars: ✭ 129 (-14.57%)
Mutual labels:  codeigniter
Bancha
Bancha is an open-source CMS made by Nicholas Valbusa written in PHP5.3.
Stars: ✭ 76 (-49.67%)
Mutual labels:  codeigniter
Easyappointments
Easy!Appointments is a highly customizable web application that allows customers to book appointments with you via a sophisticated web interface. Moreover, it provides the ability to sync your data with Google Calendar so you can use them with other services. It is an open source project that you can download and install even for commercial use. Easy!Appointments will run smoothly with your existing website as it can be installed in a single folder of the server and of course share an existing database.
Stars: ✭ 2,013 (+1233.11%)
Mutual labels:  codeigniter
Sinoci
中国特色化 CodeIgniter
Stars: ✭ 66 (-56.29%)
Mutual labels:  codeigniter
Hoosk
Hoosk Codeigniter CMS
Stars: ✭ 123 (-18.54%)
Mutual labels:  codeigniter
Invoiceplane
A self-hosted open source application for managing your invoices, clients and payments.
Stars: ✭ 1,936 (+1182.12%)
Mutual labels:  codeigniter
Codeigniter Jwt Sample
CodeIgniter JWT Sample
Stars: ✭ 144 (-4.64%)
Mutual labels:  codeigniter
Codeigniter Ss Twig
A Simple and Secure Twig integration for CodeIgniter 3.x and 4.x
Stars: ✭ 139 (-7.95%)
Mutual labels:  codeigniter

CodeIgniter Developer Toolbar

CodeIgniter Developer Toolbar is a third party library based on Profiler Library with additional functionality for debugging and optimization.

  • Support CI.2 and CI.3
  • Support HMVC.

Screen-shot

Alt text Alt text

Installation

Copy the files to the application/third_party/DevelBar folder.

Copy the file core/MY_Loader.php to the application/core folder.

Copy the file controllers/develbarprofiler.php to the application/controllers folder.

Change permissions for cache folder chmod 777 application/cache

For HMVC

If you are using HMVC third party library, copy MX_Loader.php instead of MY_Loader.php to your core directory, and change the file name to MY_Loader.php instead of MX_Loader.php.

Usage

Open application/config/autoload.php :

$autoload['packages'] = array(APPPATH . 'third_party/DevelBar');

Open application/config/config.php :

$config['enable_hooks'] = TRUE;

Open application/config/hooks.php and add this line :

$hook['display_override'][] = array(
	'class'  	=> 'Develbar',
    'function' 	=> 'debug',
    'filename' 	=> 'Develbar.php',
    'filepath' 	=> 'third_party/DevelBar/hooks'
);

Enable or disable Develbar, open application/third_party/DevelBar/config/config.php :

$config['enable_develbar'] = TRUE;

Additional parameters

If you want to disable some sections within the developer toolbar,

Open application/third_party/DevelBar/config/config.php, and set the sections value to FALSE :

$config['develbar_sections'] = array(
	'Benchmarks' 		=> TRUE,
    'Memory Usage'	   	=> TRUE,
    'Request'   		=> TRUE,
    'Database'			=> TRUE,
    'Hooks'			=> FALSE, // Disable Hooks Section
    'Libraries'			=> TRUE,
    'Helpers' 			=> FALSE, // Disable Helpers Section,
    'Views' 			=> TRUE,
    'Config' 			=> TRUE,
    'Session' 			=> TRUE,
    'Models' 			=> TRUE,
    'Ajax'                      => TRUE,
);

To auto check for available new version of CodeIgniter and DeveloperToolbar, you should set check_update option to TRUE, within application/third_party/DevelBar/config/config.php :

$config['check_update'] = TRUE;
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].