Web-forms - Version 1.0.1

Version Notes

This release is stable and contains sample data

Download this release

Release Info

Developer Vladimir Popov
Extension Web-forms
Version 1.0.1
Comparing to
See all releases


Code changes from version 1.0.0 to 1.0.1

Files changed (48) hide show
  1. app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Fields/Edit.php +1 -1
  2. app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Fields/Edit/Form.php +1 -1
  3. app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Fields/Edit/Tab/Design.php +1 -1
  4. app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Fields/Edit/Tab/Information.php +1 -1
  5. app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Fields/Edit/Tabs.php +1 -1
  6. app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Fieldsets/Edit.php +1 -1
  7. app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Fieldsets/Edit/Form.php +1 -1
  8. app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Menu.php +1 -1
  9. app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Results.php +1 -1
  10. app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Results/Grid.php +1 -1
  11. app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Results/Renderer/Customer.php +1 -1
  12. app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Results/Renderer/Value.php +1 -1
  13. app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Webforms.php +1 -1
  14. app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Webforms/Edit.php +1 -1
  15. app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Webforms/Edit/Form.php +1 -1
  16. app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Webforms/Edit/Tab/Fields.php +1 -1
  17. app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Webforms/Edit/Tab/Fieldsets.php +1 -1
  18. app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Webforms/Edit/Tab/Information.php +1 -1
  19. app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Webforms/Edit/Tab/Settings.php +1 -1
  20. app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Webforms/Edit/Tabs.php +1 -1
  21. app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Webforms/Grid.php +1 -1
  22. app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Webforms/Renderer/Action.php +1 -1
  23. app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Webforms/Renderer/Fields.php +1 -1
  24. app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Webforms/Renderer/Results.php +1 -1
  25. app/code/community/VladimirPopov/WebForms/Block/Webforms.php +1 -1
  26. app/code/community/VladimirPopov/WebForms/Block/Widget.php +1 -1
  27. app/code/community/VladimirPopov/WebForms/Helper/Data.php +1 -1
  28. app/code/community/VladimirPopov/WebForms/Model/Fields.php +1 -1
  29. app/code/community/VladimirPopov/WebForms/Model/Fieldsets.php +1 -1
  30. app/code/community/VladimirPopov/WebForms/Model/Mysql4/Fields.php +1 -1
  31. app/code/community/VladimirPopov/WebForms/Model/Mysql4/Fields/Collection.php +1 -1
  32. app/code/community/VladimirPopov/WebForms/Model/Mysql4/Fieldsets.php +1 -1
  33. app/code/community/VladimirPopov/WebForms/Model/Mysql4/Fieldsets/Collection.php +1 -1
  34. app/code/community/VladimirPopov/WebForms/Model/Mysql4/Results.php +1 -1
  35. app/code/community/VladimirPopov/WebForms/Model/Mysql4/Results/Collection.php +1 -1
  36. app/code/community/VladimirPopov/WebForms/Model/Mysql4/Webforms.php +1 -1
  37. app/code/community/VladimirPopov/WebForms/Model/Mysql4/Webforms/Collection.php +1 -1
  38. app/code/community/VladimirPopov/WebForms/Model/Results.php +1 -1
  39. app/code/community/VladimirPopov/WebForms/Model/Webforms.php +1 -1
  40. app/code/community/VladimirPopov/WebForms/controllers/Adminhtml/FieldsController.php +1 -1
  41. app/code/community/VladimirPopov/WebForms/controllers/Adminhtml/FieldsetsController.php +1 -1
  42. app/code/community/VladimirPopov/WebForms/controllers/Adminhtml/ResultsController.php +1 -1
  43. app/code/community/VladimirPopov/WebForms/controllers/Adminhtml/WebformsController.php +1 -1
  44. app/code/community/VladimirPopov/WebForms/controllers/IndexController.php +1 -1
  45. app/code/community/VladimirPopov/WebForms/etc/config.xml +1 -1
  46. app/code/community/VladimirPopov/WebForms/sql/webforms_setup/{mysql4-install-1.0.0.php → mysql4-install-1.0.1.php} +1 -1
  47. app/design/frontend/default/default/template/webforms/default.phtml +1 -1
  48. package.xml +4 -4
