opswaypipeliner - Version 1.0.1

Version Notes

First release.

Download this release

Release Info

Developer OpsWay
Extension opswaypipeliner
Version 1.0.1
Comparing to
See all releases


Code changes from version 1.0.0 to 1.0.1

app/code/community/OpsWay/Pipeliner/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <OpsWay_Pipeliner>
5
- <version>1.0.0</version>
6
  <depends>
7
  <!-- no dependencies -->
8
  </depends>
@@ -133,4 +133,4 @@
133
  </pipeliner>
134
  </routers>
135
  </frontend>
136
- </config>
2
  <config>
3
  <modules>
4
  <OpsWay_Pipeliner>
5
+ <version>1.0.1</version>
6
  <depends>
7
  <!-- no dependencies -->
8
  </depends>
133
  </pipeliner>
134
  </routers>
135
  </frontend>
136
+ </config>
app/code/community/OpsWay/Pipeliner/etc/config.xml~ ADDED
@@ -0,0 +1,136 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <OpsWay_Pipeliner>
5
+ <version>1.0.0</version>
6
+ <depends>
7
+ <!-- no dependencies -->
8
+ </depends>
9
+ </OpsWay_Pipeliner>
10
+ </modules>
11
+
12
+ <global>
13
+ <models>
14
+ <pipeliner>
15
+ <class>OpsWay_Pipeliner_Model</class>
16
+ </pipeliner>
17
+ </models>
18
+
19
+ <helpers>
20
+ <pipeliner>
21
+ <class>OpsWay_Pipeliner_Helper</class>
22
+ </pipeliner>
23
+ </helpers>
24
+
25
+ <blocks>
26
+ <pipeliner>
27
+ <class>OpsWay_Pipeliner_Block</class>
28
+ </pipeliner>
29
+ <adminhtml>
30
+ <rewrite>
31
+ <system_config_form_fieldset>OpsWay_Pipeliner_Block_Adminhtml_Info</system_config_form_fieldset>
32
+ </rewrite>
33
+ </adminhtml>
34
+ </blocks>
35
+
36
+ <resources>
37
+ <add_category_attribute>
38
+ <setup>
39
+ <module>OpsWay_Pipeliner</module>
40
+ <class>Mage_Catalog_Model_Resource_Setup</class>
41
+ </setup>
42
+ <connection>
43
+ <use>core_setup</use>
44
+ </connection>
45
+ </add_category_attribute>
46
+ <add_category_attribute_write>
47
+ <connection>
48
+ <use>core_write</use>
49
+ </connection>
50
+ </add_category_attribute_write>
51
+ <add_category_attribute_read>
52
+ <connection>
53
+ <use>core_read</use>
54
+ </connection>
55
+ </add_category_attribute_read>
56
+ <add_product_attribute>
57
+ <setup>
58
+ <module>OpsWay_Pipeliner</module>
59
+ <class>Mage_Catalog_Model_Resource_Setup</class>
60
+ </setup>
61
+ <connection>
62
+ <use>core_setup</use>
63
+ </connection>
64
+ </add_product_attribute>
65
+ <add_product_attribute_write>
66
+ <connection>
67
+ <use>core_write</use>
68
+ </connection>
69
+ </add_product_attribute_write>
70
+ <add_product_attribute_read>
71
+ <connection>
72
+ <use>core_read</use>
73
+ </connection>
74
+ </add_product_attribute_read>
75
+ </resources>
76
+ <events>
77
+ <catalog_category_save_before>
78
+ <observers>
79
+ <pipeliner_events>
80
+ <class>OpsWay_Pipeliner_Model_Observer</class>
81
+ <method>saveCatalogCategoryBefore</method>
82
+ </pipeliner_events>
83
+ </observers>
84
+ </catalog_category_save_before>
85
+ <catalog_product_save_before>>
86
+ <observers>
87
+ <pipeliner_events>
88
+ <class>OpsWay_Pipeliner_Model_Observer</class>
89
+ <method>saveCatalogProductBefore</method>
90
+ </pipeliner_events>
91
+ </observers>
92
+ </catalog_product_save_before>>
93
+ <customer_save_commit_after>
94
+ <observers>
95
+ <pipeliner_events>
96
+ <class>OpsWay_Pipeliner_Model_Observer</class>
97
+ <method>saveCustomerAfterCommit</method>
98
+ </pipeliner_events>
99
+ </observers>
100
+ </customer_save_commit_after>
101
+ <sales_order_save_after>
102
+ <observers>
103
+ <pipeliner_events>
104
+ <class>OpsWay_Pipeliner_Model_Observer</class>
105
+ <method>saveOrderAfterCommit</method>
106
+ </pipeliner_events>
107
+ </observers>
108
+ </sales_order_save_after>
109
+ </events>
110
+ </global>
111
+ <crontab>
112
+ <jobs>
113
+ <pipeliner>
114
+ <schedule><cron_expr>*/10 * * * *</cron_expr></schedule>
115
+ <run><model>pipeliner/observer::syncCategories</model></run>
116
+ </pipeliner>
117
+ </jobs>
118
+ <jobs>
119
+ <pipeliner>
120
+ <schedule><cron_expr>*/10 * * * *</cron_expr></schedule>
121
+ <run><model>pipeliner/observer::syncProducts</model></run>
122
+ </pipeliner>
123
+ </jobs>
124
+ </crontab>
125
+ <frontend>
126
+ <routers>
127
+ <pipeliner>
128
+ <use>standard</use>
129
+ <args>
130
+ <module>OpsWay_Pipeliner</module>
131
+ <frontName>pipeliner</frontName>
132
+ </args>
133
+ </pipeliner>
134
+ </routers>
135
+ </frontend>
136
+ </config>
package.xml CHANGED
@@ -1,5 +1,5 @@
1
  <?xml version="1.0"?>
