├── README.markdown ├── YiiDebug.php ├── YiiDebugComponentProxy.php ├── YiiDebugController.php ├── YiiDebugToolbar.php ├── YiiDebugToolbarPanel.php ├── YiiDebugToolbarRoute.php ├── YiiDebugViewHelper.php ├── YiiDebugViewRenderer.php ├── assets ├── fonts │ ├── yii-debug.eot │ ├── yii-debug.svg │ ├── yii-debug.ttf │ └── yii-debug.woff ├── icons-reference.html ├── main.css ├── main.js └── styles.css ├── composer.json ├── messages ├── ru │ └── yii-debug-toolbar.php └── simple │ └── yii-debug-toolbar.php ├── panels ├── YiiDebugToolbarPanelLogging.php ├── YiiDebugToolbarPanelRequest.php ├── YiiDebugToolbarPanelSettings.php ├── YiiDebugToolbarPanelSql.php └── YiiDebugToolbarPanelViews.php ├── views ├── index.php ├── layouts │ └── main.php ├── main.php └── panels │ ├── asset.php │ ├── logging.php │ ├── request.php │ ├── settings.php │ ├── sql.php │ ├── sql │ ├── callstack.php │ ├── servers.php │ └── summary.php │ └── views.php └── widgets ├── YiiDebugToolbarResourceUsage.php └── views └── resources.php /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/README.markdown -------------------------------------------------------------------------------- /YiiDebug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/YiiDebug.php -------------------------------------------------------------------------------- /YiiDebugComponentProxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/YiiDebugComponentProxy.php -------------------------------------------------------------------------------- /YiiDebugController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/YiiDebugController.php -------------------------------------------------------------------------------- /YiiDebugToolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/YiiDebugToolbar.php -------------------------------------------------------------------------------- /YiiDebugToolbarPanel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/YiiDebugToolbarPanel.php -------------------------------------------------------------------------------- /YiiDebugToolbarRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/YiiDebugToolbarRoute.php -------------------------------------------------------------------------------- /YiiDebugViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/YiiDebugViewHelper.php -------------------------------------------------------------------------------- /YiiDebugViewRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/YiiDebugViewRenderer.php -------------------------------------------------------------------------------- /assets/fonts/yii-debug.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/assets/fonts/yii-debug.eot -------------------------------------------------------------------------------- /assets/fonts/yii-debug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/assets/fonts/yii-debug.svg -------------------------------------------------------------------------------- /assets/fonts/yii-debug.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/assets/fonts/yii-debug.ttf -------------------------------------------------------------------------------- /assets/fonts/yii-debug.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/assets/fonts/yii-debug.woff -------------------------------------------------------------------------------- /assets/icons-reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/assets/icons-reference.html -------------------------------------------------------------------------------- /assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/assets/main.css -------------------------------------------------------------------------------- /assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/assets/main.js -------------------------------------------------------------------------------- /assets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/assets/styles.css -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/composer.json -------------------------------------------------------------------------------- /messages/ru/yii-debug-toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/messages/ru/yii-debug-toolbar.php -------------------------------------------------------------------------------- /messages/simple/yii-debug-toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/messages/simple/yii-debug-toolbar.php -------------------------------------------------------------------------------- /panels/YiiDebugToolbarPanelLogging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/panels/YiiDebugToolbarPanelLogging.php -------------------------------------------------------------------------------- /panels/YiiDebugToolbarPanelRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/panels/YiiDebugToolbarPanelRequest.php -------------------------------------------------------------------------------- /panels/YiiDebugToolbarPanelSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/panels/YiiDebugToolbarPanelSettings.php -------------------------------------------------------------------------------- /panels/YiiDebugToolbarPanelSql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/panels/YiiDebugToolbarPanelSql.php -------------------------------------------------------------------------------- /panels/YiiDebugToolbarPanelViews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/panels/YiiDebugToolbarPanelViews.php -------------------------------------------------------------------------------- /views/index.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | debug index -------------------------------------------------------------------------------- /views/layouts/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/views/layouts/main.php -------------------------------------------------------------------------------- /views/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/views/main.php -------------------------------------------------------------------------------- /views/panels/asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/views/panels/asset.php -------------------------------------------------------------------------------- /views/panels/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/views/panels/logging.php -------------------------------------------------------------------------------- /views/panels/request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/views/panels/request.php -------------------------------------------------------------------------------- /views/panels/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/views/panels/settings.php -------------------------------------------------------------------------------- /views/panels/sql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/views/panels/sql.php -------------------------------------------------------------------------------- /views/panels/sql/callstack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/views/panels/sql/callstack.php -------------------------------------------------------------------------------- /views/panels/sql/servers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/views/panels/sql/servers.php -------------------------------------------------------------------------------- /views/panels/sql/summary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/views/panels/sql/summary.php -------------------------------------------------------------------------------- /views/panels/views.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/views/panels/views.php -------------------------------------------------------------------------------- /widgets/YiiDebugToolbarResourceUsage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/widgets/YiiDebugToolbarResourceUsage.php -------------------------------------------------------------------------------- /widgets/views/resources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malyshev/yii-debug-toolbar/HEAD/widgets/views/resources.php --------------------------------------------------------------------------------