├── .gitignore ├── README.md ├── app ├── code │ └── community │ │ ├── MSP │ │ └── DevTools │ │ │ ├── Helper │ │ │ └── Data.php │ │ │ ├── Model │ │ │ ├── AbstractOpsRegistry.php │ │ │ ├── ElementRegistry.php │ │ │ ├── EventRegistry.php │ │ │ ├── Observer.php │ │ │ └── PageInfo.php │ │ │ └── etc │ │ │ ├── adminhtml.xml │ │ │ ├── config.xml │ │ │ └── system.xml │ │ └── Varien │ │ └── Profiler.php ├── design │ └── adminhtml │ │ └── default │ │ └── default │ │ └── layout │ │ └── msp_devtools.xml └── etc │ └── modules │ └── MSP_DevTools.xml ├── composer.json ├── modman ├── screenshoots ├── m1-blocks-tab.png ├── m1-design-tab.png ├── m1-general-tab.png ├── m1-inspector-tab.png ├── m1-observers-tab.png └── m1-profiler-tab.png └── skin └── adminhtml └── default └── default └── msp_devtools ├── icon48x48.png └── styles.css /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m1-MSP_DevTools/HEAD/README.md -------------------------------------------------------------------------------- /app/code/community/MSP/DevTools/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m1-MSP_DevTools/HEAD/app/code/community/MSP/DevTools/Helper/Data.php -------------------------------------------------------------------------------- /app/code/community/MSP/DevTools/Model/AbstractOpsRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m1-MSP_DevTools/HEAD/app/code/community/MSP/DevTools/Model/AbstractOpsRegistry.php -------------------------------------------------------------------------------- /app/code/community/MSP/DevTools/Model/ElementRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m1-MSP_DevTools/HEAD/app/code/community/MSP/DevTools/Model/ElementRegistry.php -------------------------------------------------------------------------------- /app/code/community/MSP/DevTools/Model/EventRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m1-MSP_DevTools/HEAD/app/code/community/MSP/DevTools/Model/EventRegistry.php -------------------------------------------------------------------------------- /app/code/community/MSP/DevTools/Model/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m1-MSP_DevTools/HEAD/app/code/community/MSP/DevTools/Model/Observer.php -------------------------------------------------------------------------------- /app/code/community/MSP/DevTools/Model/PageInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m1-MSP_DevTools/HEAD/app/code/community/MSP/DevTools/Model/PageInfo.php -------------------------------------------------------------------------------- /app/code/community/MSP/DevTools/etc/adminhtml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m1-MSP_DevTools/HEAD/app/code/community/MSP/DevTools/etc/adminhtml.xml -------------------------------------------------------------------------------- /app/code/community/MSP/DevTools/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m1-MSP_DevTools/HEAD/app/code/community/MSP/DevTools/etc/config.xml -------------------------------------------------------------------------------- /app/code/community/MSP/DevTools/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m1-MSP_DevTools/HEAD/app/code/community/MSP/DevTools/etc/system.xml -------------------------------------------------------------------------------- /app/code/community/Varien/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m1-MSP_DevTools/HEAD/app/code/community/Varien/Profiler.php -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/layout/msp_devtools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m1-MSP_DevTools/HEAD/app/design/adminhtml/default/default/layout/msp_devtools.xml -------------------------------------------------------------------------------- /app/etc/modules/MSP_DevTools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m1-MSP_DevTools/HEAD/app/etc/modules/MSP_DevTools.xml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m1-MSP_DevTools/HEAD/composer.json -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m1-MSP_DevTools/HEAD/modman -------------------------------------------------------------------------------- /screenshoots/m1-blocks-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m1-MSP_DevTools/HEAD/screenshoots/m1-blocks-tab.png -------------------------------------------------------------------------------- /screenshoots/m1-design-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m1-MSP_DevTools/HEAD/screenshoots/m1-design-tab.png -------------------------------------------------------------------------------- /screenshoots/m1-general-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m1-MSP_DevTools/HEAD/screenshoots/m1-general-tab.png -------------------------------------------------------------------------------- /screenshoots/m1-inspector-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m1-MSP_DevTools/HEAD/screenshoots/m1-inspector-tab.png -------------------------------------------------------------------------------- /screenshoots/m1-observers-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m1-MSP_DevTools/HEAD/screenshoots/m1-observers-tab.png -------------------------------------------------------------------------------- /screenshoots/m1-profiler-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m1-MSP_DevTools/HEAD/screenshoots/m1-profiler-tab.png -------------------------------------------------------------------------------- /skin/adminhtml/default/default/msp_devtools/icon48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m1-MSP_DevTools/HEAD/skin/adminhtml/default/default/msp_devtools/icon48x48.png -------------------------------------------------------------------------------- /skin/adminhtml/default/default/msp_devtools/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m1-MSP_DevTools/HEAD/skin/adminhtml/default/default/msp_devtools/styles.css --------------------------------------------------------------------------------