├── .codeclimate.yml ├── .gitignore ├── .travis.yml ├── README.md ├── app ├── code │ └── community │ │ └── IntegerNet │ │ └── DevDashboard │ │ ├── Block │ │ ├── Cache.php │ │ ├── Cache │ │ │ └── Grid.php │ │ ├── Config.php │ │ ├── Config │ │ │ └── Dev.php │ │ ├── Devdashboard.php │ │ ├── Info │ │ │ ├── Magento.php │ │ │ ├── Patches.php │ │ │ └── System.php │ │ └── Notifications.php │ │ ├── Helper │ │ └── Data.php │ │ ├── Model │ │ ├── AppliedPatches.php │ │ ├── RequiredPatches.php │ │ └── RequiredPatches │ │ │ └── Api.php │ │ ├── Test │ │ ├── Block │ │ │ ├── Abstract.php │ │ │ ├── Cache.php │ │ │ ├── Cache │ │ │ │ └── Grid.php │ │ │ ├── Config │ │ │ │ └── Dev.php │ │ │ ├── Info │ │ │ │ ├── Magento.php │ │ │ │ ├── Patches.php │ │ │ │ └── System.php │ │ │ └── Notifications.php │ │ ├── Config │ │ │ └── Config.php │ │ ├── Controller │ │ │ ├── DashboardController.php │ │ │ └── DashboardMenu.php │ │ └── Model │ │ │ ├── AppliedPatches.php │ │ │ └── RequiredPatches.php │ │ ├── controllers │ │ └── Adminhtml │ │ │ └── DevdashboardController.php │ │ └── etc │ │ ├── adminhtml.xml │ │ ├── config.xml │ │ └── system.xml ├── design │ └── adminhtml │ │ └── default │ │ └── default │ │ ├── layout │ │ └── integernet_devdashboard.xml │ │ └── template │ │ └── integernet_devdashboard │ │ ├── index.phtml │ │ ├── info │ │ ├── magento.phtml │ │ ├── patches.phtml │ │ └── system.phtml │ │ └── notifications.phtml ├── etc │ └── modules │ │ └── IntegerNet_DevDashboard.xml └── locale │ └── en_US │ └── IntegerNet_DevDashboard.csv ├── composer.json ├── doc └── dashboard.png └── modman /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/README.md -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Block/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Block/Cache.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Block/Cache/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Block/Cache/Grid.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Block/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Block/Config.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Block/Config/Dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Block/Config/Dev.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Block/Devdashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Block/Devdashboard.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Block/Info/Magento.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Block/Info/Magento.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Block/Info/Patches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Block/Info/Patches.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Block/Info/System.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Block/Info/System.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Block/Notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Block/Notifications.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Helper/Data.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Model/AppliedPatches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Model/AppliedPatches.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Model/RequiredPatches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Model/RequiredPatches.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Model/RequiredPatches/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Model/RequiredPatches/Api.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Test/Block/Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Test/Block/Abstract.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Test/Block/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Test/Block/Cache.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Test/Block/Cache/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Test/Block/Cache/Grid.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Test/Block/Config/Dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Test/Block/Config/Dev.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Test/Block/Info/Magento.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Test/Block/Info/Magento.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Test/Block/Info/Patches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Test/Block/Info/Patches.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Test/Block/Info/System.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Test/Block/Info/System.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Test/Block/Notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Test/Block/Notifications.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Test/Config/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Test/Config/Config.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Test/Controller/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Test/Controller/DashboardController.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Test/Controller/DashboardMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Test/Controller/DashboardMenu.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Test/Model/AppliedPatches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Test/Model/AppliedPatches.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/Test/Model/RequiredPatches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/Test/Model/RequiredPatches.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/controllers/Adminhtml/DevdashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/controllers/Adminhtml/DevdashboardController.php -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/etc/adminhtml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/etc/adminhtml.xml -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/etc/config.xml -------------------------------------------------------------------------------- /app/code/community/IntegerNet/DevDashboard/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/code/community/IntegerNet/DevDashboard/etc/system.xml -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/layout/integernet_devdashboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/design/adminhtml/default/default/layout/integernet_devdashboard.xml -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/template/integernet_devdashboard/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/design/adminhtml/default/default/template/integernet_devdashboard/index.phtml -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/template/integernet_devdashboard/info/magento.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/design/adminhtml/default/default/template/integernet_devdashboard/info/magento.phtml -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/template/integernet_devdashboard/info/patches.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/design/adminhtml/default/default/template/integernet_devdashboard/info/patches.phtml -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/template/integernet_devdashboard/info/system.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/design/adminhtml/default/default/template/integernet_devdashboard/info/system.phtml -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/template/integernet_devdashboard/notifications.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/design/adminhtml/default/default/template/integernet_devdashboard/notifications.phtml -------------------------------------------------------------------------------- /app/etc/modules/IntegerNet_DevDashboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/etc/modules/IntegerNet_DevDashboard.xml -------------------------------------------------------------------------------- /app/locale/en_US/IntegerNet_DevDashboard.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/app/locale/en_US/IntegerNet_DevDashboard.csv -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/composer.json -------------------------------------------------------------------------------- /doc/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/doc/dashboard.png -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/DevDashboard/HEAD/modman --------------------------------------------------------------------------------