2
- <package><name>opswaypipeliner</name><version>1.0.0</version><stability>stable</stability><license>GPL</license><channel>community</channel><extends></extends><summary>Extension allow synchronizing data bidirectional between Magento stores and PipelinerCRM system. </summary><description>Why Pipeliner CRM? Because Seeing Is Believing
3
  &lt;br /&gt;&lt;br /&gt;
4
  Visualize your sales pipeline and gain actionable insights. Open your Pipeliner CRM and get an instantly readable graphical overview of all your opportunities in the context of your sales process. A visually rich, uncluttered model of your actual sales pipeline acts as your interface. It&#x2019;s real-time sales data, organized so you can always remain focused on revenue targets.&lt;br /&gt;&lt;br /&gt;
5
  Highlights:&lt;br /&gt;
@@ -48,4 +48,4 @@ Highlights:&lt;br /&gt;
48
  Sales teams see value and adopt enthusiastically&lt;br /&gt;
49
  Training in hours with low learning curve&lt;br /&gt;
50
  Low monthly fee and no hidden costs&lt;br /&gt;
51
- 30-day trial with no strings attached, no credit card required&lt;br /&gt;</description><notes>First release.</notes><authors><author><name>OpsWay</name><user>opsway</user><email>support@opsway.com</email></author></authors><date>2015-01-30</date><time>5:47:48</time><compatible></compatible><dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies><contents><target name="mage"><dir name="app"><dir name="code"><dir name="community"><dir name="OpsWay"><dir name="Pipeliner"><dir name="Model"><file name="Observer.php" hash="8776c533bc613b8a93f115f2a3512dac"/></dir><dir name="Block"><dir name="Adminhtml"><file name="Info.php" hash="28c5df48aa8bb0d810cecf0b2b354a38"/></dir></dir><dir name="sql"><dir name="add_category_attribute"><file name="mysql4-install-0.1.0.php" hash="3e10b5d23b9be7a8376b81e06de9f4e3"/></dir><dir name="add_product_attribute"><file name="mysql4-install-0.1.0.php" hash="ce57114b907ec036fb77966adc94dbdb"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="40c46162a55bd94e0eb89887454c074f"/><file name="config.xml" hash="490171689f34f7d8487ec8d3ace51229"/><file name="system.xml" hash="82a4d7cfa5e11e1e044938d92dc0beaf"/></dir><dir name="Helper"><file name="Data.php" hash="c823691777c829a34a854300746c9a65"/></dir></dir></dir></dir></dir><dir name="etc"><dir name="modules"><file name="Opsway_Pipeliner.xml" hash="43f8f455cec48bcbbba4f3bf57bd817b"/></dir></dir></dir><dir name="lib"><dir name="PipelinerSales"><file name="Defaults.php" hash="795a176bb235f06d3448f6b9c6c3770c"/><file name="Entity.php" hash="5522df47ab3789ac5c482153955c0846"/><file name="EntityCollection.php" hash="aa2ed3ae72b6070d80b79aca53b3a4ea"/><file name="EntityCollectionIterator.php" hash="0d9b207d7d3ec116b921d0d1caea4a0a"/><file name="InfoMethodsInterface.php" hash="f818ac50b3db96181e5de6f1fb38b5ef"/><file name="PipelinerClient.php" hash="15aec4048b43abef79bc549a850c8c21"/><file name="PipelinerClientException.php" hash="c7e0a501301d601ffc65be53fd77ba87"/><dir name="Http"><file name="CreatedResponse.php" hash="5b756f254ca570eec533b6582e9e7714"/><file name="CurlHttpClient.php" hash="bc9c2d00e16c62d37b2a9e07bab32abd"/><file name="HttpInterface.php" hash="6da80eac3ec77abd4ba380906118e755"/><file name="PipelinerHttpException.php" hash="2267d7448b8215f15db84a8ec630a17f"/><file name="Response.php" hash="945a5eb498e10c7db56792bba4def283"/></dir><dir name="Model"><file name="Version.php" hash="e7568bfd273ce4a3ee72b52d26257ed5"/></dir><dir name="Repository"><file name="RepositoryFactoryInterface.php" hash="ac965687e601d9c69124d96c299517b5"/><file name="RepositoryInterface.php" hash="65aa4dab5594b59972cd9577ae3455cb"/><dir name="Rest"><file name="RestCreatedResponse.php" hash="ddd5f97b0d4e32d192aa3f9d4e31c3d2"/><file name="RestInfoMethods.php" hash="714f1f5f0a89fec7784aac2bdaef6ef8"/><file name="RestRepository.php" hash="c21909d5078d910cb6344daae7d87187"/><file name="RestRepositoryFactory.php" hash="2862f4b0c21b21eebe8b571427372017"/></dir></dir><dir name="Query"><file name="Criteria.php" hash="2d2f2defca5480895c79352fb31dc0a3"/><file name="Filter.php" hash="b240a1be7244431fb5939a777c55c27d"/><file name="Sort.php" hash="c1ab4109a461427cd016866472989bc4"/></dir></dir></dir></target></contents></package>
1
  <?xml version="1.0"?>