app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Fields/Edit.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Fields/Edit/Form.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Fields/Edit/Tab/Design.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Fields/Edit/Tab/Information.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Fields/Edit/Tabs.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Fieldsets/Edit.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Fieldsets/Edit/Form.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Menu.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Results.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Results/Grid.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Results/Renderer/Customer.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Results/Renderer/Value.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Webforms.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Webforms/Edit.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Webforms/Edit/Form.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Webforms/Edit/Tab/Fields.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Webforms/Edit/Tab/Fieldsets.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Webforms/Edit/Tab/Information.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Webforms/Edit/Tab/Settings.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Webforms/Edit/Tabs.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Webforms/Grid.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Webforms/Renderer/Action.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Webforms/Renderer/Fields.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Adminhtml/Webforms/Renderer/Results.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Webforms.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Block/Widget.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Helper/Data.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Model/Fields.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Model/Fieldsets.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Model/Mysql4/Fields.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Model/Mysql4/Fields/Collection.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Model/Mysql4/Fieldsets.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Model/Mysql4/Fieldsets/Collection.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Model/Mysql4/Results.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Model/Mysql4/Results/Collection.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Model/Mysql4/Webforms.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Model/Mysql4/Webforms/Collection.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Model/Results.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/Model/Webforms.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/controllers/Adminhtml/FieldsController.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/controllers/Adminhtml/FieldsetsController.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/controllers/Adminhtml/ResultsController.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/controllers/Adminhtml/WebformsController.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/controllers/IndexController.php CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/community/VladimirPopov/WebForms/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <VladimirPopov_WebForms>
5
- <version>1.0.0</version>
6
  </VladimirPopov_WebForms>
7
  </modules>
8
  <frontend>
2
  <config>
3
  <modules>
4
  <VladimirPopov_WebForms>
5
+ <version>1.0.1</version>
6
  </VladimirPopov_WebForms>
7
  </modules>
8
  <frontend>
app/code/community/VladimirPopov/WebForms/sql/webforms_setup/{mysql4-install-1.0.0.php → mysql4-install-1.0.1.php} RENAMED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/design/frontend/default/default/template/webforms/default.phtml CHANGED
@@ -4,7 +4,7 @@
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
- * @author Vladimir Popov (magento-it.com)
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * http://www.facebook.com/rebimol
5
  *
6
  *
7
+ * @author Vladimir Popov
8
  * @copyright Copyright (c) 2011 Vladimir Popov
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Web-forms</name>
4
- <version>1.0.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
@@ -23,9 +23,9 @@ Widget interface&#xD;
23
  </description>
24
  <notes>This release is stable and contains sample data</notes>
25
  <authors><author><name>Vladimir Popov</name><user>rebimol</user><email>rebimol@gmail.com</email></author></authors>
