├── README.md ├── app ├── code │ └── local │ │ └── My │ │ └── Reports │ │ ├── Block │ │ └── Adminhtml │ │ │ ├── Filter │ │ │ └── Form.php │ │ │ ├── Report.php │ │ │ └── Report │ │ │ ├── Grid.php │ │ │ └── Grid │ │ │ └── Column │ │ │ └── Renderer │ │ │ └── Percent.php │ │ ├── Helper │ │ └── Data.php │ │ ├── Model │ │ └── Mysql4 │ │ │ └── Report │ │ │ └── Collection.php │ │ ├── controllers │ │ └── Adminhtml │ │ │ └── My │ │ │ └── ReportsController.php │ │ └── etc │ │ ├── adminhtml.xml │ │ └── config.xml ├── design │ └── adminhtml │ │ └── default │ │ └── default │ │ └── layout │ │ └── my_reports.xml └── etc │ └── modules │ └── My_Reports.xml └── modman /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodelight/magento_custom_reports_example/HEAD/README.md -------------------------------------------------------------------------------- /app/code/local/My/Reports/Block/Adminhtml/Filter/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodelight/magento_custom_reports_example/HEAD/app/code/local/My/Reports/Block/Adminhtml/Filter/Form.php -------------------------------------------------------------------------------- /app/code/local/My/Reports/Block/Adminhtml/Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodelight/magento_custom_reports_example/HEAD/app/code/local/My/Reports/Block/Adminhtml/Report.php -------------------------------------------------------------------------------- /app/code/local/My/Reports/Block/Adminhtml/Report/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodelight/magento_custom_reports_example/HEAD/app/code/local/My/Reports/Block/Adminhtml/Report/Grid.php -------------------------------------------------------------------------------- /app/code/local/My/Reports/Block/Adminhtml/Report/Grid/Column/Renderer/Percent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodelight/magento_custom_reports_example/HEAD/app/code/local/My/Reports/Block/Adminhtml/Report/Grid/Column/Renderer/Percent.php -------------------------------------------------------------------------------- /app/code/local/My/Reports/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodelight/magento_custom_reports_example/HEAD/app/code/local/My/Reports/Helper/Data.php -------------------------------------------------------------------------------- /app/code/local/My/Reports/Model/Mysql4/Report/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodelight/magento_custom_reports_example/HEAD/app/code/local/My/Reports/Model/Mysql4/Report/Collection.php -------------------------------------------------------------------------------- /app/code/local/My/Reports/controllers/Adminhtml/My/ReportsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodelight/magento_custom_reports_example/HEAD/app/code/local/My/Reports/controllers/Adminhtml/My/ReportsController.php -------------------------------------------------------------------------------- /app/code/local/My/Reports/etc/adminhtml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodelight/magento_custom_reports_example/HEAD/app/code/local/My/Reports/etc/adminhtml.xml -------------------------------------------------------------------------------- /app/code/local/My/Reports/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodelight/magento_custom_reports_example/HEAD/app/code/local/My/Reports/etc/config.xml -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/layout/my_reports.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodelight/magento_custom_reports_example/HEAD/app/design/adminhtml/default/default/layout/my_reports.xml -------------------------------------------------------------------------------- /app/etc/modules/My_Reports.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodelight/magento_custom_reports_example/HEAD/app/etc/modules/My_Reports.xml -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodelight/magento_custom_reports_example/HEAD/modman --------------------------------------------------------------------------------