25b501e69796565a07fa4a3baf71ec43 - Version 1.1.0

Version Notes

Funzinalità supportate:
- Chiamate webRTC
- DTMF
- Form per messaggio testuale di segreteria
- Form per messaggio vocale di segreteria
- Lingua Client

Nuova grafica

Download this release

Release Info

Developer YourVoice
Extension 25b501e69796565a07fa4a3baf71ec43
Version 1.1.0
Comparing to
See all releases


Code changes from version 1.0.0 to 1.1.0

app/code/community/Kubitoo/Webrtc/Block/Adminhtml/Configuration/Edit/Field/Custom.php CHANGED
@@ -15,28 +15,93 @@ class Kubitoo_Webrtc_Block_Adminhtml_Configuration_Edit_Field_Custom extends Var
15
  <div id="proposta1" data-value="Call now">
16
  <input type="radio" name="buttonhtml" value="1" checked="checked"/>
17
  <span>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  <span>Call now</span>
19
  </span>
20
  </div>
21
  <div id="proposta2" data-value="Contact us">
22
  <input type="radio" name="buttonhtml" value="2"/>
23
  <span>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  <span>Contact us</span>
25
  </span>
26
  </div>
27
  <div id="proposta3" data-value="Receive information">
28
  <input type="radio" name="buttonhtml" value="3"/>
29
  <span>
30
- <span>Receive information</span>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  </span>
32
  </div>
33
  </div>';
34
  $html .= "<script src=\"https://code.jquery.com/jquery-1.12.2.min.js\" crossorigin=\"anonymous\"></script>
35
  <script>
 
 
 
 
 
36
  var css = [];
37
- css['proposta1'] = \"<style type='text/css'>@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,300italic,700);.btn_kubitoo{display:inline-block;width:150px;height:50px;position:relative;border:1px solid #346494;border-radius:4px;background:url(".Mage::getDesign()->getSkinUrl('images/kubitoo/sf_bottone1.png').") 10px 5px no-repeat #fff}.btn_kubitoo:hover{background:url(".Mage::getDesign()->getSkinUrl('images/kubitoo/sf_bottone1_sel.png').") 10px 5px no-repeat #346494}.btn_kubitoo>span{position:absolute;top:18px;left:38px;width:110px;font-size:14px;line-height:14px;height:15px;text-transform:uppercase;font-weight:700;color:#346494;font-family:'Open Sans Condensed',sans-serif;overflow:hidden;text-align:center;}.btn_kubitoo:hover>span{color:#fff}</style>\";
38
- css['proposta2'] = \"<style type='text/css'>@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,300italic,700);.btn_kubitoo{display:inline-block;width:150px;height:50px;position:relative;border:1px solid #346494;border-radius:4px;background:#fff url(".Mage::getDesign()->getSkinUrl('images/kubitoo/sf_bottone2.png').") 15px 6px no-repeat;}.btn_kubitoo:hover{background:#346494 url(".Mage::getDesign()->getSkinUrl('images/kubitoo/sf_bottone2_sel.png').") 15px 6px no-repeat;}.btn_kubitoo>span{position:absolute;bottom:15px;left:40px;width:100px;font-size:14px;line-height:14px;height:15px;text-transform:uppercase;color:#346494;font-weight:bold;font-family:'Open Sans Condensed',sans-serif;overflow:hidden;text-align:center;}.btn_kubitoo:hover>span{color:#fff}</style>\";
39
- css['proposta3'] = \"<style type='text/css'>@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,300italic,700);.btn_kubitoo{display:inline-block;width:150px;height:50px;position:relative;border:1px solid #346494;border-radius:4px;background:#fff url(".Mage::getDesign()->getSkinUrl('images/kubitoo/sf_bottone3.png').") 8px 9px no-repeat}.btn_kubitoo:hover{background:#346494 url(".Mage::getDesign()->getSkinUrl('images/kubitoo/sf_bottone3_sel.png').") 8px 9px no-repeat; }.btn_kubitoo>span{position:absolute;top:10px;left:46px;width:95px;font-size:14px;line-height:14px;height:30px;text-transform:uppercase;color:#346494;font-weight:700;font-family:'Open Sans Condensed',sans-serif;overflow:hidden;text-align:center;}.btn_kubitoo:hover>span{color:#fff}</style>\";
40
 
41
  $.noConflict();
42
 
@@ -49,12 +114,13 @@ class Kubitoo_Webrtc_Block_Adminhtml_Configuration_Edit_Field_Custom extends Var
49
  }
50
  else
51
  { jQuery('#idbutton').val('1');
52
- jQuery('#". $this->getHtmlId() . " input[type=radio]:checked').parent().find('span > span').html(jQuery('#textbutton').val());
53
  }
54
 
