DigitalPianism_ReportsViewer - Version 0.1.2

Version Notes

- Modify the admin route regarding Magento patch SUPEE-6788

Download this release

Release Info

Developer Digital Pianism
Extension DigitalPianism_ReportsViewer
Version 0.1.2
Comparing to
See all releases


Code changes from version 0.1.1 to 0.1.2

app/code/community/DigitalPianism/ReportsViewer/etc/adminhtml.xml CHANGED
@@ -11,7 +11,7 @@
11
  <reportsviewer translate="title" module="reportsviewer">
12
  <title>Reports Viewer</title>
13
  <sort_order>10</sort_order>
14
- <action>reportsviewer_admin/adminhtml_reportsviewer/index</action>
15
  </reportsviewer>
16
  </children>
17
  </tools>
11
  <reportsviewer translate="title" module="reportsviewer">
12
  <title>Reports Viewer</title>
13
  <sort_order>10</sort_order>
14
+ <action>adminhtml/reportsviewer/index</action>
15
  </reportsviewer>
16
  </children>
17
  </tools>
app/code/community/DigitalPianism/ReportsViewer/etc/config.xml CHANGED
@@ -2,20 +2,20 @@
2
  <config>
3
  <modules>
4
  <DigitalPianism_ReportsViewer>
5
- <version>0.1.1</version>
6
  </DigitalPianism_ReportsViewer>
7
  </modules>
8
 
9
  <admin>
10
  <routers>
11
  <!-- Admin route -->
12
- <reportsviewer_admin>
13
- <use>admin</use>
14
  <args>
15
- <module>DigitalPianism_ReportsViewer</module>
16
- <frontName>reportsviewer_admin</frontName>
 
17
  </args>
18
- </reportsviewer_admin>
19
  </routers>
20
  </admin>
21
 
2
  <config>
3
  <modules>
4
  <DigitalPianism_ReportsViewer>
5
+ <version>0.1.2</version>
6
  </DigitalPianism_ReportsViewer>
7
  </modules>
8
 
9
  <admin>
10
  <routers>
11
  <!-- Admin route -->
12
+ <adminhtml>
 
13
  <args>
14
+ <modules>
15
+ <DigitalPianism_ReportsViewer before="Mage_Adminhtml">DigitalPianism_ReportsViewer_Adminhtml</DigitalPianism_ReportsViewer>
16
+ </modules>
17
  </args>
18
+ </adminhtml>
19
  </routers>
20
  </admin>
21
 
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>DigitalPianism_ReportsViewer</name>
4
- <version>0.1.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
@@ -32,11 +32,11 @@
32
  &lt;p&gt;The only data not included in the grid is the trace.&lt;/p&gt;&#xD;
33
  &lt;p&gt;So when you click the "view details" link or if you click directly on the row, you will get access to a page that displays all the data of the grid PLUS the trace of the report.&lt;/p&gt;&#xD;
34
  &lt;p&gt;From this page, you can also delete a report.&lt;/p&gt;</description>
35
- <notes>- Improve the module in order to remove useless files and make the module lighter in terms of number of files</notes>
36
  <authors><author><name>Digital Pianism</name><user>digitalpianism</user><email>contact@digital-pianism.com</email></author></authors>
37
- <date>2015-10-06</date>
38
- <time>15:13:22</time>
39
- <contents><target name="magecommunity"><dir name="DigitalPianism"><dir name="ReportsViewer"><dir name="Block"><dir name="Adminhtml"><dir name="Reportsviewer"><dir name="Edit"><file name="Form.php" hash="bc942115a68e06b8d55070acebe1ae30"/></dir><file name="Edit.php" hash="f663f46b866cab890d5e65bf518b9cd6"/><file name="Grid.php" hash="171701c72a3e79be881a3da5cd329330"/></dir><file name="Reportsviewer.php" hash="435ba2d5670972469abf33bf4a56c18b"/><dir name="Template"><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="9b199863366e23c861f8db6c678da774"/></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="f935bdafe07317db7f3ca3e29f5daabd"/></dir><dir name="Model"><file name="Report.php" hash="6a127d94d02c50463dc3836d7faf2628"/><dir name="Reports"><file name="Collection.php" hash="f331931709f211467faf7351221f00c8"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ReportsviewerController.php" hash="1e80c6df64e895030eb8ab3ef3d1ef2c"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="b460c9d10c922c26c1bbf121933992a5"/><file name="config.xml" hash="54049e98e6c9701dff37eab72a015fa0"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="DigitalPianism_ReportsViewer.xml" hash="bc4370b8f8905113dcf26afbbbd062c6"/></dir></target></contents>
40
  <compatible/>
41
  <dependencies><required><php><min>4.1.0</min><max>6.0.0</max></php></required></dependencies>
42
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>DigitalPianism_ReportsViewer</name>
4
+ <version>0.1.2</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
32
  &lt;p&gt;The only data not included in the grid is the trace.&lt;/p&gt;&#xD;
33
  &lt;p&gt;So when you click the "view details" link or if you click directly on the row, you will get access to a page that displays all the data of the grid PLUS the trace of the report.&lt;/p&gt;&#xD;
34
  &lt;p&gt;From this page, you can also delete a report.&lt;/p&gt;</description>
35
+ <notes>- Modify the admin route regarding Magento patch SUPEE-6788</notes>
36
  <authors><author><name>Digital Pianism</name><user>digitalpianism</user><email>contact@digital-pianism.com</email></author></authors>
37
+ <date>2015-10-23</date>
38
+ <time>16:34:42</time>
39
+ <contents><target name="magecommunity"><dir name="DigitalPianism"><dir name="ReportsViewer"><dir name="Block"><dir name="Adminhtml"><dir name="Reportsviewer"><dir name="Edit"><file name="Form.php" hash="bc942115a68e06b8d55070acebe1ae30"/></dir><file name="Edit.php" hash="f663f46b866cab890d5e65bf518b9cd6"/><file name="Grid.php" hash="171701c72a3e79be881a3da5cd329330"/></dir><file name="Reportsviewer.php" hash="435ba2d5670972469abf33bf4a56c18b"/><dir name="Template"><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="9b199863366e23c861f8db6c678da774"/></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="f935bdafe07317db7f3ca3e29f5daabd"/></dir><dir name="Model"><file name="Report.php" hash="6a127d94d02c50463dc3836d7faf2628"/><dir name="Reports"><file name="Collection.php" hash="f331931709f211467faf7351221f00c8"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ReportsviewerController.php" hash="1e80c6df64e895030eb8ab3ef3d1ef2c"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="2d04d0108e7d751abdc5754113688ecf"/><file name="config.xml" hash="1cc68bacc40afd3cf1c6469a9d343dfe"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="DigitalPianism_ReportsViewer.xml" hash="bc4370b8f8905113dcf26afbbbd062c6"/></dir></target></contents>
40
  <compatible/>
41
  <dependencies><required><php><min>4.1.0</min><max>6.0.0</max></php></required></dependencies>
42
  </package>