├── .gitignore ├── README.markdown ├── config └── hooks.php ├── helpers ├── pqp │ ├── README.txt │ ├── classes │ │ ├── Console.php │ │ ├── MySqlDatabase.php │ │ └── PhpQuickProfiler.php │ ├── css │ │ └── pQp.css │ ├── display.php │ ├── images │ │ ├── overlay.gif │ │ └── side.png │ ├── index.php │ └── pqp.tpl └── pqp_helper.php ├── libraries └── MY_Profiler.php └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_* -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlbarnes/php-quick-profiler-for-codeigniter/HEAD/README.markdown -------------------------------------------------------------------------------- /config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlbarnes/php-quick-profiler-for-codeigniter/HEAD/config/hooks.php -------------------------------------------------------------------------------- /helpers/pqp/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlbarnes/php-quick-profiler-for-codeigniter/HEAD/helpers/pqp/README.txt -------------------------------------------------------------------------------- /helpers/pqp/classes/Console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlbarnes/php-quick-profiler-for-codeigniter/HEAD/helpers/pqp/classes/Console.php -------------------------------------------------------------------------------- /helpers/pqp/classes/MySqlDatabase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlbarnes/php-quick-profiler-for-codeigniter/HEAD/helpers/pqp/classes/MySqlDatabase.php -------------------------------------------------------------------------------- /helpers/pqp/classes/PhpQuickProfiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlbarnes/php-quick-profiler-for-codeigniter/HEAD/helpers/pqp/classes/PhpQuickProfiler.php -------------------------------------------------------------------------------- /helpers/pqp/css/pQp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlbarnes/php-quick-profiler-for-codeigniter/HEAD/helpers/pqp/css/pQp.css -------------------------------------------------------------------------------- /helpers/pqp/display.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlbarnes/php-quick-profiler-for-codeigniter/HEAD/helpers/pqp/display.php -------------------------------------------------------------------------------- /helpers/pqp/images/overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlbarnes/php-quick-profiler-for-codeigniter/HEAD/helpers/pqp/images/overlay.gif -------------------------------------------------------------------------------- /helpers/pqp/images/side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlbarnes/php-quick-profiler-for-codeigniter/HEAD/helpers/pqp/images/side.png -------------------------------------------------------------------------------- /helpers/pqp/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlbarnes/php-quick-profiler-for-codeigniter/HEAD/helpers/pqp/index.php -------------------------------------------------------------------------------- /helpers/pqp/pqp.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlbarnes/php-quick-profiler-for-codeigniter/HEAD/helpers/pqp/pqp.tpl -------------------------------------------------------------------------------- /helpers/pqp_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlbarnes/php-quick-profiler-for-codeigniter/HEAD/helpers/pqp_helper.php -------------------------------------------------------------------------------- /libraries/MY_Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlbarnes/php-quick-profiler-for-codeigniter/HEAD/libraries/MY_Profiler.php -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlbarnes/php-quick-profiler-for-codeigniter/HEAD/screenshot.png --------------------------------------------------------------------------------