26
- <date>2011-06-28</date>
27
- <time>10:34:54</time>
28
- <contents><target name="magecommunity"><dir name="VladimirPopov"><dir name="WebForms"><dir name="Block"><dir name="Adminhtml"><dir name="Fields"><dir name="Edit"><file name="Form.php" hash="d50e03fbdca39202221416717077f2ba"/><dir name="Tab"><file name="Design.php" hash="408a020918d28972075ebdeede5a09c7"/><file name="Information.php" hash="a1c94fcc73655190c36c299fbbae6712"/></dir><file name="Tabs.php" hash="6e730e0325f6d8c62cbaaaf49434e067"/></dir><file name="Edit.php" hash="d2b487829fa100f67bde4520b4204baf"/></dir><dir name="Fieldsets"><dir name="Edit"><file name="Form.php" hash="5d1eaf0601753f3ac4107959c0c56ddf"/></dir><file name="Edit.php" hash="ad3d32506037443ee89b7857817c7481"/></dir><file name="Menu.php" hash="26203e0de4f1093d67a70055defb598d"/><dir name="Results"><file name="Grid.php" hash="841f1d2d27c355053f392460dbbe8557"/><dir name="Renderer"><file name="Customer.php" hash="2bed3ab369eef73f80d8abf67a2ae45c"/><file name="Value.php" hash="6e983c04dfbbbe71a9a58a948b248e06"/></dir></dir><file name="Results.php" hash="d2127ec1a4639bb9e676965c105cf8a7"/><dir name="Webforms"><dir name="Edit"><file name="Form.php" hash="c4b525bd38a40b38dbebc18a372690c4"/><dir name="Tab"><file name="Fields.php" hash="ea3229f01030d6728e592fbfa6c40463"/><file name="Fieldsets.php" hash="358422bf07236fc0f09399ac0a4cdacb"/><file name="Information.php" hash="73d84677686acf950e838b7e546d075a"/><file name="Settings.php" hash="b10b9ec0b1c891d6df9b30f740ca2b58"/></dir><file name="Tabs.php" hash="eb3c86eac0e93e6a9f66c1233ca79bc1"/></dir><file name="Edit.php" hash="62572ee93f3d187cb5d8b22baec5ddbd"/><file name="Grid.php" hash="dde6e315cd679b8bb4345e14b06e6fbe"/><dir name="Renderer"><file name="Action.php" hash="6d7f31835245361426d3aef9cd0e90ab"/><file name="Fields.php" hash="7141da168afe028d89a292a90cdc5b70"/><file name="Results.php" hash="bf3fff65cb72006dfe7ae7273738b126"/></dir></dir><file name="Webforms.php" hash="be5395fa7cb37409d5abd3325cce83d3"/></dir><file name="Webforms.php" hash="f50860a806594a9f65cdf39a924b4bc7"/><file name="Widget.php" hash="015d534b56798c7be9beb2f19cb80860"/></dir><dir name="Helper"><file name="Data.php" hash="81741460c659f6a2df8fcb5636f7f434"/></dir><dir name="Model"><file name="Fields.php" hash="4bb33d166b0dc19d3e90e54153d0370e"/><file name="Fieldsets.php" hash="574644ade9e12b6f27721ed7c8b8810d"/><dir name="Mysql4"><dir name="Fields"><file name="Collection.php" hash="d8d08d301cdede52873aeaadf9701e4c"/></dir><file name="Fields.php" hash="30737dd7b095016be55c28ba75db9360"/><dir name="Fieldsets"><file name="Collection.php" hash="b278afccf81a3a41382e40fa145629b0"/></dir><file name="Fieldsets.php" hash="c8abcb2145d9e98b83ecf9941da62271"/><dir name="Results"><file name="Collection.php" hash="f791e79817183c247fc6254adef0f5fd"/></dir><file name="Results.php" hash="d8818a107444cad0eca847f8c41df6b8"/><dir name="Webforms"><file name="Collection.php" hash="70c8b2c870ebe0ff90e705b9a37c84d4"/></dir><file name="Webforms.php" hash="a6ca077775a6efa64f90ad1962f80d3d"/></dir><file name="Results.php" hash="13350f882156d00d6b739eb51a43adaa"/><file name="Webforms.php" hash="aa2a344f286514d87f541b6b5a80ff68"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="FieldsController.php" hash="a658d62baafbd26c7a348518920ee0cb"/><file name="FieldsetsController.php" hash="6053860be647e7bf9439951a3b7620ba"/><file name="ResultsController.php" hash="3e7b0e865f3d54ec4c7beedaabc0489f"/><file name="WebformsController.php" hash="5d8f6f95e4e7a645ad2b204cd8ea9e3b"/></dir><file name="IndexController.php" hash="64a80458723135f4772d17ade9f44242"/></dir><dir name="etc"><file name="config.xml" hash="3717fb9489858d3feac326fc159f0b46"/><file name="system.xml" hash="a9aa042b21c76f2a53405a42e05b068f"/><file name="widget.xml" hash="4ce4dfc5e052cf6e081136bae2c8de6f"/></dir><dir name="sql"><dir name="webforms_setup"><file name="mysql4-install-1.0.0.php" hash="6915e04b9a572e918cb5c24ffec06a0c"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="VladimirPopov_WebForms.csv" hash="0e9a00ad901a5d91268641733a56c94d"/><dir name="template"><dir name="email"><file name="webforms_results.html" hash="bf775d1f202162d9c20154107c031b27"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="webforms.xml" hash="5fb83919accc09539dd4df6e0670fbc3"/></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="webforms.xml" hash="19b288c8fe2db45a655aadd9f6d24ccd"/></dir><dir name="template"><dir name="webforms"><file name="default.phtml" hash="059b914b35a1ca1e9a2e211b6c2119bc"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="VladimirPopov_WebForms.xml" hash="cb5fecfd55a527b2e3cc388d9c254848"/></dir></target></contents>
29
  <compatible/>
30
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
31
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Web-forms</name>
4
+ <version>1.0.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
23
  </description>
24
  <notes>This release is stable and contains sample data</notes>
25
  <authors><author><name>Vladimir Popov</name><user>rebimol</user><email>rebimol@gmail.com</email></author></authors>
