├── README.md ├── app ├── code │ └── local │ │ └── Clean │ │ └── SqlReports │ │ ├── Block │ │ └── Adminhtml │ │ │ ├── Report.php │ │ │ ├── Report │ │ │ ├── Edit.php │ │ │ ├── Edit │ │ │ │ └── Form.php │ │ │ ├── Grid.php │ │ │ ├── View.php │ │ │ └── View │ │ │ │ └── Grid.php │ │ │ └── Widget │ │ │ └── Grid │ │ │ └── Column │ │ │ └── Renderer │ │ │ └── Action.php │ │ ├── Helper │ │ └── Data.php │ │ ├── Model │ │ ├── Mysql4 │ │ │ ├── Report.php │ │ │ └── Report │ │ │ │ └── Collection.php │ │ └── Report.php │ │ ├── controllers │ │ └── Adminhtml │ │ │ └── ReportController.php │ │ ├── etc │ │ ├── adminhtml.xml │ │ └── config.xml │ │ └── sql │ │ └── Clean_SqlReports │ │ └── install-0.1.0.php ├── design │ └── adminhtml │ │ └── base │ │ └── default │ │ └── layout │ │ └── cleansql.xml └── etc │ └── modules │ └── Clean_SqlReports.xml ├── composer.json └── modman /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Clean_SqlReports/HEAD/README.md -------------------------------------------------------------------------------- /app/code/local/Clean/SqlReports/Block/Adminhtml/Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Clean_SqlReports/HEAD/app/code/local/Clean/SqlReports/Block/Adminhtml/Report.php -------------------------------------------------------------------------------- /app/code/local/Clean/SqlReports/Block/Adminhtml/Report/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Clean_SqlReports/HEAD/app/code/local/Clean/SqlReports/Block/Adminhtml/Report/Edit.php -------------------------------------------------------------------------------- /app/code/local/Clean/SqlReports/Block/Adminhtml/Report/Edit/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Clean_SqlReports/HEAD/app/code/local/Clean/SqlReports/Block/Adminhtml/Report/Edit/Form.php -------------------------------------------------------------------------------- /app/code/local/Clean/SqlReports/Block/Adminhtml/Report/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Clean_SqlReports/HEAD/app/code/local/Clean/SqlReports/Block/Adminhtml/Report/Grid.php -------------------------------------------------------------------------------- /app/code/local/Clean/SqlReports/Block/Adminhtml/Report/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Clean_SqlReports/HEAD/app/code/local/Clean/SqlReports/Block/Adminhtml/Report/View.php -------------------------------------------------------------------------------- /app/code/local/Clean/SqlReports/Block/Adminhtml/Report/View/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Clean_SqlReports/HEAD/app/code/local/Clean/SqlReports/Block/Adminhtml/Report/View/Grid.php -------------------------------------------------------------------------------- /app/code/local/Clean/SqlReports/Block/Adminhtml/Widget/Grid/Column/Renderer/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Clean_SqlReports/HEAD/app/code/local/Clean/SqlReports/Block/Adminhtml/Widget/Grid/Column/Renderer/Action.php -------------------------------------------------------------------------------- /app/code/local/Clean/SqlReports/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Clean_SqlReports/HEAD/app/code/local/Clean/SqlReports/Helper/Data.php -------------------------------------------------------------------------------- /app/code/local/Clean/SqlReports/Model/Mysql4/Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Clean_SqlReports/HEAD/app/code/local/Clean/SqlReports/Model/Mysql4/Report.php -------------------------------------------------------------------------------- /app/code/local/Clean/SqlReports/Model/Mysql4/Report/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Clean_SqlReports/HEAD/app/code/local/Clean/SqlReports/Model/Mysql4/Report/Collection.php -------------------------------------------------------------------------------- /app/code/local/Clean/SqlReports/Model/Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Clean_SqlReports/HEAD/app/code/local/Clean/SqlReports/Model/Report.php -------------------------------------------------------------------------------- /app/code/local/Clean/SqlReports/controllers/Adminhtml/ReportController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Clean_SqlReports/HEAD/app/code/local/Clean/SqlReports/controllers/Adminhtml/ReportController.php -------------------------------------------------------------------------------- /app/code/local/Clean/SqlReports/etc/adminhtml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Clean_SqlReports/HEAD/app/code/local/Clean/SqlReports/etc/adminhtml.xml -------------------------------------------------------------------------------- /app/code/local/Clean/SqlReports/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Clean_SqlReports/HEAD/app/code/local/Clean/SqlReports/etc/config.xml -------------------------------------------------------------------------------- /app/code/local/Clean/SqlReports/sql/Clean_SqlReports/install-0.1.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Clean_SqlReports/HEAD/app/code/local/Clean/SqlReports/sql/Clean_SqlReports/install-0.1.0.php -------------------------------------------------------------------------------- /app/design/adminhtml/base/default/layout/cleansql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Clean_SqlReports/HEAD/app/design/adminhtml/base/default/layout/cleansql.xml -------------------------------------------------------------------------------- /app/etc/modules/Clean_SqlReports.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Clean_SqlReports/HEAD/app/etc/modules/Clean_SqlReports.xml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Clean_SqlReports/HEAD/composer.json -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Clean_SqlReports/HEAD/modman --------------------------------------------------------------------------------