Version Notes
Stable version
Download this release
Release Info
Developer | Vitaly |
Extension | upload-file-tags |
Version | 0.1.1 |
Comparing to | |
See all releases |
Code changes from version 0.1.0 to 0.1.1
app/code/local/Freaks/Quotes/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Freaks_Quotes>
|
5 |
-
<version>0.1.
|
6 |
</Freaks_Quotes>
|
7 |
</modules>
|
8 |
<global>
|
@@ -51,24 +51,6 @@
|
|
51 |
</quotes_read>
|
52 |
</resources>
|
53 |
</global>
|
54 |
-
<frontend>
|
55 |
-
<routers>
|
56 |
-
<Freaks_Quotes>
|
57 |
-
<use>standard</use>
|
58 |
-
<args>
|
59 |
-
<module>Freaks_Quotes</module>
|
60 |
-
<frontName>quotes</frontName>
|
61 |
-
</args>
|
62 |
-
</Freaks_Quotes>
|
63 |
-
</routers>
|
64 |
-
<layout>
|
65 |
-
<updates>
|
66 |
-
<freaks_quotes>
|
67 |
-
<file>freaks/quotes.xml</file>
|
68 |
-
</freaks_quotes>
|
69 |
-
</updates>
|
70 |
-
</layout>
|
71 |
-
</frontend>
|
72 |
<adminhtml>
|
73 |
<layout>
|
74 |
<updates>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Freaks_Quotes>
|
5 |
+
<version>0.1.1</version>
|
6 |
</Freaks_Quotes>
|
7 |
</modules>
|
8 |
<global>
|
51 |
</quotes_read>
|
52 |
</resources>
|
53 |
</global>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
<adminhtml>
|
55 |
<layout>
|
56 |
<updates>
|
app/code/local/Magestore/Fgrid/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Magestore_Fgrid>
|
5 |
-
<version>0.1.
|
6 |
</Magestore_Fgrid>
|
7 |
</modules>
|
8 |
<frontend>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Magestore_Fgrid>
|
5 |
+
<version>0.1.1</version>
|
6 |
</Magestore_Fgrid>
|
7 |
</modules>
|
8 |
<frontend>
|
app/code/local/Magestore/Fgrid/sql/fgrid_setup/mysql4-upgrade-0.1.0-0.2.0.php
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
$installer = $this;
|
4 |
+
|
5 |
+
$installer->startSetup();
|
6 |
+
|
7 |
+
$installer->run("
|
8 |
+
|
9 |
+
-- DROP TABLE IF EXISTS {$this->getTable('fgrid')};
|
10 |
+
CREATE TABLE {$this->getTable('fgrid')} (
|
11 |
+
`fgrid_id` int(11) unsigned NOT NULL auto_increment,
|
12 |
+
`title` varchar(255) NOT NULL default '',
|
13 |
+
`filename` varchar(255) NOT NULL default '',
|
14 |
+
`content` text NOT NULL default '',
|
15 |
+
`status` smallint(6) NOT NULL default '0',
|
16 |
+
`created_time` datetime NULL,
|
17 |
+
`update_time` datetime NULL,
|
18 |
+
PRIMARY KEY (`fgrid_id`)
|
19 |
+
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
20 |
+
|
21 |
+
");
|
22 |
+
|
23 |
+
$installer->endSetup();
|
app/code/local/Magestore/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Magestore_>
|
5 |
-
<version>0.1.
|
6 |
</Magestore_>
|
7 |
</modules>
|
8 |
<admin>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Magestore_>
|
5 |
+
<version>0.1.1</version>
|
6 |
</Magestore_>
|
7 |
</modules>
|
8 |
<admin>
|
package.xml
CHANGED
@@ -1,18 +1,31 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>upload-file-tags</name>
|
4 |
-
<version>0.1.
|
5 |
<stability>stable</stability>
|
6 |
<license>open source</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
-
<summary>
|
10 |
-
<description
|
11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
<authors><author><name>Vitaly</name><user>Vitaly</user><email>v.morozov@interesnee.ru</email></author></authors>
|
13 |
-
<date>2014-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magelocal"><dir name="Freaks"><dir><dir name="Quotes"><dir name="Block"><dir name="Adminhtml"><dir name="Edit"><file name="Form.php" hash="cc87c7842fa29e951e0aab9c4a3159fd"/></dir><file name="Edit.php" hash="7d6dd8f97368adc16d1e7d4d08778bd7"/><dir name="Quotes"><file name="Grid.php" hash="c8917404c387757ecfb45de73aee66e4"/></dir><file name="Quotes.php" hash="b83e8a10619c25828e42bf729b3ba417"/></dir><file name="Content.php" hash="629da41c84fa0c872475b08a73660efb"/><dir name="Quote"><file name="Content.php" hash="c4048e9054a7d15021d56f431ad6ea8c"/></dir></dir><dir name="Helper"><file name="Data.php" hash="db40438ce5ff268f6fcab95de55fa3b2"/></dir><dir name="Model"><file name="Quote.php" hash="8f0e8a8782914ad3e3effaefa48ee988"/><dir name="Resource"><dir name="Quote"><file name="Collection.php" hash="b9603de0a76a4b6fbce0239393ba65bc"/></dir><file name="Quote.php" hash="9263ac9fc539b8be1a804315de79ff7b"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="QuotesController.php" hash="65143799b4ce9332eb06e02eb38ca6cf"/></dir><file name="IndexController.php" hash="0c2799665be433b46943628b9949e8b6"/></dir><dir name="etc"><file name="adminhtml.xml" hash="08a8f1faa12a4e62ebcb077d6512d838"/><file name="config.xml" hash="
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.3.0</min><max>5.4.13</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>upload-file-tags</name>
|
4 |
+
<version>0.1.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>open source</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
+
<summary>upload files & set tags</summary>
|
10 |
+
<description><p>
|
11 |
+
This extension allows the administrator to add files and point to the downloaded file tags.
|
12 |
+
Site visitor going to the download page files (url:/download-files) to see a list of all the files it can also apply a filter on the tag, and download the file.
|
13 |
+
</p>
|
14 |
+
<p>
|
15 |
+
<b>INSTRUCTION</b>
|
16 |
+
</p>
|
17 |
+
<ol>
|
18 |
+
<li>Going to backend, <b>[Top menu of Magento Store Admin Panel]</b> click on tab "Upload Files".</li>
|
19 |
+
<li>Click on button "Add new file",<br />
|
20 |
+
set title, set tags, select file and click "Save".</li>
|
21 |
+
<li>After upload file, go to frontend "<b>[YouMagentoURL]/download-files/"</b><br />to see a list of all the files.</li>
|
22 |
+
<li>To download a file, you need to click on the File Tittle.</li>
|
23 |
+
</ol></description>
|
24 |
+
<notes>Stable version</notes>
|
25 |
<authors><author><name>Vitaly</name><user>Vitaly</user><email>v.morozov@interesnee.ru</email></author></authors>
|
26 |
+
<date>2014-07-05</date>
|
27 |
+
<time>09:29:46</time>
|
28 |
+
<contents><target name="magelocal"><dir name="Freaks"><dir><dir name="Quotes"><dir name="Block"><dir name="Adminhtml"><dir name="Edit"><file name="Form.php" hash="cc87c7842fa29e951e0aab9c4a3159fd"/></dir><file name="Edit.php" hash="7d6dd8f97368adc16d1e7d4d08778bd7"/><dir name="Quotes"><file name="Grid.php" hash="c8917404c387757ecfb45de73aee66e4"/></dir><file name="Quotes.php" hash="b83e8a10619c25828e42bf729b3ba417"/></dir><file name="Content.php" hash="629da41c84fa0c872475b08a73660efb"/><dir name="Quote"><file name="Content.php" hash="c4048e9054a7d15021d56f431ad6ea8c"/></dir></dir><dir name="Helper"><file name="Data.php" hash="db40438ce5ff268f6fcab95de55fa3b2"/></dir><dir name="Model"><file name="Quote.php" hash="8f0e8a8782914ad3e3effaefa48ee988"/><dir name="Resource"><dir name="Quote"><file name="Collection.php" hash="b9603de0a76a4b6fbce0239393ba65bc"/></dir><file name="Quote.php" hash="9263ac9fc539b8be1a804315de79ff7b"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="QuotesController.php" hash="65143799b4ce9332eb06e02eb38ca6cf"/></dir><file name="IndexController.php" hash="0c2799665be433b46943628b9949e8b6"/></dir><dir name="etc"><file name="adminhtml.xml" hash="08a8f1faa12a4e62ebcb077d6512d838"/><file name="config.xml" hash="65ebb9e6962f9089fb646bab8d9a67b7"/></dir><dir name="sql"><dir name="quotes_setup"><file name="mysql4-install-0.1.0.php" hash="7c3a76fcb789119054626e0f821103d4"/></dir></dir></dir></dir></dir><dir name="Magestore"><dir><dir name="Fgrid"><dir name="Block"><file name="Fgrid.php" hash="4912be1bc6af98feaea65f4b078d4ede"/></dir><dir name="Helper"><file name="Data.php" hash="f1606b88b5e07d1a4f2f3c3a45ebefff"/></dir><dir name="Model"><file name="Fgrid.php" hash="273d7832b7f3ade3a222ed6d57f28b0d"/><dir name="Mysql4"><dir name="Fgrid"><file name="Collection.php" hash="0aa4cf0d88a89de990298ddcb6d6e3f5"/></dir><file name="Fgrid.php" hash="18a75313218f2460168951519f9819cf"/></dir><file name="Status.php" hash="818d0af801f97d9001d3573a5ab02271"/></dir><dir name="controllers"><file name="IndexController.php" hash="fd55c4ab6062a3cc2892472c4477a28e"/></dir><dir name="etc"><file name="config.xml" hash="793690188657e68d3cbd34daef3d4839"/></dir><dir name="sql"><dir name="fgrid_setup"><file name="mysql4-install-0.1.0.php" hash="f0a9f96bcaa824875accf08537d0250f"/><file name="mysql4-upgrade-0.1.0-0.2.0.php" hash="f0a9f96bcaa824875accf08537d0250f"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="d19170fd4ae18d9ad150f04a77bc56a3"/></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><file name="fgrid.xml" hash=""/><dir name="layout"><file name="fgrid.xml" hash=""/></dir></dir></dir></dir><dir name="modules"><file name="Magestore_Fgrid.xml" hash=""/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="freaks"><file name="quotes.xml" hash="b2e8e5bcf917e273d000038d68cd3244"/></dir><file name="fgrid.xml" hash="529c16d57bd2e9fc7bbf8f9674fb47ce"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Freaks_All.xml" hash="d94fcb7e6f8955c964839aeeb41a26b3"/></dir></target></contents>
|
29 |
<compatible/>
|
30 |
<dependencies><required><php><min>5.3.0</min><max>5.4.13</max></php></required></dependencies>
|
31 |
</package>
|