Version Notes
RTBIMM 8 Stable Version
Download this release
Release Info
| Developer | Roman |
| Extension | WEXO_RTBIMM |
| Version | 1.0.9 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.0 to 1.0.9
- app/code/local/wexo/Imageupload/controllers/Adminhtml/ImageuploadController.php +46 -0
- app/code/local/wexo/Imageupload/etc/config.xml +2 -2
- app/design/adminhtml/default/default/template/imageupload/imageuploadbackend.phtml +95 -5
- media/wexo_uploaded_files/ready_files/info.txt +1 -0
- media/wexo_uploaded_files/thumbnails/your_first_image.jpg +0 -0
- media/wexo_uploaded_files/your_first_image.jpg +0 -0
- package.xml +5 -5
- skin/adminhtml/default/default/wexo_imageupload.css +37 -0
app/code/local/wexo/Imageupload/controllers/Adminhtml/ImageuploadController.php
CHANGED
|
@@ -264,4 +264,50 @@ class Wexo_Imageupload_Adminhtml_ImageuploadController extends Mage_Adminhtml_Co
|
|
| 264 |
|
| 265 |
$product->save();
|
| 266 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 267 |
}
|
| 264 |
|
| 265 |
$product->save();
|
| 266 |
}
|
| 267 |
+
|
| 268 |
+
public function changeSettingsAction()
|
| 269 |
+
{
|
| 270 |
+
$apiKey = $_REQUEST['api_key'];
|
| 271 |
+
$apiEmail = $_REQUEST['api_email'];
|
| 272 |
+
$previewWidth = $_REQUEST['preview_width'];
|
| 273 |
+
$maxItemsForSearchResult = $_REQUEST['max_items_for_search_result'];
|
| 274 |
+
|
| 275 |
+
$block = new Wexo_Imageupload_Block_Adminhtml_Imageupload();
|
| 276 |
+
|
| 277 |
+
|
| 278 |
+
$apiKeyBefore = '<api_key>'.$block->getModuleConfig('api_param','api_key').'</api_key>';
|
| 279 |
+
$emailBefore = '<email>'.$block->getModuleConfig('api_param','email').'</email>';
|
| 280 |
+
$previewWidthBefore = '<preview_width>'.$block->getModuleConfig('design','preview_width').'</preview_width>';
|
| 281 |
+
$maxItemsForSearchResultBefore = '<max_items_for_search_result>'.$block->getModuleConfig('design','max_items_for_search_result').'</max_items_for_search_result>';
|
| 282 |
+
|
| 283 |
+
$apiKeyAfter = '<api_key>'.$apiKey.'</api_key>';
|
| 284 |
+
$emailAfter = '<email>'.$apiEmail.'</email>';
|
| 285 |
+
$previewWidthAfter = '<preview_width>'.$previewWidth.'</preview_width>';
|
| 286 |
+
$maxItemsForSearchResultlAfter = '<max_items_for_search_result>'.$maxItemsForSearchResult.'</max_items_for_search_result>';
|
| 287 |
+
|
| 288 |
+
Mage::getSingleton('admin/session')->setRemoveTheBackGroundTemplate(null); // clean Session
|
| 289 |
+
Mage::getSingleton('admin/session')->setRemoveTheBackGroundTemplateId(null);
|
| 290 |
+
|
| 291 |
+
$before = Array(
|
| 292 |
+
$apiKeyBefore,
|
| 293 |
+
$emailBefore,
|
| 294 |
+
$previewWidthBefore,
|
| 295 |
+
$maxItemsForSearchResultBefore,
|
| 296 |
+
);
|
| 297 |
+
$after = Array(
|
| 298 |
+
$apiKeyAfter,
|
| 299 |
+
$emailAfter,
|
| 300 |
+
$previewWidthAfter,
|
| 301 |
+
$maxItemsForSearchResultlAfter,
|
| 302 |
+
);
|
| 303 |
+
|
| 304 |
+
$configPath = Mage::getBaseDir().'\app\code\local\Wexo\Imageupload\etc\config.xml';
|
| 305 |
+
$file = fopen($configPath, 'r');
|
| 306 |
+
$content = fread($file, filesize($configPath));
|
| 307 |
+
fclose($file);
|
| 308 |
+
|
| 309 |
+
$file = fopen($configPath, 'w+');
|
| 310 |
+
fwrite($file, str_replace($before, $after, $content));
|
| 311 |
+
fclose($file);
|
| 312 |
+
}
|
| 313 |
}
|
app/code/local/wexo/Imageupload/etc/config.xml
CHANGED
|
@@ -25,7 +25,7 @@
|
|
| 25 |
</args>
|
| 26 |
</adminhtml>
|
| 27 |
</routers>
|
| 28 |
-
|
| 29 |
<global>
|
| 30 |
<helpers>
|
| 31 |
<wexo_imageupload>
|
|
@@ -85,4 +85,4 @@
|
|
| 85 |
<uploaded_thumbnail_dir_name>thumbnails/</uploaded_thumbnail_dir_name>
|
| 86 |
<ready_files_dir>media/wexo_uploaded_files/ready_files/</ready_files_dir>
|
| 87 |
</uploader>
|
| 88 |
-
</config>
|
| 25 |
</args>
|
| 26 |
</adminhtml>
|
| 27 |
</routers>
|
| 28 |
+
</admin>
|
| 29 |
<global>
|
| 30 |
<helpers>
|
| 31 |
<wexo_imageupload>
|
| 85 |
<uploaded_thumbnail_dir_name>thumbnails/</uploaded_thumbnail_dir_name>
|
| 86 |
<ready_files_dir>media/wexo_uploaded_files/ready_files/</ready_files_dir>
|
| 87 |
</uploader>
|
| 88 |
+
</config>
|
app/design/adminhtml/default/default/template/imageupload/imageuploadbackend.phtml
CHANGED
|
@@ -9,11 +9,15 @@
|
|
| 9 |
<li>
|
| 10 |
<a class="tab-item-link" title="Status" id="diagram_tab_status" href="#" onclick="showStatuses(); return false;">Status</a>
|
| 11 |
</li>
|
|
|
|
|
|
|
|
|
|
| 12 |
</ul>
|
| 13 |
|
| 14 |
<div id="diagram_tab_content">
|
| 15 |
-
<div style="" id="diagram_tab_uploader_content"><div style="margin:20px;">
|
| 16 |
-
<div
|
|
|
|
| 17 |
<form method="get" action="" onsubmit="searchProduct(); return false;" id="myform">
|
| 18 |
<?php $showProductFormKey = Mage::getSingleton('core/session')->getFormKey(); ?>
|
| 19 |
<input name="form_key" type="hidden" value="<?php echo $showProductFormKey; ?>"
|
|
@@ -200,6 +204,33 @@
|
|
| 200 |
<tbody id="diagram_tab_status_content_body"></tbody>
|
| 201 |
</table>
|
| 202 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 203 |
</div>
|
| 204 |
</div>
|
| 205 |
|
|
@@ -309,6 +340,27 @@
|
|
| 309 |
downloadTemplatesRTBGApi();
|
| 310 |
});
|
| 311 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 312 |
function refreshAllRadio() {
|
| 313 |
j('.grid input:radio').attr('checked', false);
|
| 314 |
}
|
|
@@ -528,10 +580,10 @@
|
|
| 528 |
break;
|
| 529 |
}
|
| 530 |
}else{
|
| 531 |
-
|
| 532 |
}
|
| 533 |
}else{
|
| 534 |
-
|
| 535 |
}
|
| 536 |
}
|
| 537 |
|
|
@@ -566,7 +618,9 @@
|
|
| 566 |
var imUrl = uploadedFilesDir + j(this).val();
|
| 567 |
sendImageRTBGIApi(templateId,imUrl,'default',sendTime);
|
| 568 |
});
|
| 569 |
-
|
|
|
|
|
|
|
| 570 |
j("#productInfo").hide();
|
| 571 |
j("#productInfo").html('');
|
| 572 |
refreshAllRadioAndCheckboxes();
|
|
@@ -627,8 +681,12 @@
|
|
| 627 |
function showStatuses(){
|
| 628 |
j('#diagram_tab_uploader').removeClass('active');
|
| 629 |
j('#diagram_tab_uploader_content').hide();
|
|
|
|
|
|
|
|
|
|
| 630 |
j('#diagram_tab_status').addClass('active');
|
| 631 |
j('#diagram_tab_status_content').show();
|
|
|
|
| 632 |
getImagesList();
|
| 633 |
}
|
| 634 |
|
|
@@ -639,6 +697,15 @@
|
|
| 639 |
// j('#diagram_tab_uploader_content').show();
|
| 640 |
window.location.reload();
|
| 641 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 642 |
|
| 643 |
function getImagesList(){
|
| 644 |
j.ajax({
|
|
@@ -780,4 +847,27 @@
|
|
| 780 |
}
|
| 781 |
}
|
| 782 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 783 |
</script>
|
| 9 |
<li>
|
| 10 |
<a class="tab-item-link" title="Status" id="diagram_tab_status" href="#" onclick="showStatuses(); return false;">Status</a>
|
| 11 |
</li>
|
| 12 |
+
<li>
|
| 13 |
+
<a class="tab-item-link" title="Settings" id="diagram_tab_settings" href="#" onclick="showSettings(); return false;">Settings</a>
|
| 14 |
+
</li>
|
| 15 |
</ul>
|
| 16 |
|
| 17 |
<div id="diagram_tab_content">
|
| 18 |
+
<div style="" id="diagram_tab_uploader_content"><div style="margin:0px 20px 20px 20px;">
|
| 19 |
+
<div class="wexo_messages" id="uploaderMessage" style="visibility: hidden;"></div>
|
| 20 |
+
<div id="downloadImages" style="position:absolute;"></div>
|
| 21 |
<form method="get" action="" onsubmit="searchProduct(); return false;" id="myform">
|
| 22 |
<?php $showProductFormKey = Mage::getSingleton('core/session')->getFormKey(); ?>
|
| 23 |
<input name="form_key" type="hidden" value="<?php echo $showProductFormKey; ?>"
|
| 204 |
<tbody id="diagram_tab_status_content_body"></tbody>
|
| 205 |
</table>
|
| 206 |
</div>
|
| 207 |
+
|
| 208 |
+
<div class="grid" style="display: none;position: relative;" id="diagram_tab_settings_content">
|
| 209 |
+
<form id="changeSettings" action="" method="get">
|
| 210 |
+
<table>
|
| 211 |
+
<tr>
|
| 212 |
+
<td class="rightAlign">Remove The Background Api Key :</td>
|
| 213 |
+
<td class="leftAlign"><input id="api_key" name="api_key" type="text" value="<?php echo($this->getModuleConfig('api_param','api_key')); ?>" size="50" /></td>
|
| 214 |
+
</tr>
|
| 215 |
+
<tr>
|
| 216 |
+
<td class="rightAlign">Email :</td>
|
| 217 |
+
<td class="leftAlign"><input id="api_email" name="email" type="text" value="<?php echo($this->getModuleConfig('api_param','email')); ?>" /></td>
|
| 218 |
+
</tr>
|
| 219 |
+
<tr>
|
| 220 |
+
<td class="rightAlign">Preview Width :</td>
|
| 221 |
+
<td class="leftAlign"><input id="preview_width" name="preview_width" type="text" value="<?php echo($this->getModuleConfig('design','preview_width')); ?>" /></td>
|
| 222 |
+
</tr>
|
| 223 |
+
<tr>
|
| 224 |
+
<td class="rightAlign">Max Items For Search Result :</td>
|
| 225 |
+
<td class="leftAlign"><input id="max_items_for_search_result" name="max_items_for_search_result" type="text" value="<?php echo($this->getModuleConfig('design','max_items_for_search_result')); ?>" /></td>
|
| 226 |
+
</tr>
|
| 227 |
+
<tr>
|
| 228 |
+
<td class="rightAlign"></td>
|
| 229 |
+
<td class="rightAlign"><input value="Save" type="button" class="form-button" onclick="changeAPISettings(); return false;"/></td>
|
| 230 |
+
</tr>
|
| 231 |
+
</table>
|
| 232 |
+
</form>
|
| 233 |
+
</div>
|
| 234 |
</div>
|
| 235 |
</div>
|
| 236 |
|
| 340 |
downloadTemplatesRTBGApi();
|
| 341 |
});
|
| 342 |
|
| 343 |
+
function doAlert(text,type){
|
| 344 |
+
switch(type){
|
| 345 |
+
case 'error':
|
| 346 |
+
j("#uploaderMessage").addClass('wexo_messages_error');
|
| 347 |
+
break;
|
| 348 |
+
case 'confirm':
|
| 349 |
+
j("#uploaderMessage").removeClass('wexo_messages_error');
|
| 350 |
+
break;
|
| 351 |
+
default:
|
| 352 |
+
j("#uploaderMessage").removeClass('wexo_messages_error');
|
| 353 |
+
break;
|
| 354 |
+
}
|
| 355 |
+
j('#uploaderMessage').stop();
|
| 356 |
+
j("#uploaderMessage").show();
|
| 357 |
+
j("#uploaderMessage").html(text);
|
| 358 |
+
j("#uploaderMessage").css('opacity','1.0');
|
| 359 |
+
j("#uploaderMessage").css('visibility','visible');
|
| 360 |
+
|
| 361 |
+
j('#uploaderMessage').animate({opacity: 0.0}, 3000);
|
| 362 |
+
}
|
| 363 |
+
|
| 364 |
function refreshAllRadio() {
|
| 365 |
j('.grid input:radio').attr('checked', false);
|
| 366 |
}
|
| 580 |
break;
|
| 581 |
}
|
| 582 |
}else{
|
| 583 |
+
doAlert('No Images','error');
|
| 584 |
}
|
| 585 |
}else{
|
| 586 |
+
doAlert('Please select product','error');
|
| 587 |
}
|
| 588 |
}
|
| 589 |
|
| 618 |
var imUrl = uploadedFilesDir + j(this).val();
|
| 619 |
sendImageRTBGIApi(templateId,imUrl,'default',sendTime);
|
| 620 |
});
|
| 621 |
+
|
| 622 |
+
doAlert('Images Have Been Sent','confirm');
|
| 623 |
+
|
| 624 |
j("#productInfo").hide();
|
| 625 |
j("#productInfo").html('');
|
| 626 |
refreshAllRadioAndCheckboxes();
|
| 681 |
function showStatuses(){
|
| 682 |
j('#diagram_tab_uploader').removeClass('active');
|
| 683 |
j('#diagram_tab_uploader_content').hide();
|
| 684 |
+
j('#diagram_tab_settings').removeClass('active');
|
| 685 |
+
j('#diagram_tab_settings_content').hide();
|
| 686 |
+
|
| 687 |
j('#diagram_tab_status').addClass('active');
|
| 688 |
j('#diagram_tab_status_content').show();
|
| 689 |
+
|
| 690 |
getImagesList();
|
| 691 |
}
|
| 692 |
|
| 697 |
// j('#diagram_tab_uploader_content').show();
|
| 698 |
window.location.reload();
|
| 699 |
}
|
| 700 |
+
function showSettings(){
|
| 701 |
+
j('#diagram_tab_uploader').removeClass('active');
|
| 702 |
+
j('#diagram_tab_status').removeClass('active');
|
| 703 |
+
j('#diagram_tab_uploader_content').hide();
|
| 704 |
+
j('#diagram_tab_status_content').hide();
|
| 705 |
+
|
| 706 |
+
j('#diagram_tab_settings').addClass('active');
|
| 707 |
+
j('#diagram_tab_settings_content').show();
|
| 708 |
+
}
|
| 709 |
|
| 710 |
function getImagesList(){
|
| 711 |
j.ajax({
|
| 847 |
}
|
| 848 |
}
|
| 849 |
|
| 850 |
+
<!--Settings tab-->
|
| 851 |
+
|
| 852 |
+
function changeAPISettings(){
|
| 853 |
+
|
| 854 |
+
var api_key = j('#api_key').val();
|
| 855 |
+
var api_email = j('#api_email').val();
|
| 856 |
+
var preview_width = j('#preview_width').val();
|
| 857 |
+
var max_items_for_search_result = j('#max_items_for_search_result').val();
|
| 858 |
+
|
| 859 |
+
var dataString = 'api_key='+ api_key + '&api_email=' + api_email + '&preview_width=' + preview_width + '&max_items_for_search_result=' + max_items_for_search_result;
|
| 860 |
+
|
| 861 |
+
j.ajax({
|
| 862 |
+
type: "GET",
|
| 863 |
+
url: "<?php echo Mage::helper("adminhtml")->getUrl("adminhtml/imageupload/changeSettings/"); ?>",
|
| 864 |
+
data: dataString,
|
| 865 |
+
cache: false,
|
| 866 |
+
success: function(html){
|
| 867 |
+
window.location.reload();
|
| 868 |
+
}
|
| 869 |
+
});
|
| 870 |
+
}
|
| 871 |
+
|
| 872 |
+
|
| 873 |
</script>
|
media/wexo_uploaded_files/ready_files/info.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
| 1 |
+
We use this file to transfer images from Remove the Background Api to your Server
|
media/wexo_uploaded_files/thumbnails/your_first_image.jpg
ADDED
|
Binary file
|
media/wexo_uploaded_files/your_first_image.jpg
ADDED
|
Binary file
|
package.xml
CHANGED
|
@@ -1,18 +1,18 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>WEXO_RTBIMM</name>
|
| 4 |
-
<version>1.0.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license>OSL</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
<summary>RTBIMM Detail Summary</summary>
|
| 10 |
<description>RTBIMM Detail Description</description>
|
| 11 |
-
<notes>RTBIMM
|
| 12 |
<authors><author><name>Roman</name><user>Wufer</user><email>grisk55@mail.ru</email></author></authors>
|
| 13 |
-
<date>2012-04-
|
| 14 |
-
<time>
|
| 15 |
-
<contents><target name="mage"><dir name="."><dir name="app"><dir name="code"><dir name="local"><dir name="wexo"><dir name="Imageupload"><dir name="Block"><dir name="Adminhtml"><dir name="Imageupload"><dir name="Edit"><dir name="Tab"><file name="form.php" hash="181535799edd11987675c2115c6886b4"/></dir><file name="form.php" hash="940a6de59796d49b358177339e8f7cfe"/></dir><file name="Grid.php" hash="f3037360970024826f50f0957267785b"/></dir><file name="Imageupload.php" hash="702c943e61847fa9a643770abbb62052"/><file name="Quotes.php" hash="eab0b654ff8421b1d674c1278b90dea6"/></dir></dir><dir name="Helper"><file name="ArrayToXml.php" hash="6d7640b898efd16566df87e0f575aae8"/><file name="Data.php" hash="0b2371e152a39e9b36ac5e97e23fe49f"/><file name="ImageUpload.php" hash="2871bce2c7a0fce01c16543de2ddde2d"/><file name="UploadHandler.php" hash="f5e1931968c1c8954624bb43d3adec68"/></dir><dir name="Model"><file name="Mysql.php" hash="a4c087425622d2f2cb67a6be41400828"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="ImageuploadController.php" hash="
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.3.1</min><max>5.4.0</max></php><package><name></name><channel>connect.magentocommerce.com/core</channel><min></min><max></max></package></required></dependencies>
|
| 18 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>WEXO_RTBIMM</name>
|
| 4 |
+
<version>1.0.9</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license>OSL</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
<summary>RTBIMM Detail Summary</summary>
|
| 10 |
<description>RTBIMM Detail Description</description>
|
| 11 |
+
<notes>RTBIMM 8 Stable Version</notes>
|
| 12 |
<authors><author><name>Roman</name><user>Wufer</user><email>grisk55@mail.ru</email></author></authors>
|
| 13 |
+
<date>2012-04-11</date>
|
| 14 |
+
<time>08:52:21</time>
|
| 15 |
+
<contents><target name="mage"><dir name="."><dir name="app"><dir name="code"><dir name="local"><dir name="wexo"><dir name="Imageupload"><dir name="Block"><dir name="Adminhtml"><dir name="Imageupload"><dir name="Edit"><dir name="Tab"><file name="form.php" hash="181535799edd11987675c2115c6886b4"/></dir><file name="form.php" hash="940a6de59796d49b358177339e8f7cfe"/></dir><file name="Grid.php" hash="f3037360970024826f50f0957267785b"/></dir><file name="Imageupload.php" hash="702c943e61847fa9a643770abbb62052"/><file name="Quotes.php" hash="eab0b654ff8421b1d674c1278b90dea6"/></dir></dir><dir name="Helper"><file name="ArrayToXml.php" hash="6d7640b898efd16566df87e0f575aae8"/><file name="Data.php" hash="0b2371e152a39e9b36ac5e97e23fe49f"/><file name="ImageUpload.php" hash="2871bce2c7a0fce01c16543de2ddde2d"/><file name="UploadHandler.php" hash="f5e1931968c1c8954624bb43d3adec68"/></dir><dir name="Model"><file name="Mysql.php" hash="a4c087425622d2f2cb67a6be41400828"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="ImageuploadController.php" hash="eac3e38e9631209f2cd1e925e7328a8e"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="17403c50e227df61ffd8457e3ed4c516"/><file name="config.xml" hash="6ee6c64899b1ec20da9f1d0122472b79"/></dir><dir name="sql"><dir name="imageupload_setup"><file name="mysql4-install-0.1.0.php" hash="bd94ca51cb6b5a1a72188a4400cc0c64"/></dir></dir></dir></dir></dir></dir><dir name="design"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="imageupload.xml" hash="96f9ae2ba9a17c04cd07712a9215e5fa"/></dir><dir name="template"><dir name="imageupload"><file name="imageuploadbackend.phtml" hash="ed227948838ca0099762c65755059b0c"/></dir></dir></dir></dir></dir></dir><dir name="etc"><dir name="modules"><file name="Wexo_Imageupload.xml" hash="da493fbe90cbbe44983502c37f7c131b"/></dir></dir></dir><dir name="media"><dir name="wexo_uploaded_files"><dir name="ready_files"><file name="info.txt" hash="b0556599fb86ecd822b26fe54d7c2615"/></dir><dir name="thumbnails"><file name="your_first_image.jpg" hash="4be9da359495feb2a4288c079c18921c"/></dir><file name="your_first_image.jpg" hash="7098a45cf1eb9ab6559a2532b8f80b50"/></dir></dir><dir name="skin"><dir name="adminhtml"><dir name="default"><dir name="default"><file name="wexo_imageupload.css" hash="8b2206642976af8c1aef7bea1a4a1401"/></dir></dir></dir></dir><dir name="js"><dir name="wexo_imageupload"><dir name="ajaxSearch"><file name="ajax-loader.gif" hash="5a54ac225b025dfa0c045c0eacb972cb"/><file name="ajaxSearch.js" hash="5556b9385b6825b01e03d089afa2563f"/></dir><dir name="cors"><file name="jquery.postmessage-transport.js" hash="11fe256b13a09546f7280198d8e98239"/><file name="jquery.xdr-transport.js" hash="faaba6cc2d368480b13fb99d4556b3eb"/></dir><dir name="date"><file name="dateFormat.js" hash="0ada36cb8bcc98c00dcf1eb79bb3f5eb"/></dir><dir name="from_site"><file name="bootstrap-image-gallery.min.js" hash="c37476e80032d0535d90904cf0475d71"/><file name="bootstrap.min.js" hash="65aa619d80ebcdd8435134a3fdf80b8b"/><file name="canvas-to-blob.min.js" hash="4d3b7b16282b97e1f6ed534aa95d69ae"/><file name="load-image.min.js" hash="c7770cc767dbf0120e859528cdef5df1"/><file name="tmpl.min.js" hash="411df7e2bc659d35015f7fdb7432b331"/></dir><dir name="jquery"><file name="jquery.js" hash="ab2e5a64325fbe4f9f09e174048e089d"/><file name="noConflict.js" hash="c91887792716c192e4942fde5f2ec848"/></dir><file name="jquery.fileupload-ip.js" hash="6ef236c9b095fab9199bc0a610474822"/><file name="jquery.fileupload-ui.js" hash="aa2b6323dd1a0b8e5a1b445166e22d95"/><file name="jquery.fileupload.js" hash="968bdc259b6e16002c086ad72002c10f"/><file name="jquery.iframe-transport.js" hash="a66b4d498adb22c8cf324b89c6870a97"/><file name="locale.js" hash="a7773b6a053fb90d7c1a284f8d83a352"/><file name="main.js" hash="119fc089d344de035be04fa653ada655"/><file name="statusLoader.gif" hash="e2bfb20cfa7417dcc901d4d42520e1cc"/><file name="templateBorder.gif" hash="dce00ddad351e72e83bc87274cbaa54a"/><dir name="vendor"><file name="jquery.ui.widget.js" hash="93126e5fb3ab5375bf76aeea2dd9d07b"/></dir></dir></dir></dir></target><target name="mageweb"><dir name="."><file name="proxy.php" hash="947842cef54a3f534225deaee8f6ebd5"/></dir></target></contents>
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.3.1</min><max>5.4.0</max></php><package><name></name><channel>connect.magentocommerce.com/core</channel><min></min><max></max></package></required></dependencies>
|
| 18 |
</package>
|
skin/adminhtml/default/default/wexo_imageupload.css
CHANGED
|
@@ -474,5 +474,42 @@
|
|
| 474 |
color:#F66;
|
| 475 |
}
|
| 476 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 477 |
|
| 478 |
|
| 474 |
color:#F66;
|
| 475 |
}
|
| 476 |
|
| 477 |
+
#diagram_tab_settings_content{
|
| 478 |
+
padding: 10px;
|
| 479 |
+
}
|
| 480 |
+
|
| 481 |
+
#diagram_tab_settings_content table{
|
| 482 |
+
width: 545px;
|
| 483 |
+
border: none;
|
| 484 |
+
}
|
| 485 |
+
|
| 486 |
+
#diagram_tab_settings_content table td{
|
| 487 |
+
border: none;
|
| 488 |
+
}
|
| 489 |
+
|
| 490 |
+
#diagram_tab_settings_content .leftAlign{
|
| 491 |
+
text-align: left;
|
| 492 |
+
}
|
| 493 |
+
|
| 494 |
+
#diagram_tab_settings_content .rightAlign{
|
| 495 |
+
text-align: right;
|
| 496 |
+
}
|
| 497 |
+
|
| 498 |
+
.wexo_messages{
|
| 499 |
+
visibility: hidden;
|
| 500 |
+
font-size: 0.95em !important;
|
| 501 |
+
font-weight: bold !important;
|
| 502 |
+
min-height: 23px !important;
|
| 503 |
+
padding: 8px 8px 2px 32px !important;
|
| 504 |
+
background: url("images/success_msg_icon.gif") no-repeat scroll 10px 10px #EFF5EA !important;
|
| 505 |
+
border: 1px solid #95A486 !important;
|
| 506 |
+
color: #3D6611 !important;
|
| 507 |
+
}
|
| 508 |
+
|
| 509 |
+
.wexo_messages_error{
|
| 510 |
+
background: url("images/error_msg_icon.gif") no-repeat scroll 10px 10px #FAEBE7 !important;
|
| 511 |
+
border: 1px solid #F16048 !important;
|
| 512 |
+
color: #DF280A !important;
|
| 513 |
+
}
|
| 514 |
|
| 515 |
|