55
  jQuery('#". $this->getHtmlId() . " input[type=radio]').change(function(){
56
  if(jQuery(this).is(':checked'))
57
  { jQuery('#idbutton').val(jQuery(this).val());
 
58
  if(jQuery('#textbutton').val() != \"\")
59
  {
60
  jQuery(this).parent().find('span > span').html(jQuery('#textbutton').val());
@@ -89,114 +155,72 @@ class Kubitoo_Webrtc_Block_Adminhtml_Configuration_Edit_Field_Custom extends Var
89
  div#" . $this->getHtmlId() ."
90
  { display:inline-block;
91
  width: 100%;
 
92
  }
93
  div#" . $this->getHtmlId() ." div
94
  { display: inline-block;
95
  float: left;
96
  margin-bottom:5px;
97
  padding: 0;
98
- width: 95%;
99
  }
100
  div#" . $this->getHtmlId() ." div > input
101
  { float:left;
102
  display:inline-block;
103
  margin:0;
104
  padding:0;
105
- margin-top:20px;
106
  }
107
  div#" . $this->getHtmlId() ." div > span
108
- { float:left;
109
- display:inline-block;
110
  margin:0;
111
  padding:0;
112
- margin-left:10px;
113
- width:110px;
114
- width:150px;
115
- height:42px;
116
- height:50px;
117
- position:relative;
118
- cursor:pointer;
119
- border:1px solid #346494;
120
- border-radius:4px;
121
- -webkit-transition: all 0.3s ease-in-out;
122
- -moz-transition: all 0.3s ease-in-out;
123
- -o-transition: all 0.3s ease-in-out;
124
- -ms-transition: all 0.3s ease-in-out;
125
- transition: all 0.3s ease-in-out;
126
- }
127
- div#" . $this->getHtmlId() ." div#proposta1 > span
128
- { background:#ffffff url(".Mage::getDesign()->getSkinUrl('images/kubitoo/sf_bottone1.png').") 10px 5px no-repeat;
 
129
  }
130
- div#" . $this->getHtmlId() ." div#proposta1 > span:hover
131
- { background:#346494 url(".Mage::getDesign()->getSkinUrl('images/kubitoo/sf_bottone1_sel.png').") 10px 5px no-repeat;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
132
  }
133
  div#" . $this->getHtmlId() ." div#proposta1 > span > span
134
- { position:absolute;
135
- top:18px;
136
- left:40px;
137
- width:100px;
138
- font-size:14px;
139
- line-height:14px;
140
- height:15px;
141
- text-transform:uppercase;
142
- font-weight:bold;
143
- color:#346494;
144
- font-family: 'Open Sans Condensed', sans-serif;
145
- overflow:hidden;
146
- text-align:center;
147
- }
148
- div#" . $this->getHtmlId() ." div#proposta1 > span:hover > span
149
- { color:#ffffff;
150
- }
151
- div#" . $this->getHtmlId() ." div#proposta2 > span
152
- { background:#ffffff url(".Mage::getDesign()->getSkinUrl('images/kubitoo/sf_bottone2.png').") 15px 6px no-repeat;
153
- }
154
- div#" . $this->getHtmlId() ." div#proposta2 > span:hover
155
- { background:#346494 url(".Mage::getDesign()->getSkinUrl('images/kubitoo/sf_bottone2_sel.png').") 15px 6px no-repeat;
156
  }
157
  div#" . $this->getHtmlId() ." div#proposta2 > span > span
158
- { position:absolute;
159
- bottom:7px;
160
- left:35px;
161
- width:100px;
162
- font-size:14px;
163
- line-height:14px;
164
- height:15px;
165
- text-transform:uppercase;
166
- color:#346494;
167
- font-weight:bold;
168
- font-family: 'Open Sans Condensed', sans-serif;
169
- overflow:hidden;
170
- text-align:center;
171
- bottom:15px;
172
- left:40px;
173
- }
174
- div#" . $this->getHtmlId() ." div#proposta2 > span:hover > span
175
- { color:#ffffff;
176
- }
177
- div#" . $this->getHtmlId() ." div#proposta3 > span
178
- { background:#ffffff url(".Mage::getDesign()->getSkinUrl('images/kubitoo/sf_bottone3.png').") 8px 9px no-repeat;
179
- }
180
- div#" . $this->getHtmlId() ." div#proposta3 > span:hover
181
- { background:#346494 url(".Mage::getDesign()->getSkinUrl('images/kubitoo/sf_bottone3_sel.png').") 8px 9px no-repeat;
182
  }
183
  div#" . $this->getHtmlId() ." div#proposta3 > span > span
184
- { position:absolute;
185
- top:10px;
186
- left:46px;
187
- width:95px;
188
- font-size:14px;
189
- line-height:14px;
190
- height:30px;
191
- text-transform:uppercase;
192
- color:#346494;
193
- font-weight:bold;
194
- font-family: 'Open Sans Condensed', sans-serif;
195
- overflow:hidden;
196
- text-align:center;
197
- }
198
- div#" . $this->getHtmlId() ." div#proposta3 > span:hover > span
199
- { color:#ffffff;
200
  }
201
  </style>";
202
  $html .= $this->getAfterElementHtml();
15
  <div id="proposta1" data-value="Call now">
16
  <input type="radio" name="buttonhtml" value="1" checked="checked"/>
17
  <span>
18
+ <svg width="37px" height="51px" viewBox="0 0 37 51" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
19
+ <defs>
20
+ <filter x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox" id="filter-1">
21
+ <feOffset dx="0" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
22
+ <feGaussianBlur stdDeviation="4" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
23
+ <feColorMatrix values="0 0 0 0 0.563004889 0 0 0 0 0.563004889 0 0 0 0 0.563004889 0 0 0 0.5 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"></feColorMatrix>
24
+ <feMerge>
25
+ <feMergeNode in="shadowMatrixOuter1"></feMergeNode>
26
+ <feMergeNode in="SourceGraphic"></feMergeNode>
27
+ </feMerge>
28
+ </filter>
29
+ </defs>
30
+ <g id="Desktop" stroke="none" stroke-width="1" fill-rule="evenodd">
31
+ <g id="Desktop-Try-and-Buy-4" transform="translate(-724.000000, -517.000000)">
32
+ <g id="Group-5" filter="url(#filter-1)" transform="translate(710.000000, 505.000000)">
33
+ <path d="M40.302,18 L24.698,18 C23.398,18 22.334,19.063 22.334,20.364 L22.334,50.635 C22.334,51.936 23.398,53 24.698,53 L40.302,53 C41.602,53 42.666,51.938 42.666,50.636 L42.666,20.364 C42.666,19.063 41.602,18 40.302,18 L40.302,18 Z M30.004,19.704 L34.996,19.704 C35.154,19.704 35.282,19.832 35.282,19.991 C35.282,20.149 35.154,20.277 34.996,20.277 L30.004,20.277 C29.846,20.277 29.718,20.149 29.718,19.991 C29.718,19.832 29.846,19.704 30.004,19.704 L30.004,19.704 Z M32.5,51.818 C31.847,51.818 31.318,51.289 31.318,50.635 C31.318,49.981 31.847,49.453 32.5,49.453 C33.153,49.453 33.682,49.981 33.682,50.635 C33.682,51.289 33.153,51.818 32.5,51.818 L32.5,51.818 Z M41.021,48.625 L23.979,48.625 L23.979,21.749 L41.021,21.749 L41.021,48.625 L41.021,48.625 Z" id="Shape"></path>
34
+ </g>
35
+ </g>
36
+ </g>
37
+ </svg>
38
  <span>Call now</span>
39
  </span>
40
  </div>
41
  <div id="proposta2" data-value="Contact us">
42
  <input type="radio" name="buttonhtml" value="2"/>
43
  <span>
44
+ <svg width="53px" height="51px" viewBox="0 0 53 51" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
45
+ <defs>
46
+ <filter x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox" id="filter-1">
47
+ <feOffset dx="0" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
48
+ <feGaussianBlur stdDeviation="4" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
49
+ <feColorMatrix values="0 0 0 0 0.563004889 0 0 0 0 0.563004889 0 0 0 0 0.563004889 0 0 0 0.5 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"></feColorMatrix>
50
+ <feMerge>
51
+ <feMergeNode in="shadowMatrixOuter1"></feMergeNode>
52
+ <feMergeNode in="SourceGraphic"></feMergeNode>
53
+ </feMerge>
54
+ </filter>
55
+ </defs>
56
+ <g id="Desktop" stroke="none" stroke-width="1" fill-rule="evenodd">
57
+ <g id="Desktop-Try-and-Buy-4" transform="translate(-721.000000, -629.000000)">
58
+ <g id="Group-5-Copy" filter="url(#filter-1)" transform="translate(710.000000, 619.000000)">
59
+ <path d="M52.9274793,28.1389189 L51.5925587,28.1389189 C51.2273901,28.1389189 51.2151939,27.9008959 51.2025877,27.7824455 C50.5025872,21.2169679 44.9061698,16.0848319 38.1282582,16.0848319 L36.8717418,16.0848319 C30.1439473,16.0848319 24.5803265,21.1411637 23.8137081,27.6369586 C23.7941326,27.8033605 23.7838837,28.1389189 23.4764164,28.1389189 L22.0724182,28.1389189 C21.1509387,28.1389189 19,29.1041723 19,33.9787986 L19,36.5370617 C19,40.1524002 21.1509387,40.9862461 22.0724182,40.9862461 L26.5393032,40.9862461 C27.4607827,40.9862461 28.2146925,40.2357542 28.2146925,39.3184523 L28.2146925,29.8067126 C28.2146925,28.8894108 27.4607827,28.1389189 26.5393032,28.1389189 C26.5393032,28.1389189 26.3289956,28.1205545 26.3825974,27.7476551 C27.119699,22.6138867 31.5202735,18.6355452 36.8717418,18.6355452 L38.1282582,18.6355452 C43.4433429,18.6355452 47.8557037,22.5551206 48.6026442,27.6430801 C48.6267292,27.8071354 48.7165096,28.1389189 48.4606968,28.1389189 C47.5392173,28.1389189 46.7853075,28.8894108 46.7853075,29.8067126 L46.7853075,39.3184523 C46.7853075,40.2357542 47.5392173,40.9862461 48.4606968,40.9862461 L49.2994676,40.9862461 C49.5300681,40.9862461 49.4909172,41.169686 49.4703169,41.2621202 C48.7870221,44.3334643 47.2527603,47.8178034 43.809024,47.8178034 L41.2581728,47.8178034 C40.9978505,47.8178034 40.9335898,47.6279359 40.8840876,47.5379503 C40.4708515,46.7863362 39.6694893,46.27652 38.7481123,46.27652 L36.3977297,46.27652 C35.0532777,46.27652 33.9633061,47.361448 33.9633061,48.6999068 C33.9633061,50.0383656 35.0532777,51.1231916 36.3977297,51.1231916 L38.7481123,51.1231916 C39.6819929,51.1231916 40.4927842,50.5996021 40.9008958,49.831358 C40.936562,49.7642259 40.9657714,49.6246564 41.2412621,49.6246564 L43.809024,49.6246564 C46.1481328,49.6246564 49.2783549,48.4675971 50.9073166,42.9550119 C51.0809331,42.3675551 51.2217532,41.7821388 51.3364385,41.2179436 C51.3522218,41.140303 51.3620608,40.9863481 51.6054724,40.9863481 L52.9275818,40.9863481 C53.8490613,40.9863481 56,40.1524002 56,36.5371637 L56,33.9789006 C55.9998975,29.1736509 53.8489588,28.1389189 52.9274793,28.1389189 L52.9274793,28.1389189 Z" id="Shape"></path>
60
+ </g>
61
+ </g>
62
+ </g>
63
+ </svg>
64
  <span>Contact us</span>
65
  </span>
66
  </div>
67
  <div id="proposta3" data-value="Receive information">
68
  <input type="radio" name="buttonhtml" value="3"/>
69
  <span>
70
+ <svg width="46px" height="46px" viewBox="0 0 46 46" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
71
+ <defs>
72
+ <filter x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox" id="filter-1">
73
+ <feOffset dx="0" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
74
+ <feGaussianBlur stdDeviation="4" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
75
+ <feColorMatrix values="0 0 0 0 0.563004889 0 0 0 0 0.563004889 0 0 0 0 0.563004889 0 0 0 0.5 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"></feColorMatrix>
76
+ <feMerge>
77
+ <feMergeNode in="shadowMatrixOuter1"></feMergeNode>
78
+ <feMergeNode in="SourceGraphic"></feMergeNode>
79
+ </feMerge>
80
+ </filter>
81
+ </defs>
82
+ <g id="Desktop" stroke="none" stroke-width="1" fill-rule="evenodd">
83
+ <g id="Desktop-Try-and-Buy-4" transform="translate(-725.000000, -750.000000)">
84
+ <g id="Group-5-Copy-2" filter="url(#filter-1)" transform="translate(709.000000, 733.000000)">
85
+ <path d="M50.3169403,23 L27.7215672,23 C25.6980597,23 24.051791,24.6340741 24.051791,26.6426667 L24.051791,41.355037 C24.051791,43.3635556 25.6980597,44.9977037 27.7216418,44.9977037 L40.0958209,44.9977037 L40.0958209,52.0752593 C40.0958209,52.4463704 40.3281343,52.7783704 40.6784328,52.9081481 C40.7805224,52.9459259 40.8863433,52.9641481 40.9911194,52.9641481 C41.2459701,52.9641481 41.4947015,52.8560741 41.668209,52.6572593 L48.3529104,44.9977037 L50.3168657,44.9977037 C52.3403731,44.9977037 53.9866418,43.3636296 53.9866418,41.355037 L53.9866418,26.6426667 C53.9867164,24.6340741 52.3404478,23 50.3169403,23 Z M49.046791,28.8631111 L28.991791,28.8631111 C28.4972388,28.8631111 28.0962687,29.2611111 28.0962687,29.752 C28.0962687,30.2428889 28.4972388,30.6408889 28.991791,30.6408889 L49.046791,30.6408889 C49.5413433,30.6408889 49.9423134,30.2428889 49.9423134,29.752 C49.9423134,29.2611111 49.5414179,28.8631111 49.046791,28.8631111 Z M49.046791,33.1099259 L28.991791,33.1099259 C28.4972388,33.1099259 28.0962687,33.5079259 28.0962687,33.9988148 C28.0962687,34.4897037 28.4972388,34.8877037 28.991791,34.8877037 L49.046791,34.8877037 C49.5413433,34.8877037 49.9423134,34.4897037 49.9423134,33.9988148 C49.9423134,33.5079259 49.5414179,33.1099259 49.046791,33.1099259 Z M38.4844776,37.3565926 L28.991791,37.3565926 C28.4972388,37.3565926 28.0962687,37.7545926 28.0962687,38.2454815 C28.0962687,38.7363704 28.4972388,39.1343704 28.991791,39.1343704 L38.4845522,39.1343704 C38.9791045,39.1343704 39.3800746,38.7363704 39.3800746,38.2454815 C39.38,37.7546667 38.9791045,37.3565926 38.4844776,37.3565926 Z" id="Combined-Shape"></path>
86
+ </g>
87
+ </g>
88
+ </g>
89
+ </svg>
90
+ <span>Receive <br/>information</span>
91
  </span>
92
  </div>
93
  </div>';
94
  $html .= "<script src=\"https://code.jquery.com/jquery-1.12.2.min.js\" crossorigin=\"anonymous\"></script>
95
  <script>
96
+ var svg = [];
97
+ svg['proposta1'] = \"<svg width='37px' height='51px' viewBox='0 0 37 51' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'><defs><filter x='-50%' y='-50%' width='200%' height='200%' filterUnits='objectBoundingBox' id='filter-1'><feOffset dx='0' dy='2' in='SourceAlpha' result='shadowOffsetOuter1'></feOffset><feGaussianBlur stdDeviation='4' in='shadowOffsetOuter1' result='shadowBlurOuter1'></feGaussianBlur><feColorMatrix values='0 0 0 0 0.563004889 0 0 0 0 0.563004889 0 0 0 0 0.563004889 0 0 0 0.5 0' type='matrix' in='shadowBlurOuter1' result='shadowMatrixOuter1'></feColorMatrix><feMerge><feMergeNode in='shadowMatrixOuter1'></feMergeNode><feMergeNode in='SourceGraphic'></feMergeNode></feMerge></filter></defs><g id='Desktop' stroke='none' stroke-width='1' fill-rule='evenodd'><g id='Desktop-Try-and-Buy-4' transform='translate(-724.000000, -517.000000)'><g id='Group-5' filter='url(#filter-1)' transform='translate(710.000000, 505.000000)'><path d='M40.302,18 L24.698,18 C23.398,18 22.334,19.063 22.334,20.364 L22.334,50.635 C22.334,51.936 23.398,53 24.698,53 L40.302,53 C41.602,53 42.666,51.938 42.666,50.636 L42.666,20.364 C42.666,19.063 41.602,18 40.302,18 L40.302,18 Z M30.004,19.704 L34.996,19.704 C35.154,19.704 35.282,19.832 35.282,19.991 C35.282,20.149 35.154,20.277 34.996,20.277 L30.004,20.277 C29.846,20.277 29.718,20.149 29.718,19.991 C29.718,19.832 29.846,19.704 30.004,19.704 L30.004,19.704 Z M32.5,51.818 C31.847,51.818 31.318,51.289 31.318,50.635 C31.318,49.981 31.847,49.453 32.5,49.453 C33.153,49.453 33.682,49.981 33.682,50.635 C33.682,51.289 33.153,51.818 32.5,51.818 L32.5,51.818 Z M41.021,48.625 L23.979,48.625 L23.979,21.749 L41.021,21.749 L41.021,48.625 L41.021,48.625 Z' id='Shape'></path></g></g></g></svg>\";
98
+ svg['proposta2'] = \"<svg width='53px' height='51px' viewBox='0 0 53 51' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'><defs><filter x='-50%' y='-50%' width='200%' height='200%' filterUnits='objectBoundingBox' id='filter-1'><feOffset dx='0' dy='2' in='SourceAlpha' result='shadowOffsetOuter1'></feOffset><feGaussianBlur stdDeviation='4' in='shadowOffsetOuter1' result='shadowBlurOuter1'></feGaussianBlur><feColorMatrix values='0 0 0 0 0.563004889 0 0 0 0 0.563004889 0 0 0 0 0.563004889 0 0 0 0.5 0' type='matrix' in='shadowBlurOuter1' result='shadowMatrixOuter1'></feColorMatrix><feMerge><feMergeNode in='shadowMatrixOuter1'></feMergeNode><feMergeNode in='SourceGraphic'></feMergeNode></feMerge></filter></defs><g id='Desktop' stroke='none' stroke-width='1' fill-rule='evenodd'><g id='Desktop-Try-and-Buy-4' transform='translate(-721.000000, -629.000000)'><g id='Group-5-Copy' filter='url(#filter-1)' transform='translate(710.000000, 619.000000)'><path d='M52.9274793,28.1389189 L51.5925587,28.1389189 C51.2273901,28.1389189 51.2151939,27.9008959 51.2025877,27.7824455 C50.5025872,21.2169679 44.9061698,16.0848319 38.1282582,16.0848319 L36.8717418,16.0848319 C30.1439473,16.0848319 24.5803265,21.1411637 23.8137081,27.6369586 C23.7941326,27.8033605 23.7838837,28.1389189 23.4764164,28.1389189 L22.0724182,28.1389189 C21.1509387,28.1389189 19,29.1041723 19,33.9787986 L19,36.5370617 C19,40.1524002 21.1509387,40.9862461 22.0724182,40.9862461 L26.5393032,40.9862461 C27.4607827,40.9862461 28.2146925,40.2357542 28.2146925,39.3184523 L28.2146925,29.8067126 C28.2146925,28.8894108 27.4607827,28.1389189 26.5393032,28.1389189 C26.5393032,28.1389189 26.3289956,28.1205545 26.3825974,27.7476551 C27.119699,22.6138867 31.5202735,18.6355452 36.8717418,18.6355452 L38.1282582,18.6355452 C43.4433429,18.6355452 47.8557037,22.5551206 48.6026442,27.6430801 C48.6267292,27.8071354 48.7165096,28.1389189 48.4606968,28.1389189 C47.5392173,28.1389189 46.7853075,28.8894108 46.7853075,29.8067126 L46.7853075,39.3184523 C46.7853075,40.2357542 47.5392173,40.9862461 48.4606968,40.9862461 L49.2994676,40.9862461 C49.5300681,40.9862461 49.4909172,41.169686 49.4703169,41.2621202 C48.7870221,44.3334643 47.2527603,47.8178034 43.809024,47.8178034 L41.2581728,47.8178034 C40.9978505,47.8178034 40.9335898,47.6279359 40.8840876,47.5379503 C40.4708515,46.7863362 39.6694893,46.27652 38.7481123,46.27652 L36.3977297,46.27652 C35.0532777,46.27652 33.9633061,47.361448 33.9633061,48.6999068 C33.9633061,50.0383656 35.0532777,51.1231916 36.3977297,51.1231916 L38.7481123,51.1231916 C39.6819929,51.1231916 40.4927842,50.5996021 40.9008958,49.831358 C40.936562,49.7642259 40.9657714,49.6246564 41.2412621,49.6246564 L43.809024,49.6246564 C46.1481328,49.6246564 49.2783549,48.4675971 50.9073166,42.9550119 C51.0809331,42.3675551 51.2217532,41.7821388 51.3364385,41.2179436 C51.3522218,41.140303 51.3620608,40.9863481 51.6054724,40.9863481 L52.9275818,40.9863481 C53.8490613,40.9863481 56,40.1524002 56,36.5371637 L56,33.9789006 C55.9998975,29.1736509 53.8489588,28.1389189 52.9274793,28.1389189 L52.9274793,28.1389189 Z' id='Shape'></path></g></g></g></svg>\";
99
+ svg['proposta3'] = \"<svg width='46px' height='46px' viewBox='0 0 46 46' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'><defs><filter x='-50%' y='-50%' width='200%' height='200%' filterUnits='objectBoundingBox' id='filter-1'><feOffset dx='0' dy='2' in='SourceAlpha' result='shadowOffsetOuter1'></feOffset><feGaussianBlur stdDeviation='4' in='shadowOffsetOuter1' result='shadowBlurOuter1'></feGaussianBlur><feColorMatrix values='0 0 0 0 0.563004889 0 0 0 0 0.563004889 0 0 0 0 0.563004889 0 0 0 0.5 0' type='matrix' in='shadowBlurOuter1' result='shadowMatrixOuter1'></feColorMatrix><feMerge><feMergeNode in='shadowMatrixOuter1'></feMergeNode><feMergeNode in='SourceGraphic'></feMergeNode></feMerge></filter></defs><g id='Desktop' stroke='none' stroke-width='1' fill-rule='evenodd'><g id='Desktop-Try-and-Buy-4' transform='translate(-725.000000, -750.000000)'><g id='Group-5-Copy-2' filter='url(#filter-1)' transform='translate(709.000000, 733.000000)'><path d='M50.3169403,23 L27.7215672,23 C25.6980597,23 24.051791,24.6340741 24.051791,26.6426667 L24.051791,41.355037 C24.051791,43.3635556 25.6980597,44.9977037 27.7216418,44.9977037 L40.0958209,44.9977037 L40.0958209,52.0752593 C40.0958209,52.4463704 40.3281343,52.7783704 40.6784328,52.9081481 C40.7805224,52.9459259 40.8863433,52.9641481 40.9911194,52.9641481 C41.2459701,52.9641481 41.4947015,52.8560741 41.668209,52.6572593 L48.3529104,44.9977037 L50.3168657,44.9977037 C52.3403731,44.9977037 53.9866418,43.3636296 53.9866418,41.355037 L53.9866418,26.6426667 C53.9867164,24.6340741 52.3404478,23 50.3169403,23 Z M49.046791,28.8631111 L28.991791,28.8631111 C28.4972388,28.8631111 28.0962687,29.2611111 28.0962687,29.752 C28.0962687,30.2428889 28.4972388,30.6408889 28.991791,30.6408889 L49.046791,30.6408889 C49.5413433,30.6408889 49.9423134,30.2428889 49.9423134,29.752 C49.9423134,29.2611111 49.5414179,28.8631111 49.046791,28.8631111 Z M49.046791,33.1099259 L28.991791,33.1099259 C28.4972388,33.1099259 28.0962687,33.5079259 28.0962687,33.9988148 C28.0962687,34.4897037 28.4972388,34.8877037 28.991791,34.8877037 L49.046791,34.8877037 C49.5413433,34.8877037 49.9423134,34.4897037 49.9423134,33.9988148 C49.9423134,33.5079259 49.5414179,33.1099259 49.046791,33.1099259 Z M38.4844776,37.3565926 L28.991791,37.3565926 C28.4972388,37.3565926 28.0962687,37.7545926 28.0962687,38.2454815 C28.0962687,38.7363704 28.4972388,39.1343704 28.991791,39.1343704 L38.4845522,39.1343704 C38.9791045,39.1343704 39.3800746,38.7363704 39.3800746,38.2454815 C39.38,37.7546667 38.9791045,37.3565926 38.4844776,37.3565926 Z' id='Combined-Shape'></path></g></g></g></svg>\";
100
+
101
  var css = [];
102
+ css['proposta1'] = \"<style type='text/css'>@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,600,700);.btn_kubitoo{display:inline-block;background:#659fd5;border-radius:4px;box-shadow:0 0 1px 1px rgba(0,0,0,0.2);overflow:hidden;padding:7px 15px 7px 0;width:auto; max-width:280px}.btn_kubitoo > svg{float:left;display:inline-block;margin:0;padding:0;margin-left:20px;fill:#fff}.btn_kubitoo > span{float:left;display:inline-block;margin:0;padding:0;line-height:50px;font-family:'Open Sans',sans-serif;font-size:18px;font-weight:700;color:#fff;padding-left:5px;padding-right:5px;text-transform:uppercase;text-decoration:none;height:50px;overflow:hidden;max-width:75%}</style>\";
103
+ css['proposta2'] = \"<style type='text/css'>@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,600,700);.btn_kubitoo{display:inline-block;background:#659fd5;border-radius:4px;box-shadow:0 0 1px 1px rgba(0,0,0,0.2);overflow:hidden;padding:7px 15px 7px 0;width:auto;max-width:280px}.btn_kubitoo > svg{float:left;display:inline-block;margin:0;padding:0;margin-left:20px;fill:#fff}.btn_kubitoo > span{float:left;display:inline-block;margin:0;padding:0;line-height:50px;font-family:'Open Sans',sans-serif;font-size:18px;font-weight:700;color:#fff;padding-left:5px;padding-right:5px;text-transform:uppercase;text-decoration:none;height:50px;overflow:hidden;max-width:75%}</style>\";
104
+ css['proposta3'] = \"<style type='text/css'>@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,600,700);.btn_kubitoo{display:inline-block;background:#659fd5;border-radius:4px;box-shadow:0 0 1px 1px rgba(0,0,0,0.2);overflow:hidden;padding:7px 15px 7px 0;width:auto;max-width:280px}.btn_kubitoo > svg{float:left;display:inline-block;margin:0;padding:0;margin-left:20px;fill:#fff}.btn_kubitoo > span{float:left;display:inline-block;margin:0;padding:0;line-height:23px;font-family:'Open Sans',sans-serif;font-size:18px;font-weight:700;color:#fff;padding-left:5px;padding-right:5px;text-transform:uppercase;text-decoration:none;height:50px;overflow:hidden;max-width:75%}</style>\";
105
 
106
  $.noConflict();
107
 
114
  }
115
  else
116
  { jQuery('#idbutton').val('1');
117
+ jQuery('#imgbutton').val(svg['proposta1']);
118
  }
119
 
120
  jQuery('#". $this->getHtmlId() . " input[type=radio]').change(function(){
121
  if(jQuery(this).is(':checked'))
122
  { jQuery('#idbutton').val(jQuery(this).val());
123
+ jQuery('#imgbutton').val(svg[jQuery(this).parent().attr('id')]);
124
  if(jQuery('#textbutton').val() != \"\")
125
  {
126
  jQuery(this).parent().find('span > span').html(jQuery('#textbutton').val());
155
  div#" . $this->getHtmlId() ."
156
  { display:inline-block;
157
  width: 100%;
158
+ line-height:1;
159
  }
160
  div#" . $this->getHtmlId() ." div
161
  { display: inline-block;
162
  float: left;
163
  margin-bottom:5px;
164
  padding: 0;
165
+ width: 100%;
166
  }
167
  div#" . $this->getHtmlId() ." div > input
168
  { float:left;
169
  display:inline-block;
170
  margin:0;
171
  padding:0;
172
+ margin-top:28px;
173
  }
174
  div#" . $this->getHtmlId() ." div > span
175
+ { float: left;
176
+ display: inline-block;
177
  margin:0;
178
  padding:0;
179
+ width:auto;
180
+ margin-left:5%;
181
+ border-radius: 4.3px;
182
+ background-color: #659fd5;
183
+ box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
184
+ padding-top:7px;
185
+ padding-bottom:7px;
186
+ padding-right:15px;
187
+ max-width:80%;
188
+ overflow: hidden;
189
+ }
190
+ div#" . $this->getHtmlId() ." div > span > svg
191
+ { float: none;
192
+ display: inline-block;
193
+ margin:0;
194
+ padding:0;
195
+ margin-left:20px;
196
+ fill:#ffffff;
197
  }
198
+ div#" . $this->getHtmlId() ." div > span > span
199
+ { float:none;
200
+ display: inline-block;
201
+ margin:0;
202
+ padding:0;
203
+ line-height: 50px;
204
+ font-family: 'Open Sans', sans-serif;
205
+ font-size: 18px;
206
+ font-weight: bold;
207
+ color: #ffffff;
208
+ padding-left:5px;
209
+ padding-right:5px;
210
+ text-transform: uppercase;
211
+ text-decoration: none;
212
+ height:50px;
213
+ overflow: hidden;
214
  }
215
  div#" . $this->getHtmlId() ." div#proposta1 > span > span
216
+ { max-width:78%;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
217
  }
218
  div#" . $this->getHtmlId() ." div#proposta2 > span > span
219
+ { max-width:75%;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
220
  }
221
  div#" . $this->getHtmlId() ." div#proposta3 > span > span
222
+ { line-height: 23px;
223
+ max-width:78%;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
224
  }
225
  </style>";
226
  $html .= $this->getAfterElementHtml();
app/code/community/Kubitoo/Webrtc/Block/Adminhtml/Configuration/Edit/Form.php CHANGED
@@ -49,11 +49,22 @@ class Kubitoo_Webrtc_Block_Adminhtml_Configuration_Edit_Form extends Mage_Adminh
49
  'input' => 'text',
50
  'required' => true,
51
  ),
 
 
 
 
 
 
52
  'htmlbutton' => array(
53
  'label' => $this->__('HTML Button'),
54
  'input' => 'hidden',
55
  'required' => true,
56
  ),
 
 
 
 
 
57
  'idbutton' => array(
58
  'label' => $this->__('Id Button'),
59
  'input' => 'hidden',
49
  'input' => 'text',
50
  'required' => true,
51
  ),
52
+ 'language' => array(
53
+ 'label' => $this->__('Language'),
54
+ 'input' => 'select',
55
+ 'required' => true,
56
+ 'options' => array('en_US'=>'English','it_IT'=>'Italiano'),
57
+ ),
58
  'htmlbutton' => array(
59
  'label' => $this->__('HTML Button'),
60
  'input' => 'hidden',
61
  'required' => true,
62
  ),
63
+ 'imgbutton' => array(
64
+ 'label' => $this->__('Img Button'),
65
+ 'input' => 'hidden',
66
+ 'required' => true,
67
+ ),
68
  'idbutton' => array(
69
  'label' => $this->__('Id Button'),
70
  'input' => 'hidden',
app/code/community/Kubitoo/Webrtc/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Kubitoo_Webrtc>
5
- <version>1.0.0</version>
6
  </Kubitoo_Webrtc>
7
  </modules>
8
  <global>
2
  <config>
3
  <modules>
4
  <Kubitoo_Webrtc>
5
+ <version>1.1.0</version>
6
  </Kubitoo_Webrtc>
7
  </modules>
8
  <global>
app/code/community/Kubitoo/Webrtc/sql/kubitoo_webrtc_setup/mysql4-upgrade-1.0.0-1.1.0.php ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $installer = $this;
4
+
5
+ $installer->startSetup();
6
+
7
+ $installer->getConnection()->addColumn(
8
+ $installer->getTable('kubitoo_webrtc/configuration'),
9
+ 'language',
10
+ "VARCHAR(20) NOT NULL DEFAULT 'en_US'");
11
+
12
+ $installer->endSetup();
13
+
14
+
15
+ $installer = $this;
16
+
17
+ $installer->startSetup();
18
+
19
+ $installer->getConnection()->addColumn(
20
+ $installer->getTable('kubitoo_webrtc/configuration'),
21
+ 'imgbutton',
22
+ "TEXT NULL");
23
+
24
+ $installer->endSetup();
app/design/frontend/base/default/template/kubitoo/.DS_Store CHANGED
Binary file
app/design/frontend/base/default/template/kubitoo/webrtc/button.phtml CHANGED
@@ -5,11 +5,11 @@
5
  ?>
6
 
7
 
8
- <a href="javascript:window.open('https://client.kubitoo.com/index.php?tokenid=<?php echo $button->getFirstItem()->getTokenid(); ?>','LiveSupport','width=450, height=450, directories=no,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no');void(0);" class="btn_kubitoo">
 
9
  <span><?php echo $button->getFirstItem()->getTextbutton(); ?></span>
10
  </a>
11
 
12
  <?php echo $button->getFirstItem()->getHtmlbutton(); ?>
13
 
14
-
15
  <?php endif; ?>
5
  ?>
6
 
7
 
8
+ <a href="javascript:window.open('https://client.kubitoo.com/index.php?tokenid=<?php echo $button->getFirstItem()->getTokenid(); ?>&amp;lang=<?php echo $button->getFirstItem()->getLanguage(); ?>','LiveSupport','width=450, height=450, directories=no,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no');void(0);" class="btn_kubitoo">
9
+ <?php echo $button->getFirstItem()->getImgbutton(); ?>
10
  <span><?php echo $button->getFirstItem()->getTextbutton(); ?></span>
11
  </a>
12
 
13
  <?php echo $button->getFirstItem()->getHtmlbutton(); ?>
14
 
 
15
  <?php endif; ?>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Kubitoo_Webrtc</name>
4
- <version>1.0.0</version>
5
  <stability>stable</stability>
6
  <license>GPL</license>
7
  <channel>community</channel>
@@ -14,11 +14,14 @@ Per poter attivare il servizio, dopo aver installato il plugin, sar&#xE0; necess
14
  - Chiamate webRTC&#xD;
15
  - DTMF&#xD;
16
  - Form per messaggio testuale di segreteria&#xD;
17
- - Form per messaggio vocale di segreteria</notes>
 
 
 
18
  <authors><author><name>YourVoice</name><user>vlabracayv</user><email>vincenzo.labraca@yourvoice.com</email></author></authors>
19
- <date>2016-04-27</date>
20
- <time>10:08:27</time>
21
- <contents><target name="magecommunity"><dir name="Kubitoo"><dir name="Webrtc"><dir name="Block"><dir name="Adminhtml"><dir name="Configuration"><dir name="Edit"><dir name="Field"><file name="Custom.php" hash="805876c9c45d93f4fbdc167e816f7538"/></dir><file name="Form.php" hash="cb6b38c5933124824eba88626f539d62"/></dir><file name="Edit.php" hash="1b97b945f389621ba579ee214dddaaec"/><file name="Grid.php" hash="95734461b3f197743eec19353c6d0273"/></dir><file name="Configuration.php" hash="561121a0389303791414f69ce30118ed"/></dir></dir><dir name="Helper"><file name="Data.php" hash="e94871085183ec97a1de3d77a201b8d5"/></dir><dir name="Model"><file name="Configuration.php" hash="ea0f415fbb4ed65c2bd659f948bf165a"/><dir name="Resource"><dir name="Configuration"><file name="Collection.php" hash="305e8e0544ef1dbc9ce33db52f23f08d"/></dir><file name="Configuration.php" hash="dd2ddb28dd003e10aab0eda279ca254b"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ConfigurationController.php" hash="570ba7f082e2503cc376fe3bc72f27a7"/></dir></dir><dir name="etc"><file name="adminhtmlOLD.xml" hash="019f516fb1277bf1ea20fe755e15e2b5"/><file name="config.xml" hash="c50c3a853acd73915cd863a2fb048f18"/></dir><dir name="sql"><dir name="kubitoo_webrtc_setup"><file name="install-1.0.0.php" hash="c77a92fdb19a551079f1fce88084123f"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Kubitoo_Webrtc.xml" hash="7dc00550bd648245e2bb4ad325322898"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="kubitoo_webrtc.xml" hash="600ac48d0023775818c9f67b1f845023"/></dir><dir name="template"><dir name="kubitoo"><dir name="webrtc"><file name="button.phtml" hash="b61bd9b69f2003a6d639c9b0d6b541f8"/></dir><file name=".DS_Store" hash="9606dcd4854c8b32c2107098204ca301"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="kubitoo"><file name="sf_bottone1.png" hash="ac45a1961e96b85bd1d39650593c7981"/><file name="sf_bottone1_sel.png" hash="1061e1c9e90539e52e7aca3b0d7268f3"/><file name="sf_bottone2.png" hash="5b5cbea86dd6c408cf59a83e2c15e0e8"/><file name="sf_bottone2_sel.png" hash="904a517018c9ca843e95293878180a43"/><file name="sf_bottone3.png" hash="3b45cb259d444ac18499635f4c9c36ae"/><file name="sf_bottone3_sel.png" hash="d53bbf96d4314424b9c4328733c44e60"/></dir></dir></dir></dir></dir></target></contents>
22
  <compatible/>
23
  <dependencies><required><php><min>5.3.0</min><max>5.6.10</max></php></required></dependencies>
24
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Kubitoo_Webrtc</name>
4
+ <version>1.1.0</version>
5
  <stability>stable</stability>
6
  <license>GPL</license>
7
  <channel>community</channel>
14
  - Chiamate webRTC&#xD;
15
  - DTMF&#xD;
16
  - Form per messaggio testuale di segreteria&#xD;
17
+ - Form per messaggio vocale di segreteria&#xD;
18
+ - Lingua Client&#xD;
19
+ &#xD;
20
+ Nuova grafica</notes>
21
  <authors><author><name>YourVoice</name><user>vlabracayv</user><email>vincenzo.labraca@yourvoice.com</email></author></authors>
22
+ <date>2016-06-23</date>
23
+ <time>07:36:46</time>
24
+ <contents><target name="magecommunity"><dir name="Kubitoo"><dir name="Webrtc"><dir name="Block"><dir name="Adminhtml"><dir name="Configuration"><dir name="Edit"><dir name="Field"><file name="Custom.php" hash="a87bdc992349b94ef8aff7508e18ffa8"/></dir><file name="Form.php" hash="9b6cbbe03bcd3dcbf29f2fee2bc794f0"/></dir><file name="Edit.php" hash="1b97b945f389621ba579ee214dddaaec"/><file name="Grid.php" hash="95734461b3f197743eec19353c6d0273"/></dir><file name="Configuration.php" hash="561121a0389303791414f69ce30118ed"/></dir></dir><dir name="Helper"><file name="Data.php" hash="e94871085183ec97a1de3d77a201b8d5"/></dir><dir name="Model"><file name="Configuration.php" hash="ea0f415fbb4ed65c2bd659f948bf165a"/><dir name="Resource"><dir name="Configuration"><file name="Collection.php" hash="305e8e0544ef1dbc9ce33db52f23f08d"/></dir><file name="Configuration.php" hash="dd2ddb28dd003e10aab0eda279ca254b"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ConfigurationController.php" hash="570ba7f082e2503cc376fe3bc72f27a7"/></dir></dir><dir name="etc"><file name="adminhtmlOLD.xml" hash="019f516fb1277bf1ea20fe755e15e2b5"/><file name="config.xml" hash="ff8f19a293bb6f9910b84ad9add5a5b9"/></dir><dir name="sql"><dir name="kubitoo_webrtc_setup"><file name="install-1.0.0.php" hash="c77a92fdb19a551079f1fce88084123f"/><file name="mysql4-upgrade-1.0.0-1.1.0.php" hash="7b304e24450a3bdae13a5541e5872d1d"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Kubitoo_Webrtc.xml" hash="7dc00550bd648245e2bb4ad325322898"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="kubitoo_webrtc.xml" hash="600ac48d0023775818c9f67b1f845023"/></dir><dir name="template"><dir name="kubitoo"><dir name="webrtc"><file name="button.phtml" hash="c0ca7e25e58bcdf959a62041723bbf95"/></dir><file name=".DS_Store" hash="72356778e79764d60d1cc1228ef5cae3"/></dir></dir></dir></dir></dir></target></contents>
25
  <compatible/>
26
  <dependencies><required><php><min>5.3.0</min><max>5.6.10</max></php></required></dependencies>
27
  </package>
skin/adminhtml/default/default/images/kubitoo/sf_bottone1.png DELETED
Binary file
skin/adminhtml/default/default/images/kubitoo/sf_bottone1_sel.png DELETED
Binary file
skin/adminhtml/default/default/images/kubitoo/sf_bottone2.png DELETED
Binary file
skin/adminhtml/default/default/images/kubitoo/sf_bottone2_sel.png DELETED
Binary file
skin/adminhtml/default/default/images/kubitoo/sf_bottone3.png DELETED
Binary file
skin/adminhtml/default/default/images/kubitoo/sf_bottone3_sel.png DELETED
Binary file