2
+ <package><name>opswaypipeliner</name><version>1.0.1</version><stability>stable</stability><license>GPL</license><channel>community</channel><extends></extends><summary>Extension allow synchronizing data bidirectional between Magento stores and PipelinerCRM system. </summary><description>Why Pipeliner CRM? Because Seeing Is Believing
3
  &lt;br /&gt;&lt;br /&gt;
4
  Visualize your sales pipeline and gain actionable insights. Open your Pipeliner CRM and get an instantly readable graphical overview of all your opportunities in the context of your sales process. A visually rich, uncluttered model of your actual sales pipeline acts as your interface. It&#x2019;s real-time sales data, organized so you can always remain focused on revenue targets.&lt;br /&gt;&lt;br /&gt;
5
  Highlights:&lt;br /&gt;
48
  Sales teams see value and adopt enthusiastically&lt;br /&gt;
49
  Training in hours with low learning curve&lt;br /&gt;
50
  Low monthly fee and no hidden costs&lt;br /&gt;
51
+ 30-day trial with no strings attached, no credit card required&lt;br /&gt;</description><notes>First release.</notes><authors><author><name>OpsWay</name><user>opsway</user><email>support@opsway.com</email></author></authors><date>2015-01-30</date><time>14:56:37</time><compatible></compatible><dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies><contents><target name="mage"><dir name="lib"><dir name="PipelinerSales"><file name="Defaults.php" hash="795a176bb235f06d3448f6b9c6c3770c"/><file name="Entity.php" hash="5522df47ab3789ac5c482153955c0846"/><file name="EntityCollection.php" hash="aa2ed3ae72b6070d80b79aca53b3a4ea"/><file name="EntityCollectionIterator.php" hash="0d9b207d7d3ec116b921d0d1caea4a0a"/><file name="InfoMethodsInterface.php" hash="f818ac50b3db96181e5de6f1fb38b5ef"/><file name="PipelinerClient.php" hash="15aec4048b43abef79bc549a850c8c21"/><file name="PipelinerClientException.php" hash="c7e0a501301d601ffc65be53fd77ba87"/><dir name="Http"><file name="CreatedResponse.php" hash="5b756f254ca570eec533b6582e9e7714"/><file name="CurlHttpClient.php" hash="bc9c2d00e16c62d37b2a9e07bab32abd"/><file name="HttpInterface.php" hash="6da80eac3ec77abd4ba380906118e755"/><file name="PipelinerHttpException.php" hash="2267d7448b8215f15db84a8ec630a17f"/><file name="Response.php" hash="945a5eb498e10c7db56792bba4def283"/></dir><dir name="Model"><file name="Version.php" hash="e7568bfd273ce4a3ee72b52d26257ed5"/></dir><dir name="Repository"><file name="RepositoryFactoryInterface.php" hash="ac965687e601d9c69124d96c299517b5"/><file name="RepositoryInterface.php" hash="65aa4dab5594b59972cd9577ae3455cb"/><dir name="Rest"><file name="RestCreatedResponse.php" hash="ddd5f97b0d4e32d192aa3f9d4e31c3d2"/><file name="RestInfoMethods.php" hash="714f1f5f0a89fec7784aac2bdaef6ef8"/><file name="RestRepository.php" hash="c21909d5078d910cb6344daae7d87187"/><file name="RestRepositoryFactory.php" hash="2862f4b0c21b21eebe8b571427372017"/></dir></dir><dir name="Query"><file name="Criteria.php" hash="2d2f2defca5480895c79352fb31dc0a3"/><file name="Filter.php" hash="b240a1be7244431fb5939a777c55c27d"/><file name="Sort.php" hash="c1ab4109a461427cd016866472989bc4"/></dir></dir></dir><dir name="app"><dir name="code"><dir name="community"><dir name="OpsWay"><dir name="Pipeliner"><dir name="etc"><file name="adminhtml.xml" hash="40c46162a55bd94e0eb89887454c074f"/><file name="config.xml" hash="6ad5b893ad479887430aaaec4d36bf0e"/><file name="config.xml~" hash="490171689f34f7d8487ec8d3ace51229"/><file name="system.xml" hash="82a4d7cfa5e11e1e044938d92dc0beaf"/></dir><dir name="sql"><dir name="add_product_attribute"><file name="mysql4-install-0.1.0.php" hash="ce57114b907ec036fb77966adc94dbdb"/></dir><dir name="add_category_attribute"><file name="mysql4-install-0.1.0.php" hash="3e10b5d23b9be7a8376b81e06de9f4e3"/></dir></dir><dir name="Model"><file name="Observer.php" hash="8776c533bc613b8a93f115f2a3512dac"/></dir><dir name="Block"><dir name="Adminhtml"><file name="Info.php" hash="28c5df48aa8bb0d810cecf0b2b354a38"/></dir></dir><dir name="Helper"><file name="Data.php" hash="c823691777c829a34a854300746c9a65"/></dir></dir></dir></dir></dir><dir name="etc"><dir name="modules"><file name="Opsway_Pipeliner.xml" hash="43f8f455cec48bcbbba4f3bf57bd817b"/></dir></dir></dir></target></contents></package>