{"id":13560228,"url":"https://github.com/JCSama/CodeIgniter-develbar","last_synced_at":"2025-04-03T15:31:50.165Z","repository":{"id":29936680,"uuid":"33482941","full_name":"JCSama/CodeIgniter-develbar","owner":"JCSama","description":"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...","archived":true,"fork":false,"pushed_at":"2021-01-17T17:44:55.000Z","size":273,"stargazers_count":176,"open_issues_count":0,"forks_count":58,"subscribers_count":20,"default_branch":"develop","last_synced_at":"2024-02-15T12:34:45.664Z","etag":null,"topics":["codeigniter","developer-toolbar","hmvc","party-library","profiler-library"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JCSama.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-04-06T13:20:25.000Z","updated_at":"2023-09-07T12:30:55.000Z","dependencies_parsed_at":"2022-09-06T16:11:55.260Z","dependency_job_id":null,"html_url":"https://github.com/JCSama/CodeIgniter-develbar","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JCSama%2FCodeIgniter-develbar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JCSama%2FCodeIgniter-develbar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JCSama%2FCodeIgniter-develbar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JCSama%2FCodeIgniter-develbar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JCSama","download_url":"https://codeload.github.com/JCSama/CodeIgniter-develbar/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247028015,"owners_count":20871635,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["codeigniter","developer-toolbar","hmvc","party-library","profiler-library"],"created_at":"2024-08-01T13:00:39.874Z","updated_at":"2025-04-03T15:31:45.151Z","avatar_url":"https://github.com/JCSama.png","language":"PHP","readme":"# CodeIgniter Developer Toolbar\n\nCodeIgniter Developer Toolbar is a third party library based on Profiler Library with additional functionality for debugging and optimization.\n\n- Support CI.2 and CI.3\n- Support HMVC.\n\n# Screen-shot\n\n![Alt text](https://raw.githubusercontent.com/JCSama/CodeIgniter-develbar/gh-pages/images/Screen-Shot-develbar.png \"Developer Toolbar\")\n![Alt text](https://raw.githubusercontent.com/JCSama/CodeIgniter-develbar/gh-pages/images/Screen-Shot-develbar-profiler.png \"Developer Toolbar Profiler\")\n\n# Installation\n\nCopy the files to the `application/third_party/DevelBar` folder.\n\nCopy the file `core/MY_Loader.php` to the `application/core` folder.\n\nCopy the file `controllers/develbarprofiler.php` to the `application/controllers` folder.\n\nChange permissions for cache folder `chmod 777 application/cache`\n\n# For HMVC\n\nIf you are using HMVC third party library, copy `MX_Loader.php` instead of `MY_Loader.php` to your `core` directory,\nand change the file name to `MY_Loader.php` instead of `MX_Loader.php`.\n\n# Usage\n\nOpen `application/config/autoload.php` :\n\n```php\n$autoload['packages'] = array(APPPATH . 'third_party/DevelBar');\n```\n\nOpen `application/config/config.php` :\n\n```php\n$config['enable_hooks'] = TRUE;\n```\n\nOpen `application/config/hooks.php` and add this line :\n\n```php\n$hook['display_override'][] = array(\n\t'class'  \t=\u003e 'Develbar',\n    'function' \t=\u003e 'debug',\n    'filename' \t=\u003e 'Develbar.php',\n    'filepath' \t=\u003e 'third_party/DevelBar/hooks'\n);\n```\n\nEnable or disable Develbar, open `application/third_party/DevelBar/config/config.php` :\n\n```php\n$config['enable_develbar'] = TRUE;\n```\n\n# Additional parameters\n\nIf you want to disable some sections within the developer toolbar,\n\nOpen `application/third_party/DevelBar/config/config.php`, and set the sections value to `FALSE` :\n\n```php\n$config['develbar_sections'] = array(\n\t'Benchmarks' \t\t=\u003e TRUE,\n    'Memory Usage'\t   \t=\u003e TRUE,\n    'Request'   \t\t=\u003e TRUE,\n    'Database'\t\t\t=\u003e TRUE,\n    'Hooks'\t\t\t=\u003e FALSE, // Disable Hooks Section\n    'Libraries'\t\t\t=\u003e TRUE,\n    'Helpers' \t\t\t=\u003e FALSE, // Disable Helpers Section,\n    'Views' \t\t\t=\u003e TRUE,\n    'Config' \t\t\t=\u003e TRUE,\n    'Session' \t\t\t=\u003e TRUE,\n    'Models' \t\t\t=\u003e TRUE,\n    'Ajax'                      =\u003e TRUE,\n);\n```\nTo auto check for available new version of CodeIgniter and DeveloperToolbar, you should set `check_update` option to `TRUE`,\nwithin `application/third_party/DevelBar/config/config.php` :\n\n```php\n$config['check_update'] = TRUE;\n```\n","funding_links":[],"categories":["Third Party","Profiler"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJCSama%2FCodeIgniter-develbar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FJCSama%2FCodeIgniter-develbar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJCSama%2FCodeIgniter-develbar/lists"}