26
+ <date>2011-06-29</date>
27
+ <time>16:48:25</time>
28
+ <contents><target name="magecommunity"><dir name="VladimirPopov"><dir name="WebForms"><dir name="Block"><dir name="Adminhtml"><dir name="Fields"><dir name="Edit"><file name="Form.php" hash="9ffe2818060c46cb4fc74ce5cb91b5d3"/><dir name="Tab"><file name="Design.php" hash="39fd8a60cf7ea4418b5af7faae586975"/><file name="Information.php" hash="dea900db9dcfb25ae20466de72da13da"/></dir><file name="Tabs.php" hash="f386fe1baa9f1059597361a4e3abf50c"/></dir><file name="Edit.php" hash="0a6048d2a169f049f08c2b83e233b4ee"/></dir><dir name="Fieldsets"><dir name="Edit"><file name="Form.php" hash="07f97eaece3a1c81461ec562d6248218"/></dir><file name="Edit.php" hash="bb8e13b4080e9f486d71b4c28c64acb3"/></dir><file name="Menu.php" hash="4ebf5d63161f2e2a0e241af6a3e63ed9"/><dir name="Results"><file name="Grid.php" hash="a37011942220640d2c8b54a877957c0f"/><dir name="Renderer"><file name="Customer.php" hash="d8ec4e96a0328e4ede0541cbabff6785"/><file name="Value.php" hash="93e405c9319ed4b49820198896079c5d"/></dir></dir><file name="Results.php" hash="7b98dd1e0d25cfb9de609debfe2631b9"/><dir name="Webforms"><dir name="Edit"><file name="Form.php" hash="840719eda1da4bf4e87818a681a648e6"/><dir name="Tab"><file name="Fields.php" hash="d7025e4f851cdd04537d7f2d097708a5"/><file name="Fieldsets.php" hash="116b02a5d04354dab2a515c95e680afe"/><file name="Information.php" hash="83ce9571d7ea046c08f7225eed356ac1"/><file name="Settings.php" hash="9df715e6b5879b0b39ff5b5e7454179a"/></dir><file name="Tabs.php" hash="35518794b40de4a53c5e67752016e139"/></dir><file name="Edit.php" hash="798043bcb29e39e8b3722d9d9d9c8f6c"/><file name="Grid.php" hash="700c803514f8d11af836bda4085208a0"/><dir name="Renderer"><file name="Action.php" hash="28c80bbe3629fcf2d0311ec2be71977d"/><file name="Fields.php" hash="306f94d4f48a41ab0a504abe542e7e53"/><file name="Results.php" hash="677db08f6d7f44e567ac00d389d0be8f"/></dir></dir><file name="Webforms.php" hash="5420eb22f9328001d64978c4e8f78ffc"/></dir><file name="Webforms.php" hash="fc7d37a99e91d041565cefce45d7f42f"/><file name="Widget.php" hash="6dce28e97ec3ddf7c382ce03a99aa26f"/></dir><dir name="Helper"><file name="Data.php" hash="48560d0f68aa91ed46c3476f06521b09"/></dir><dir name="Model"><file name="Fields.php" hash="15befd9b0ca29b4dc07422fb2f6566f7"/><file name="Fieldsets.php" hash="15b00e18c2e6c86573e90066550dc368"/><dir name="Mysql4"><dir name="Fields"><file name="Collection.php" hash="6082820c93f20beff0d0047a58e0f38c"/></dir><file name="Fields.php" hash="d86cb29269ff56b47a835822a0b227d6"/><dir name="Fieldsets"><file name="Collection.php" hash="6314b0b08baea7c6e281b47b087f17e6"/></dir><file name="Fieldsets.php" hash="2c9cc1d8fb137a74f5d54d72ca56e4a1"/><dir name="Results"><file name="Collection.php" hash="876201edb777cacc96b5012274786371"/></dir><file name="Results.php" hash="a580b87d855c97bcde86289a34da4f08"/><dir name="Webforms"><file name="Collection.php" hash="08a22b16b19dd90d62ab664ecb6c1897"/></dir><file name="Webforms.php" hash="8845b56994427eb8981f426d094a6977"/></dir><file name="Results.php" hash="a3fc84d71ca5e22090bf4ba91fbf7c49"/><file name="Webforms.php" hash="4151a1759c2ccb9f0738047ade1d444f"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="FieldsController.php" hash="067b7ae0f535eb48b61ec9ec4a862932"/><file name="FieldsetsController.php" hash="9af41a7aacb8668604fab12134ba73e2"/><file name="ResultsController.php" hash="1d2ec9d0cdc121cc0c5241c9e00439b8"/><file name="WebformsController.php" hash="8f5e5285540ad9a1d44f6faff47315f3"/></dir><file name="IndexController.php" hash="f546518ffff7f08a10f15f8b094a4889"/></dir><dir name="etc"><file name="config.xml" hash="af74651656497f41b7531ae2ecfb812c"/><file name="system.xml" hash="a9aa042b21c76f2a53405a42e05b068f"/><file name="widget.xml" hash="4ce4dfc5e052cf6e081136bae2c8de6f"/></dir><dir name="sql"><dir name="webforms_setup"><file name="mysql4-install-1.0.1.php" hash="768d487a6b0fd660a4350693c01dc84f"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="VladimirPopov_WebForms.csv" hash="0e9a00ad901a5d91268641733a56c94d"/><dir name="template"><dir name="email"><file name="webforms_results.html" hash="bf775d1f202162d9c20154107c031b27"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="webforms.xml" hash="5fb83919accc09539dd4df6e0670fbc3"/></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="webforms.xml" hash="19b288c8fe2db45a655aadd9f6d24ccd"/></dir><dir name="template"><dir name="webforms"><file name="default.phtml" hash="e1e323bffbaea850eff72ce985afacbc"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="VladimirPopov_WebForms.xml" hash="cb5fecfd55a527b2e3cc388d9c254848"/></dir></target></contents>
29
  <compatible/>
30
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
31
  </package>