padoo_testimonial - Version 1.2.3

Version Notes

Allow customers post testimonial text and their image. And support flexible how display testimonials sliders on home page or other page with static block.

Download this release

Release Info

Developer Padoosoft
Extension padoo_testimonial
Version 1.2.3
Comparing to
See all releases


Code changes from version 1.2.2 to 1.2.3

Files changed (29) hide show
  1. app/code/local/Padoo/Testimonial/controllers/SubmitController.php +11 -7
  2. app/code/local/Padoo/Testimonial/etc/config.xml +1 -1
  3. app/design/frontend/{default → base}/default/layout/padoo_testimonial.xml +0 -0
  4. app/design/frontend/base/default/template/padoo/testimonial/slider.phtml +76 -0
  5. app/design/frontend/base/default/template/padoo/testimonial/submit.phtml +49 -0
  6. app/design/frontend/base/default/template/padoo/testimonial/testimonials.phtml +68 -0
  7. app/design/frontend/base/default/template/padoo/testimonial/testimonials_box.phtml +95 -0
  8. package.xml +5 -5
  9. skin/frontend/{default → base}/default/css/padoo/jquery-ui.css +0 -0
  10. skin/frontend/{default → base}/default/css/padoo/jquery.bxslider.css +0 -0
  11. skin/frontend/{default → base}/default/css/padoo/testimonial.css +0 -0
  12. skin/frontend/{default → base}/default/css/testimonial/testimonial.css +0 -0
  13. skin/frontend/{default → base}/default/images/padoo/ajax-loader-tr.gif +0 -0
  14. skin/frontend/{default → base}/default/images/padoo/bg-btn-delete.gif +0 -0
  15. skin/frontend/{default → base}/default/images/padoo/bg-btn-update.gif +0 -0
  16. skin/frontend/{default → base}/default/images/padoo/btn_trash.gif +0 -0
  17. skin/frontend/{default → base}/default/images/padoo/controls.png +0 -0
  18. skin/frontend/{default → base}/default/images/padoo/loading.gif +0 -0
  19. skin/frontend/{default → base}/default/images/padoo/process.jpg +0 -0
  20. skin/frontend/{default → base}/default/images/padoo/slider_controls.png +0 -0
  21. skin/frontend/{default → base}/default/js/padoo/jquery.bxslider.js +0 -0
  22. skin/frontend/{default → base}/default/js/padoo/jquery.cycle.js +0 -0
  23. skin/frontend/default/default/css/padoo/onecheckout.css +0 -452
  24. skin/frontend/default/default/css/padoo/storelocator.css +0 -529
  25. skin/frontend/default/default/css/padoo/storelocator/navigation.png +0 -0
  26. skin/frontend/default/default/css/padoo/storelocator/navigation1.png +0 -0
  27. skin/frontend/default/default/css/padoo/storelocator/tag-bg.png +0 -0
  28. skin/frontend/default/default/css/padoo/storelocator/vssver2.scc +0 -0
  29. skin/frontend/default/default/css/padoo/tinybox.css +0 -3
app/code/local/Padoo/Testimonial/controllers/SubmitController.php CHANGED
@@ -38,13 +38,17 @@ class Padoo_Testimonial_SubmitController extends Mage_Core_Controller_Front_Acti
38
  $validate = $testimonial->validate();
39
  if ($validate === true) {
40
  $formId = 'padoo_testimonial';
41
- $captchaModel = Mage::helper('captcha')->getCaptcha($formId);
42
- if ($captchaModel->isRequired()) {
43
- $word = $this->_getCaptchaString($this->getRequest(), $formId);
44
- if (!$captchaModel->isCorrect($word)) {
45
- Mage::getSingleton('core/session')->addError(Mage::helper('captcha')->__('Incorrect CAPTCHA.'));
46
- $this->_redirectReferer('');
47
- return;
 
 
 
 
48
  }
49
  }
50
 
38
  $validate = $testimonial->validate();
39
  if ($validate === true) {
40
  $formId = 'padoo_testimonial';
41
+ $magentoVersion = Mage::getVersion();
42
+ if (version_compare($magentoVersion, '1.7', '>=')){
43
+ //version is 1.7 or greater
44
+ $captchaModel = Mage::helper('captcha')->getCaptcha($formId);
45
+ if ($captchaModel->isRequired()) {
46
+ $word = $this->_getCaptchaString($this->getRequest(), $formId);
47
+ if (!$captchaModel->isCorrect($word)) {
48
+ Mage::getSingleton('core/session')->addError(Mage::helper('captcha')->__('Incorrect CAPTCHA.'));
49
+ $this->_redirectReferer('');
50
+ return;
51
+ }
52
  }
53
  }
54
 
app/code/local/Padoo/Testimonial/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Padoo_Testimonial>
5
- <version>1.2.2</version>
6
  </Padoo_Testimonial>
7
  </modules>
8
 
2
  <config>
3
  <modules>
4
  <Padoo_Testimonial>
5
+ <version>1.2.3</version>
6
  </Padoo_Testimonial>
7
  </modules>
8
 
app/design/frontend/{default → base}/default/layout/padoo_testimonial.xml RENAMED
File without changes
app/design/frontend/base/default/template/padoo/testimonial/slider.phtml ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Padoo Co.
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0).
8
+ * It is available through the world-wide-web at this URL:
9
+ * http://opensource.org/licenses/osl-3.0.php
10
+ * If you are unable to obtain it through the world-wide-web, please send
11
+ * an email to info@padoo.com so we can send you a copy immediately.
12
+ *
13
+ * @category Padoo
14
+ * @package Padoo_Testimonial
15
+ * @copyright Copyright (c) 2010-2012 Padoo Co. (http://padoo.com)
16
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
17
+ */
18
+
19
+ /**
20
+ * template of testimonials
21
+ *
22
+ * @category Padoo
23
+ * @package Padoo_Testimonial
24
+ * @author
25
+ */
26
+
27
+ /**
28
+ * @var $this Padoo_Testimonial_Block_Testimonial
29
+ */
30
+ $storeId = Mage::app()->getStore(true)->getId();
31
+ ?>
32
+ <script type="text/javascript" src="<?php echo $this->getSkinUrl('js/padoo/jquery.bxslider.js')?>"></script>
33
+ <link rel="stylesheet" type="text/css" href="<?php echo $this->getSkinUrl('css/padoo/jquery.bxslider.css')?>" media="all" />
34
+ <?php $testimonials = $this->getTestimonials(); ?>
35
+ <div class="testimonials-container slider">
36
+ <ul class="testimonials-slider">
37
+ <?php $i=0;foreach ($testimonials as $testimonial): ?>
38
+ <?php
39
+ $stores = $testimonial->getStoreId();
40
+ if(strpos($stores,$storeId) !== false || strpos($stores,0) !== false || $stores == 0){
41
+ ?>
42
+ <li>
43
+ <div class="testimonial-item" id="testimonial_<?php echo $i++ ?>">
44
+ <div class="testimonial-text">
45
+ <blockquote>
46
+ <?php
47
+ $length = 450;
48
+ $des = $this->stripTags($testimonial->getTestimonialText());
49
+ $des = strlen($des) > $length ? substr($des,0, $length) .' ...' : $des;
50
+ echo $des;
51
+ ?>
52
+ </blockquote>
53
+ <figure>
54
+ <?php if ($testimonial->getTestimonialImg()): ?>
55
+ <img alt="<?php echo $testimonial->getTestimonialName(); ?>" src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . $testimonial->getTestimonialImg() ?>" />
56
+ <?php endif; ?>
57
+ </figure>
58
+ <div class="author"><?php echo $testimonial->getTestimonialDate() ?> - <?php echo $testimonial->getTestimonialName(); ?></div>
59
+ </div>
60
+ </div>
61
+ </li>
62
+ <?php } ?>
63
+ <?php $i++;endforeach; ?>
64
+ </ul>
65
+ </div>
66
+ <script>
67
+ jQuery(document).ready(function(){
68
+ jQuery('.testimonials-slider').bxSlider({
69
+ minSlides: 1,
70
+ maxSlides: 1,
71
+ slideWidth: 500,
72
+ auto: true,
73
+ autoControls: true
74
+ });
75
+ });
76
+ </script>
app/design/frontend/base/default/template/padoo/testimonial/submit.phtml ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="submit-form testimonial-form">
2
+ <h4 class="title"><?php echo $this->__('Write your testimonial') ?>:</h4>
3
+ <form id="testimonials-form" action="<?php echo $this->getUrl('testimonials/submit/save/')?>" method="post" enctype="multipart/form-data">
4
+ <ul class="form-list">
5
+ <li class="wide">
6
+ <label class="required" for="name"><em>*</em><?php echo $this->__('Name') ?></label>
7
+ <div class="input-box">
8
+ <input type="text" class="input-text required-entry" value="" title="Name" id="name" name="testimonial[name]">
9
+ </div>
10
+ </li>
11
+ <li class="wide">
12
+ <label class="required" for="email"><em>*</em><?php echo $this->__('Email') ?></label>
13
+ <div class="input-box">
14
+ <input type="text" class="input-text required-entry validate-email" value="" title="Email" id="email" name="testimonial[email]">
15
+ </div>
16
+ </li>
17
+ <li class="wide">
18
+ <label class="required" for="image"><em>*</em><?php echo $this->__('Upload Images') ?></label>
19
+ <div class="input-box">
20
+ <input type="file" class="" value="" title="Upload" id="image" name="testimonialmedia">
21
+ </div>
22
+ </li>
23
+ <li class="wide">
24
+ <label class="required" for="content"><em>*</em>Content</label>
25
+ <div class="input-box">
26
+ <textarea rows="3" cols="5" class="required-entry input-text" title="Content" id="content" name="testimonial[content]"></textarea>
27
+ </div>
28
+ </li>
29
+ <li class="wide">
30
+ <?php echo $this->getChildHtml('captcha'); ?>
31
+ </li>
32
+ </ul>
33
+ <div class="box-actions">
34
+ <p class="required">* Required Fields</p>
35
+ <button class="button" title="Send" type="submit">
36
+ <span><span><?php echo $this->__('Send') ?></span></span>
37
+ </button>
38
+ <button class="button" title="Reset" type="reset">
39
+ <span><span><?php echo $this->__('Reset') ?></span></span>
40
+ </button>
41
+ </div>
42
+ </form>
43
+ </div>
44
+ <script type="text/javascript">
45
+
46
+ //<![CDATA[
47
+ var contactForm = new VarienForm('testimonials-form', true);
48
+ //]]>
49
+ </script>
app/design/frontend/base/default/template/padoo/testimonial/testimonials.phtml ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Padoo Co.
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0).
8
+ * It is available through the world-wide-web at this URL:
9
+ * http://opensource.org/licenses/osl-3.0.php
10
+ * If you are unable to obtain it through the world-wide-web, please send
11
+ * an email to info@padoo.com so we can send you a copy immediately.
12
+ *
13
+ * @category Padoo
14
+ * @package Padoo_Testimonial
15
+ * @copyright Copyright (c) 2010-2012 Padoo Co. (http://padoo.com)
16
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
17
+ */
18
+
19
+ /**
20
+ * template of testimonials
21
+ *
22
+ * @category Padoo
23
+ * @package Padoo_Testimonial
24
+ * @author
25
+ */
26
+
27
+ /**
28
+ * @var $this Padoo_Testimonial_Block_Testimonial
29
+ */
30
+ $storeId = Mage::app()->getStore(true)->getId();
31
+ ?>
32
+ <div class="testimonials-container">
33
+ <div class="title-box">
34
+ <h1 class="title"><?php echo $this->__("Testimonials"); ?></h1>
35
+ <a href="<?php echo $this->getUrl('testimonials/submit/index') ?>"><?php echo $this->__("Submit your testimonial"); ?></a>
36
+ </div>
37
+ <div class="testimonials">
38
+ <?php $testimonials = $this->getTestimonials(); ?>
39
+ <?php $i = 0;?>
40
+ <?php if ($testimonials->count() > 0): ?>
41
+ <?php foreach ($testimonials as $testimonial): ?>
42
+ <?php
43
+ $stores = $testimonial->getStoreId();
44
+ if(strpos($stores,$storeId) !== false || strpos($stores,0) !== false || $stores == 0){
45
+ ?>
46
+ <div id="testimonial_<?php echo $i++ ?>">
47
+ <?php if ($testimonial->getTestimonialImg()): ?>
48
+ <div class="testimonial-image"><img alt="<?php echo $testimonial->getTestimonialName(); ?>" src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . $testimonial->getTestimonialImg() ?>" width="130" /></div>
49
+ <?php endif; ?>
50
+ <div class="testimonial-text">
51
+ <?php echo $testimonial->getTestimonialText(); ?>
52
+ <div class="author">
53
+ <?php if(Mage::getStoreConfig('padoo_testimonial/general/display_email')): ?>
54
+ <p><?php echo $testimonial->getTestimonialEmail() ?></p>
55
+ <?php endif; ?>
56
+ <?php if(Mage::getStoreConfig('padoo_testimonial/general/display_datetime')): ?>
57
+ <?php echo $testimonial->getTestimonialDate() ?> -
58
+ <?php endif; ?>
59
+ <?php echo $testimonial->getTestimonialName(); ?>
60
+ </div>
61
+ </div>
62
+ </div>
63
+ <?php } ?>
64
+ <?php $i++;endforeach; ?>
65
+ <?php endif;?>
66
+ </div>
67
+ <?php echo $this->getPagerHtml() ?>
68
+ </div>
app/design/frontend/base/default/template/padoo/testimonial/testimonials_box.phtml ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Padoo Co.
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0).
8
+ * It is available through the world-wide-web at this URL:
9
+ * http://opensource.org/licenses/osl-3.0.php
10
+ * If you are unable to obtain it through the world-wide-web, please send
11
+ * an email to info@padoo.com so we can send you a copy immediately.
12
+ *
13
+ * @category Padoo
14
+ * @package Padoo_Testimonial
15
+ * @copyright Copyright (c) 2010-2012 Padoo Co. (http://padoo.com)
16
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
17
+ */
18
+
19
+ /**
20
+ * side box template of testimonials
21
+ *
22
+ * @category Padoo
23
+ * @package Padoo_Testimonial
24
+ * @author
25
+ */
26
+
27
+ /**
28
+ * @var $this Padoo_Testimonial_Block_Testimonial
29
+ */
30
+ $storeId = Mage::app()->getStore(true)->getId();
31
+ ?>
32
+ <?php $testimonials = $this->getTestimonials(); ?>
33
+ <?php if ($testimonials->count() > 0): ?>
34
+ <div class="block testimonials-sidebar">
35
+ <div class="block-title">
36
+ <strong><span><?php echo $this->__('Testimonials') ?></span></strong>
37
+ </div>
38
+ <div class="block-content">
39
+ <div id="slideshow_testimonial">
40
+ <?php $last = count($testimonials); ?>
41
+ <?php $i = 0;foreach ($testimonials as $testimonial): ?>
42
+ <?php
43
+ $stores = $testimonial->getStoreId();
44
+ if(strpos($stores,$storeId) !== false || strpos($stores,0) !== false || $stores == 0){
45
+ ?>
46
+ <?php if(!Mage::getStoreConfig('padoo_testimonial/general/effects') && $i > Mage::getStoreConfig('padoo_testimonial/general/num_sidebar')) break; ?>
47
+ <?php if($testimonial->getTestimonialSidebar()): ?>
48
+ <div class="sidebar-box <?php if($i++ == $last): ?>last<?php endif; ?>">
49
+ <?php if ($testimonial->getTestimonialImg()): ?>
50
+ <div class="sidebar-media" style="display:block">
51
+ <img alt="<?php echo $testimonial->getTestimonialName(); ?>" src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . $testimonial->getTestimonialImg() ?>" width="135" />
52
+ </div>
53
+ <?php endif; ?>
54
+ <div class="sidebar-text">
55
+ <?php
56
+ $length = 100;
57
+ $des = $this->stripTags($testimonial->getTestimonialText());
58
+ $des = strlen($des) > $length ? substr($des,0, $length) .' ...' : $des;
59
+ echo $des;
60
+ ?>
61
+ </div>
62
+ <div class="sidebar-name">
63
+ <?php if(Mage::getStoreConfig('padoo_testimonial/general/display_email')): ?>
64
+ <p><?php echo $testimonial->getTestimonialEmail() ?></p>
65
+ <?php endif; ?>
66
+ <?php if(Mage::getStoreConfig('padoo_testimonial/general/display_datetime')): ?>
67
+ <?php echo $testimonial->getTestimonialDate() ?> -
68
+ <?php endif; ?>
69
+ <?php echo $testimonial->getTestimonialName(); ?>
70
+ </div>
71
+ </div>
72
+ <?php endif; ?>
73
+ <?php } ?>
74
+ <?php $i++;endforeach; ?>
75
+ </div>
76
+ <div class="actions">
77
+ <a href="<?php echo $this->getUrl('testimonials'); ?>"><?php echo $this->__('View All Testimonials'); ?></a>
78
+ </div>
79
+ </div>
80
+ </div>
81
+ <?php if(Mage::getStoreConfig('padoo_testimonial/general/effects')): ?>
82
+ <script type="text/javascript">
83
+ var effect_slide_testimonial = "<?php echo Mage::getStoreConfig('padoo_testimonial/general/effects_type'); ?>";
84
+ var effect_time_testimonial = "<?php echo Mage::getStoreConfig('padoo_testimonial/general/time_effect') ? Mage::getStoreConfig('padoo_testimonial/general/time_effect') : 0 ?>" * 1000;
85
+ jQuery(document).ready(function() {
86
+ jQuery('#slideshow_testimonial').cycle({
87
+ //fade, fadeZoom, cover, uncover, shuffle, zoom, wipe, toss, turnDown, turnUp, scrollDown, scrollUp .
88
+ fx: effect_slide_testimonial,
89
+ timeout: effect_time_testimonial
90
+ });
91
+ });
92
+ </script>
93
+ <?php endif; ?>
94
+
95
+ <?php endif;?>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>padoo_testimonial</name>
4
- <version>1.2.2</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/gpl-license.php">GNU General Public License (GPL)</license>
7
  <channel>community</channel>
@@ -49,10 +49,10 @@ To navigate to the submit form, customer can click on the Submit Your Testimonia
49
  &lt;/p&gt;&#xD;
50
  &lt;/div&gt;</description>
51
  <notes>Allow customers post testimonial text and their image. And support flexible how display testimonials sliders on home page or other page with static block.</notes>
52
- <authors><author><name>Padoosoft</name><user>MageAddons82</user><email>stdspace@gmail.com</email></author></authors>
53
- <date>2016-03-29</date>
54
- <time>01:45:08</time>
55
- <contents><target name="magelocal"><dir name="Padoo"><dir name="Testimonial"><dir name="Block"><dir name="Adminhtml"><dir name="Testimonial"><dir name="Edit"><file name="Form.php" hash="5749dbeb7f1fe7ab8b78dbe884c7040e"/></dir><file name="Edit.php" hash="914b023cec2b1402dccb031d4deb2e12"/><file name="Grid.php" hash="722f186ab879bf3d4112f6adf24ec274"/></dir><file name="Testimonial.php" hash="f9dbe9544ed6930394cf3fa7256b22fd"/></dir><file name="Testimonial.php" hash="f0edf369e74a58bc3f2d8fb42f316832"/></dir><dir name="Helper"><file name="Data.php" hash="924a16124019b4e449971dd25366da1d"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Testimonial"><file name="Collection.php" hash="c07706f21811ce990785236f833bb69b"/></dir><file name="Testimonial.php" hash="d4696cae8433d116a667f5c15a5ebf61"/></dir><file name="Status.php" hash="7df6f57de6d7345c739d4f679ae32596"/><dir name="System"><dir name="Conf"><dir name="Source"><file name="Effect.php" hash="4c626e35adcb612e899eee6c37ff68fa"/></dir></dir></dir><file name="Testimonial.php" hash="f76dde45980ad4404e9b25cef879569a"/><dir name="Wysiwyg"><file name="Config.php" hash="eb660301a3a3920c658e47a73f5862d9"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="TestimonialController.php" hash="34c2dcec439012b90b9600d46990030f"/></dir><file name="IndexController.php" hash="6b5430e76115b8bd1234e1a7083ebbf5"/><file name="SubmitController.php" hash="c0444ad03035a499e3a11be2d57ed43d"/></dir><dir name="etc"><file name="adminhtml.xml" hash="1de85fe62eceb0069649b02e55cacb25"/><file name="config.xml" hash="4778624513f169af21f618949eeeb687"/><file name="system.xml" hash="3acbe960f7c683338d2090b6b0d38a7f"/></dir><dir name="sql"><dir name="padoo_testimonial_setup"><file name="mysql4-install-1.0.0.php" hash="2f3b794d43922cfc4db1f3e7ccfb18c2"/><file name="mysql4-upgrade-1.1.1-1.1.2.php" hash="318b75675441e3a7c94126a2cd01ccc1"/><file name="mysql4-upgrade-1.1.3-1.1.4.php" hash="2f3b794d43922cfc4db1f3e7ccfb18c2"/><file name="mysql4-upgrade-1.2.1-1.2.2.php" hash="3c7148f289ad51e16e8a0bb8841e7a32"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Padoo_Testimonial.xml" hash="37cb5152f7d09a25593523de5e3066f1"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="padoo_testimonial.xml" hash="2511123fd1ae491cc5102b5327f3182f"/></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="padoo_testimonial.xml" hash="005c2c5f1501c093ed99751189870982"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Padoo_Testimonial.csv" hash="1d27ca49b4c4a6378a24a61dadd7e3d1"/></dir></target><target name="mage"><dir name="js"><dir name="padoo"><file name="checkValue.js" hash="963c1c86bbd0462be3c4793399a86024"/><file name="jquery.js" hash="b08031186fb28716dcbb38bcbd3ace0d"/><file name="jquery_noconflict.js" hash="afdd9b4ecb226d898fe655136f849752"/><file name="scriptaculous.js" hash="b592273cfa1d97643325ad77f7030879"/><file name="simplecheckout.js" hash="7158c0b30c4fbf2cbfc9b87c3f065043"/><file name="storelocator.js" hash="4cd94ab10a4cd421fff843a3854f71c4"/><file name="tinybox.js" hash="7e8a0b5f8e639947f494c9668caa169c"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><dir name="testimonial"><file name="testimonial.css" hash="aadfb6b347aac28e11773af0cbbc2c03"/></dir><dir name="padoo"><file name="jquery-ui.css" hash="c932ef4ca169d744a94855e65fa39531"/><file name="jquery.bxslider.css" hash="951b49dc2e2d9639063f8d74fae1c8f9"/><file name="onecheckout.css" hash="e98e06328b5870f6900fad90b473fb7a"/><dir name="storelocator"><file name="navigation.png" hash="e9c107ff5505cdcc8b1a56b582785be5"/><file name="navigation1.png" hash="4059251ab55fe554770ec860167e279f"/><file name="tag-bg.png" hash="6ed007475c32ee2d35c7133dba65dea9"/><file name="vssver2.scc" hash="4a0203452e42133d03bba0f121cc392d"/></dir><file name="storelocator.css" hash="455f9cad3c21e072f34bdc0ba6c6c768"/><file name="testimonial.css" hash="11f853c031875b77b31ff818bccd8682"/><file name="tinybox.css" hash="dd735dee70c031110a582ce2f037b009"/></dir></dir><dir name="images"><dir name="padoo"><file name="ajax-loader-tr.gif" hash="1ae32bc8232ff2527c627e5b38eb319a"/><file name="bg-btn-delete.gif" hash="2e447b3ea9a8e86d5e620bd8ed895423"/><file name="bg-btn-update.gif" hash="67dd70c9aaa8f568ca34d0698989c6ce"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="controls.png" hash="ace48756f4799305ae30e1167e0ff1f9"/><file name="loading.gif" hash="94b7ff6d24d260848bdd112fdac6a3f1"/><file name="process.jpg" hash="9c3130b318ec087449837bcf1886de7f"/><file name="slider_controls.png" hash="d9d25372f38c6b242b9b51d5841fe86e"/></dir></dir><dir name="js"><dir name="padoo"><file name="jquery.bxslider.js" hash="eea4ef92150fe92c5e75aef6507d06cf"/><file name="jquery.cycle.js" hash="ce83808c0a5a3fd7143adc6fdd6295f3"/></dir></dir></dir></dir></dir></target></contents>
56
  <compatible/>
57
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
58
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>padoo_testimonial</name>
4
+ <version>1.2.3</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/gpl-license.php">GNU General Public License (GPL)</license>
7
  <channel>community</channel>
49
  &lt;/p&gt;&#xD;
50
  &lt;/div&gt;</description>
51
  <notes>Allow customers post testimonial text and their image. And support flexible how display testimonials sliders on home page or other page with static block.</notes>
52
+ <authors><author><name>Padoosoft</name><user>Padoo</user><email>stdspace@gmail.com</email></author></authors>
53
+ <date>2016-09-06</date>
54
+ <time>08:32:43</time>
55
+ <contents><target name="magelocal"><dir name="Padoo"><dir name="Testimonial"><dir name="Block"><dir name="Adminhtml"><dir name="Testimonial"><dir name="Edit"><file name="Form.php" hash="5749dbeb7f1fe7ab8b78dbe884c7040e"/></dir><file name="Edit.php" hash="914b023cec2b1402dccb031d4deb2e12"/><file name="Grid.php" hash="722f186ab879bf3d4112f6adf24ec274"/></dir><file name="Testimonial.php" hash="f9dbe9544ed6930394cf3fa7256b22fd"/></dir><file name="Testimonial.php" hash="f0edf369e74a58bc3f2d8fb42f316832"/></dir><dir name="Helper"><file name="Data.php" hash="924a16124019b4e449971dd25366da1d"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Testimonial"><file name="Collection.php" hash="c07706f21811ce990785236f833bb69b"/></dir><file name="Testimonial.php" hash="d4696cae8433d116a667f5c15a5ebf61"/></dir><file name="Status.php" hash="7df6f57de6d7345c739d4f679ae32596"/><dir name="System"><dir name="Conf"><dir name="Source"><file name="Effect.php" hash="4c626e35adcb612e899eee6c37ff68fa"/></dir></dir></dir><file name="Testimonial.php" hash="f76dde45980ad4404e9b25cef879569a"/><dir name="Wysiwyg"><file name="Config.php" hash="eb660301a3a3920c658e47a73f5862d9"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="TestimonialController.php" hash="34c2dcec439012b90b9600d46990030f"/></dir><file name="IndexController.php" hash="6b5430e76115b8bd1234e1a7083ebbf5"/><file name="SubmitController.php" hash="34391f2a9ca966bbad4dd1e6921f6271"/></dir><dir name="etc"><file name="adminhtml.xml" hash="1de85fe62eceb0069649b02e55cacb25"/><file name="config.xml" hash="aaf42374fa68da14f4700a7576dba965"/><file name="system.xml" hash="3acbe960f7c683338d2090b6b0d38a7f"/></dir><dir name="sql"><dir name="padoo_testimonial_setup"><file name="mysql4-install-1.0.0.php" hash="2f3b794d43922cfc4db1f3e7ccfb18c2"/><file name="mysql4-upgrade-1.1.1-1.1.2.php" hash="318b75675441e3a7c94126a2cd01ccc1"/><file name="mysql4-upgrade-1.1.3-1.1.4.php" hash="2f3b794d43922cfc4db1f3e7ccfb18c2"/><file name="mysql4-upgrade-1.2.1-1.2.2.php" hash="3c7148f289ad51e16e8a0bb8841e7a32"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Padoo_Testimonial.xml" hash="37cb5152f7d09a25593523de5e3066f1"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="padoo_testimonial.xml" hash="2511123fd1ae491cc5102b5327f3182f"/></dir><dir name="template"><dir name="padoo"><dir name="testimonial"><file name="slider.phtml" hash="16e39697578d73bee0c88f94c806e75d"/><file name="submit.phtml" hash="020909c556dd0e832a1586809a3af382"/><file name="testimonials.phtml" hash="bd2df0475fe75d24769462e78d97b5dc"/><file name="testimonials_box.phtml" hash="f7d17d8aff58c234c65397537adea94f"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="padoo_testimonial.xml" hash="005c2c5f1501c093ed99751189870982"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Padoo_Testimonial.csv" hash="1d27ca49b4c4a6378a24a61dadd7e3d1"/></dir></target><target name="mage"><dir name="js"><dir name="padoo"><file name="checkValue.js" hash="963c1c86bbd0462be3c4793399a86024"/><file name="jquery.js" hash="b08031186fb28716dcbb38bcbd3ace0d"/><file name="jquery_noconflict.js" hash="afdd9b4ecb226d898fe655136f849752"/><file name="scriptaculous.js" hash="b592273cfa1d97643325ad77f7030879"/><file name="simplecheckout.js" hash="7158c0b30c4fbf2cbfc9b87c3f065043"/><file name="storelocator.js" hash="4cd94ab10a4cd421fff843a3854f71c4"/><file name="tinybox.js" hash="7e8a0b5f8e639947f494c9668caa169c"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="testimonial"><file name="testimonial.css" hash="aadfb6b347aac28e11773af0cbbc2c03"/></dir><dir name="padoo"><file name="jquery-ui.css" hash="c932ef4ca169d744a94855e65fa39531"/><file name="jquery.bxslider.css" hash="951b49dc2e2d9639063f8d74fae1c8f9"/><file name="testimonial.css" hash="11f853c031875b77b31ff818bccd8682"/></dir></dir><dir name="images"><dir name="padoo"><file name="ajax-loader-tr.gif" hash="1ae32bc8232ff2527c627e5b38eb319a"/><file name="bg-btn-delete.gif" hash="2e447b3ea9a8e86d5e620bd8ed895423"/><file name="bg-btn-update.gif" hash="67dd70c9aaa8f568ca34d0698989c6ce"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="controls.png" hash="ace48756f4799305ae30e1167e0ff1f9"/><file name="loading.gif" hash="94b7ff6d24d260848bdd112fdac6a3f1"/><file name="process.jpg" hash="9c3130b318ec087449837bcf1886de7f"/><file name="slider_controls.png" hash="d9d25372f38c6b242b9b51d5841fe86e"/></dir></dir><dir name="js"><dir name="padoo"><file name="jquery.bxslider.js" hash="eea4ef92150fe92c5e75aef6507d06cf"/><file name="jquery.cycle.js" hash="ce83808c0a5a3fd7143adc6fdd6295f3"/></dir></dir></dir></dir></dir></target></contents>
56
  <compatible/>
57
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
58
  </package>
skin/frontend/{default → base}/default/css/padoo/jquery-ui.css RENAMED
File without changes
skin/frontend/{default → base}/default/css/padoo/jquery.bxslider.css RENAMED
File without changes
skin/frontend/{default → base}/default/css/padoo/testimonial.css RENAMED
File without changes
skin/frontend/{default → base}/default/css/testimonial/testimonial.css RENAMED
File without changes
skin/frontend/{default → base}/default/images/padoo/ajax-loader-tr.gif RENAMED
File without changes
skin/frontend/{default → base}/default/images/padoo/bg-btn-delete.gif RENAMED
File without changes
skin/frontend/{default → base}/default/images/padoo/bg-btn-update.gif RENAMED
File without changes
skin/frontend/{default → base}/default/images/padoo/btn_trash.gif RENAMED
File without changes
skin/frontend/{default → base}/default/images/padoo/controls.png RENAMED
File without changes
skin/frontend/{default → base}/default/images/padoo/loading.gif RENAMED
File without changes
skin/frontend/{default → base}/default/images/padoo/process.jpg RENAMED
File without changes
skin/frontend/{default → base}/default/images/padoo/slider_controls.png RENAMED
File without changes
skin/frontend/{default → base}/default/js/padoo/jquery.bxslider.js RENAMED
File without changes
skin/frontend/{default → base}/default/js/padoo/jquery.cycle.js RENAMED
File without changes
skin/frontend/default/default/css/padoo/onecheckout.css DELETED
@@ -1,452 +0,0 @@
1
- @import "//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css";
2
- .onecheckout-onepage-wrap{
3
- /* position:relative; */
4
- }
5
- #load-info-overlay{
6
- position:relative;
7
- background:url('../../images/ecommerceteam/loadinfo.gif') 50% 50% no-repeat #fff;
8
- opacity:0.8;
9
- filter: alpha(opacity=50);
10
- width:100%;
11
- z-index:255;
12
- display:none;
13
- }
14
- #sln-overlay-methods .img-load {
15
- display: none;
16
- }
17
- .img-load {
18
- background:url('../../images/padoo/ajax-loader-tr.gif') no-repeat;
19
- width: 32px;
20
- height: 32px;
21
- position:absolute;
22
- right: 0;
23
- left:0;
24
- bottom:0;
25
- top:0;
26
- margin:auto;
27
- }
28
- #onecheckout-form-wrap form{
29
- zoom:1;
30
- }
31
- #onecheckout-form-wrap form ul{
32
- margin:0;
33
- padding:5px 10px;
34
- list-style:none;
35
-
36
- }
37
-
38
- #onecheckout-form-wrap form ul.right{
39
- margin-right:38px;
40
- }
41
-
42
- #onecheckout-form-wrap .address-form-list li{
43
- clear:both;
44
- zoom:1;
45
- }
46
- #onecheckout-form-wrap .address-form-list label{
47
- display:inline;
48
- float:left;
49
- width:130px;
50
- text-align:left;
51
- }
52
-
53
- #onecheckout-form-wrap .form-list label.required em{
54
- color: #eb340a;
55
- float: left;
56
- font-style: normal;
57
- position:initial;
58
- }
59
-
60
- #onecheckout-form-wrap.onecheckout-3columns .address-form-list label{
61
- width:110px;
62
- }
63
-
64
- #onecheckout-form-wrap .address-form-list .field {
65
- width:auto;
66
- }
67
- #onecheckout-form-wrap .address-form-list .field .input-box{
68
- clear:none;
69
- width:auto;
70
- float:left;
71
- }
72
- #onecheckout-form-wrap .easy-step{
73
- display:block;
74
- clear:both;
75
- border:1px solid #ccc;
76
- background:url('../../images/ecommerceteam/block.gif') 0 0 repeat-x #fff;
77
- margin: 0 0 10px;
78
- padding: 0 0 10px;
79
- }
80
- #onecheckout-shipping-payment-step{
81
- width:100%;
82
- margin-bottom:10px;
83
- position:relative;
84
- }
85
-
86
- #onecheckout-shipping-payment-step td{
87
- border:1px solid #ccc;
88
-
89
- }
90
- #onecheckout-shipping-payment-step td.shipping-method,
91
- #onecheckout-shipping-payment-step td.payment-method{
92
- background:#fff;
93
- }
94
- #onecheckout-shipping-payment-step td.methods-separator{
95
- width:10px;
96
- border:0;
97
- }
98
- #onecheckout-shipping-payment-step td.shipping-method{
99
- width:40%;
100
- }
101
- #onecheckout-form-wrap.onecheckout-3columns #onecheckout-shipping-payment-step td.shipping-method{
102
- width:250px;
103
- }
104
- #onecheckout-form-wrap.onecheckout-3columns #onecheckout-shipping-payment-step td.shipping-method .easy-step{
105
- width:220px;
106
- }
107
- #onecheckout-form-wrap.onecheckout-3columns #onecheckout-shipping-payment-step td.shipping-method .input-text{
108
- width:215px;
109
- }
110
- #onecheckout-form-wrap .easy-step h2{
111
- /* color:#E26703; */
112
- font-size:16px;
113
- font-weight:900;
114
- margin:0;
115
- padding: 10px;
116
- }
117
- #onecheckout-form-wrap .easy-step h2 span{
118
- color:#333;
119
- font-weight:100;
120
- text-transform:none;
121
- }
122
- #onecheckout-form-wrap .easy-step h2 label{
123
- display: block;
124
- }
125
- #onecheckout-form-wrap .address-form-list .fields .field{
126
- width:50%;
127
- }
128
- #onecheckout-form-wrap .address-form-list .fields .field .input-box{
129
-
130
- }
131
-
132
-
133
- #onecheckout-form-wrap .address-form-list .input-box input.input-text{
134
- padding:3px;
135
- width:252px;
136
- background:url('../../images/ecommerceteam/inputbg.gif') 0 0 no-repeat #fff;
137
- }
138
- #onecheckout-form-wrap.onecheckout-3columns .address-form-list .fields .field .input-box{
139
- width:152px;
140
- }
141
- #onecheckout-form-wrap.onecheckout-3columns .address-form-list .input-box input.input-text{
142
- width:152px;
143
- }
144
- #onecheckout-form-wrap.onecheckout-3columns .address-form-list .input-box{
145
- width:160px;
146
- }
147
- #onecheckout-form-wrap.onecheckout-3columns .address-form-list .input-box select{
148
- width:160px;
149
- }
150
- #onecheckout-form-wrap.onecheckout-3columns .onecheckout-left-column{
151
- float:left;
152
- width:36%;
153
-
154
- }
155
- #onecheckout-form-wrap.onecheckout-3columns .onecheckout-right-column{
156
- float:right;
157
- width:63%;
158
- }
159
-
160
- #onecheckout-form-wrap .address-form-list .input-box input.readonly{
161
- color:#969696;
162
- background:url('../../images/ecommerceteam/inputbg-readonly.gif') 0 0 no-repeat #e6e6e6;
163
- }
164
-
165
- #onecheckout-form-wrap .address-form-list .input-box select{
166
- padding:2px;
167
- background:url('../../images/ecommerceteam/inputbg.gif') 0 0 no-repeat #fff;
168
- }
169
-
170
- #onecheckout-form-wrap .address-form-list .input-box .validation-failed{
171
- border:1px solid #EB340A !important;
172
- background:url('../../images/ecommerceteam/inputbg-error.gif') 0 0 no-repeat #fff !important;
173
- }
174
-
175
- #onecheckout-form-wrap #onecheckout-shippingmethod,
176
- #onecheckout-form-wrap #onecheckout-paymentmethod{
177
- border:0;
178
- margin:0;
179
- }
180
-
181
- #onecheckout-form-wrap #onecheckout-review{
182
- clear:both;
183
- position:relative;
184
- }
185
- #onecheckout-form-wrap .validation-advice{
186
- /*display:none;*/
187
- }
188
- #onecheckout-form-wrap .address-form-list .control label{
189
- display:inline;
190
- margin-right:17px;
191
- }
192
- #onecheckout-form-wrap fieldset{
193
- padding-top:10px;
194
- }
195
- #onecheckout-form-wrap #checkout-review-table{
196
- margin:10px 0;
197
- border:1px solid #ddd;
198
- }
199
- #onecheckout-form-wrap #checkout-review-table thead th {
200
- background:#eee;
201
- border:0;
202
- border-bottom:1px solid #ddd !important;
203
- }
204
- #onecheckout-form-wrap #checkout-review-table tfoot tr{
205
- background:#eee !important;
206
- }
207
- #onecheckout-form-wrap #checkout-review-table tfoot tr.first td {
208
- background:url('../../images/ecommerceteam/totalsbg.gif') 0 0 repeat-x #eee;
209
- }
210
-
211
- #onecheckout-form-wrap #checkout-review-table .even{
212
- background:#fff !important;
213
- }
214
- #onecheckout-form-wrap .button-set{
215
- text-align:right;
216
- }
217
- #onecheckout-form-wrap.onecheckout-3columns .button-set{
218
- float:left;
219
- }
220
- #onecheckout-shippingmethod .box-weight {
221
- float: left;
222
- width: 100%;
223
- margin: 5px 0px 0px 0px;
224
- }
225
- #onecheckout-shippingmethod .box-weight p {
226
- float: left;
227
- width: 50%;
228
- }
229
- #onecheckout-shippingmethod .box-weight p span {
230
- font-size: 16px;
231
- font-weight: bold;
232
- }
233
-
234
- #elogin-buttons{
235
- overflow:hidden;
236
- zoom:1;
237
- }
238
- #elogin-message{
239
- color:red
240
- }
241
- #elogin-loading{
242
- background:url('../../images/ecommerceteam/elogin-loading.gif') center center no-repeat;
243
- font-size:10px;
244
- color:#666;
245
- padding-top:5px;
246
- height:20px;
247
- }
248
- #elogin-buttons{
249
- padding-top:3px;
250
- height:22px;
251
- }
252
-
253
- #onecheckout-coupon{
254
- width: 50%;
255
- float:left;
256
- }
257
-
258
- #onecheckout-coupon button{
259
- margin-top:10px;
260
- }
261
-
262
- #onecheckout-coupon .button-set {
263
- float: left;
264
- }
265
-
266
- #coupon_code{
267
- width:90%;
268
- }
269
-
270
- .onecheckout-3columns #register-customer-password .field{
271
- margin-bottom:8px;
272
- }
273
- #onecheckout-form-wrap #onecheckout-addressbilling select.address-select,
274
- #onecheckout-form-wrap #shipping-address-form select.address-select{
275
- width:98%;
276
- }
277
- .one_step {
278
- float: left;
279
- width: 100%;
280
- }
281
- .one_step ul {
282
- float: left;
283
- width: 100%;
284
- margin-left: 5%;
285
- }
286
- .one_step ul li {
287
- float: left;
288
- margin-top: 16px;
289
- height: 60px;
290
- width: 25%;
291
- }
292
- .one_step ul li strong {
293
- color: #E26703;
294
- float: left;
295
- font-size: 20px;
296
- line-height: 20px;
297
- margin-right: 15px;
298
-
299
- }
300
- .one_step ul li p {
301
- float: left;
302
- font-size: 14px;
303
- font-weight: bold;
304
- text-align: center;
305
- }
306
- .checkout-5step ul {
307
- margin-left: 2%;
308
- }
309
- .checkout-5step ul li {
310
- width: 20%;
311
- }
312
- #myimage {
313
- position: fixed;
314
- top: 0px;
315
- left: 400px;
316
- background: #fff;
317
- z-index: 9999;
318
- width: 300px;
319
- padding: 30px;
320
- }
321
- .easy-step .subscribe label {
322
- }
323
- #checkout-review-table .cat-image {
324
- float: left;
325
- margin-right: 10px;
326
- }
327
- #checkout-review-table dl.item-options{display: inherit;}
328
- #checkout-review-table .update,
329
- #checkout-review-table .delete {
330
- background: url("../../images/padoo/bg-btn-delete.gif") no-repeat scroll 0 0 transparent;
331
- line-height: 50px;
332
- padding-left: 15px;
333
- text-decoration: none;
334
- text-align: right;
335
- color: #000;
336
- float: right;
337
- margin: 20px 0px 0px 0px;
338
- }
339
- #checkout-review-table .update:hover,
340
- #checkout-review-table .delete:hover {
341
- color: #E26703;
342
- }
343
- #checkout-review-table .update span,
344
- #checkout-review-table .delete span {
345
- float: right;
346
- line-height: 10px;
347
- }
348
- #checkout-review-table .update {
349
- background: url("../../images/padoo/bg-btn-update.gif") no-repeat scroll 0 0 transparent;
350
- margin: 17px 0px 0px 0px;
351
- }
352
-
353
- .checkout-agreements .agree {
354
- margin: 0;
355
- padding: 10px 0;
356
- }
357
- .checkout-agreements .agree a{
358
- text-decoration: none;
359
- }
360
- .checkout-agreements li {margin:0 !important;}
361
- .agreement-box{
362
- bottom: 0;
363
- display: block;
364
- height: 100%;
365
- left: 0;
366
- position: fixed;
367
- right: 0;
368
- top: 0;
369
- width: 100%;
370
- z-index:10005;
371
- background: rgba(0, 0, 0, 0.7) no-repeat 0 50%;
372
- display:none;
373
- }
374
- .agreement-box .agreement-content{
375
- background: none repeat scroll 0 0 #ffffff;
376
- border: 1px solid #999999;
377
- bottom: 0;
378
- height: 150px;
379
- left: 0;
380
- margin: auto;
381
- padding: 5px 5px 5px 20px;
382
- position: absolute;
383
- right: 0;
384
- top: 0 !important;
385
- width: 450px;
386
- border-radius: 4px;
387
- box-shadow: 0 0 4px 2px #888;
388
- box-sizing:content-box;
389
- }
390
- .agreement-box .agreement-content span{
391
- display: block;
392
- height: 128px;
393
- margin-top: 10px;
394
- overflow-y: scroll;
395
- text-align: left;
396
- width: 100%;
397
- }
398
- .agreement-box .agreement-content .close-confirm {
399
- background: rgba(0, 0, 0, 0) url("../../images/padoo/controls.png") no-repeat scroll -50px 0;
400
- bottom: 4px;
401
- float: right;
402
- left: 3px;
403
- position: relative;
404
- width: 20px;
405
- height: 20px;
406
- }
407
- .comments{width: 50%; float: left;}
408
- .comments textarea{padding: 0; width: 99.5%;}
409
- .onestepcheckout-survey{
410
- background: #f8f7f5;
411
- margin: 10px;
412
- padding: 10px;
413
- }
414
- .onestepcheckout-survey label{
415
- display: block;
416
- margin: 0 0 5px;
417
- }
418
- .onestepcheckout-survey select{
419
- width: 50%;
420
- }
421
- .onestepcheckout-group{
422
- display: inline-block;
423
- padding: 1%;
424
- width: 98%;
425
- }
426
- .onestepcheckout-group h2{padding: 10px 0 !important;}
427
- .onestepcheckout-giftmessage{
428
- background:#f8f7f5;
429
- margin: 10px;
430
- padding: 1px 10px;
431
- }
432
- .onestepcheckout-giftmessage .onestepcheckout-form-list{
433
- padding:0 !important;
434
- }
435
- .onestepcheckout-giftmessage .gift-messages{
436
- padding: 5px 0;
437
- }
438
- .onestepcheckout-form-list .field {
439
- width:49%;
440
- }
441
- .onestepcheckout-form-list .field .input-box input {
442
- width:98%;
443
- }
444
- .onestepcheckout-form-list .input-box textarea {
445
- width: 99%;
446
- }
447
- .delivery-box{
448
- margin:10px 0;
449
- padding: 5px 10px;
450
- }
451
- .delivery-box input {height:19px;}
452
- .enable-shipping,.group-method,#onecheckout-paymentmethod-available,#checkout-review-table-wrapper,.agreements,.subscribe,.delivery-enable{padding:5px 10px }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
skin/frontend/default/default/css/padoo/storelocator.css DELETED
@@ -1,529 +0,0 @@
1
- /*Search*/
2
- .store-locator-search-box{
3
- width:100%;
4
- border-bottom:1px solid #ccc;
5
- margin-bottom:20px;
6
- }
7
- .store-locator-list {
8
- width:50%;
9
- float :left;
10
- }
11
- .store-locator-list:nth-child(2n){text-align:right}
12
- .store-locator-content a:active{text-decoration:underline;color:#6699FF;}
13
- .store-locator-list-store td{vertical-align:middle;}
14
- .store-locator-list-store td:first-child{padding-right:25px;}
15
- .fields.store-locator-list.last {
16
- float: right;
17
- margin:15px 0 10px;
18
- }
19
- .store-locator-list label{
20
- width:24%;
21
- float:left;
22
- }
23
- .store-locator-list input{
24
- width:70%;
25
- padding:2px!important;
26
- }
27
- .adp-directions{width:100%;}
28
- .store-locator-list select{
29
- width:71%!important;
30
- padding:0;
31
- margin:0;
32
- padding:2px!important;
33
- }
34
- .store-locator-column-left{
35
- padding-left:2%;
36
- width:40%!important;
37
- float:left;
38
- }
39
- .padoo-map-image{
40
- width:100%;
41
- }
42
- .padoo-map-image img{width:100%;}
43
- .store-locator-column-right{
44
- padding-left:5px;
45
- width:55%!important;
46
- float:right;
47
- }
48
- .store-locator-column-button{
49
- padding-right:5px;
50
- text-align:right;
51
- }
52
- /*Content*/
53
- .store-locator-content{
54
- width:100%;
55
- height: auto;
56
- border-bottom:1px solid #ccc;
57
- padding-bottom:10px;
58
- }
59
- /*List store*/
60
- .store-locator-list-store-box{
61
- border:1px solid #ccc;
62
- float:left;
63
- width:29%;
64
- padding:5px 0px 5px 10px;
65
- height:520px;
66
- }
67
-
68
- .fb_iframe_widget span,.fb_iframe_widget iframe{width:100%!important;}
69
- .fb_iframe_widget{display:inline!important;}
70
- .store-locator-list-store-title{
71
- width:95%;
72
- font-size:16pt;
73
- border-bottom:1px solid #ccc;
74
- margin-bottom:5px;
75
- }
76
- .store-locator-list-store{
77
- height:480px;
78
- overflow:auto;
79
- }
80
- .store-locator-list-store-item{
81
- width:93%;
82
- min-height:100px;
83
- height: auto;
84
- margin-bottom:10px;
85
- border:1px solid #ccc;
86
- padding:2%;
87
-
88
- }
89
- .store-locator-list-store-item:hover{
90
- background:#E9E9F3;
91
- }
92
- .active{
93
- background:#E9E9F3;
94
- }
95
- .selecteda{
96
- background:#E9E9F3;
97
- }
98
- .store-locator-item-content{
99
- color:#666;
100
- float:left;
101
- width:60%;
102
- font-size:8pt;
103
- }
104
- .store-locator-item-image{
105
- float:right;
106
- width:70px;
107
- height:100px;
108
- background:#edf7fd;
109
- }
110
- .store-locator-item-name{
111
- font-size:9pt;
112
- color:#de5400;
113
- font-weight:bold;
114
- }
115
- .store-locator-view-detail .store-locator-item-name a{
116
- text-decoration: none;
117
- color: #de5400;
118
- }
119
- .store-locator-view-detail .store-locator-item-name a:hover{
120
- text-decoration: underline;
121
- }
122
- .store-locator-item-content a{
123
- color:#69F;
124
- font-style:italic;
125
- text-decoration:none;
126
- margin-right:10px;
127
- }
128
- .store-locator-item-content a:hover{
129
- text-decoration:underline;
130
- }
131
- /*Map*/
132
- .store-locator-map{
133
- border:1px solid #ccc;
134
- float:right;
135
- height:530px;
136
- width:68%;
137
- }
138
-
139
- .store-locator-view-detail{
140
- width: 40%;
141
- height: auto;
142
- float: left;
143
- }
144
- .store-locator-view-detail a{
145
- color:#69F;
146
- text-decoration: none;
147
- }
148
- .store-locator-view-detail label{
149
- display: block;
150
- float: left;
151
- width: 25%;
152
- font-weight: bold;
153
- clear: both;
154
- }
155
- .store-locator-view-detail span{
156
- width: 73%;
157
- display: block;
158
- float: right;
159
- padding-bottom: 2px;
160
- }
161
- .store-locator-view-detail p{
162
- text-align: justify;
163
- padding-top:1px;
164
- padding-bottom: 1px;
165
- margin: 0;
166
- }
167
- .clear{
168
- clear:both;
169
- }
170
-
171
- .store-pickup-image{
172
- float :left;
173
- margin-right: 5px;
174
- }
175
-
176
- .locator-main-outer .locator-image-small{
177
- border: 2px solid #DDDDDD;
178
- float: left;
179
- height: 56px;
180
- overflow: hidden;
181
- width: 56px;
182
- }
183
- .locator-image-main{
184
- margin: 0 0 13px;
185
- }
186
- .locator-main-outer .more-views h2 {
187
- border-bottom: 1px solid #CCCCCC;
188
- font-size: 11px;
189
- margin: 0 0 8px;
190
- text-transform: uppercase;
191
- font-weight: bold;
192
- }
193
- .store-locator-title{
194
- color: #de5400;
195
- font-weight: bold;
196
- font-size: 13px;
197
- margin-bottom: 5px;
198
- display: block;
199
- }
200
-
201
- .more-views ul li {
202
- float: left;
203
- padding: 3px;
204
- margin: 1px;
205
- border: 1px solid rgb(230, 230, 230);
206
- }
207
- .padoo-map-image:hover img{
208
- box-shadow: 0 0 5px rgb(155, 148, 148);
209
- }
210
- .locator-image-small:hover img{
211
- border: 1px solid #ccc;
212
- }
213
- #description {
214
- overflow: auto;
215
- max-height: 250px;
216
- }
217
- .store-locator-tag{
218
- position: relative;
219
- width:98%;
220
- padding:1%;
221
- margin:auto;
222
- padding-top: 20px;
223
- margin-top:13px;
224
- border:1px solid #E5E5E5;
225
- background:url(storelocator/tag-bg.png) repeat;
226
- }
227
- .store-locator-tag a{
228
- color:#fafafa;
229
- text-shadow: 0 1px rgba(0,0,0,0.4);
230
- text-decoration:none;
231
- display: inline-block;
232
- padding: 0 12px;
233
- font-size:11pt;
234
- margin-bottom: 5px;
235
- background:#06F;
236
- border-radius:15px;
237
- background: #ff9035; /* Old browsers */
238
- line-height:27px;
239
- background: -moz-linear-gradient(top, #ff9035 1%, #ff7400 100%); /* FF3.6+ */
240
- background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#ff9035), color-stop(100%,#ff7400)); /* Chrome,Safari4+ */
241
- background: -webkit-linear-gradient(top, #ff9035 1%,#ff7400 100%); /* Chrome10+,Safari5.1+ */
242
- background: -o-linear-gradient(top, #ff9035 1%,#ff7400 100%); /* Opera 11.10+ */
243
- background: -ms-linear-gradient(top, #ff9035 1%,#ff7400 100%); /* IE10+ */
244
- background: linear-gradient(to bottom, #ff9035 1%,#ff7400 100%); /* W3C */
245
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9035', endColorstr='#ff7400',GradientType=0 ); /* IE6-9 */
246
-
247
- box-shadow: 0 1px 2px rgba(0,0,0,0.21);
248
- }
249
- .store-locator-tag a:hover{
250
- background: #B6DA25;
251
- }
252
- .padoo-storelocator-getdirection{
253
- border: 1px solid #E5E6E3;
254
- background-color: #FFFFFF;
255
- margin-top: -10px;
256
- margin-bottom: 10px;
257
- width: 97%;
258
- clear:both;
259
- display:block;
260
- }
261
- .padoo-storelocator-navigation{
262
- margin-top: 5px;
263
- margin-bottom:5px;
264
- display: block;
265
- }
266
- .padoo-storelocator-navigation .store-locator-navigation_image{
267
- background: url(storelocator/navigation.png) left no-repeat;
268
- background-position: 0px 0px;
269
- display:inline-block;
270
- height: 8px;
271
- width: 16px;
272
- margin-right:10px;
273
- margin-left:5px;
274
- }
275
- .padoo-storelocator-directionsPanel{}
276
- .padoo-storelocator-navigation-up{
277
- background-image: url(storelocator/navigation.png);
278
- background-position: 16px 0px;
279
-
280
- height: 8px;
281
- width: 16px;
282
- margin-left: 107px;
283
- margin-top: 3px;
284
- display: block;
285
- }
286
- .store-locator-tag .tag_active{
287
- background:#B6DA25;
288
- }
289
-
290
- .store-locator-span-tag {
291
- font-weight: bold;
292
- border: 1px solid #E5E5E5;
293
- position: absolute;
294
- top: -10px;
295
- padding:2px;
296
- background-color: #F1F0F0;
297
- background:url(storelocator/tag-bg.png) repeat;
298
- }
299
- .store-locator-list input,.store-locator-list select{height:auto!important; border:1px solid #CCCCCC;}
300
-
301
- /*++++++++++++++++++++++++++++++++++++++++++++++++++++++RESPONSIVE++++++++++++++++++++++++++++++++++++++++++++++++++++*/
302
-
303
- /*@media all and (min-width: 0px) and (max-width: 379px) {
304
-
305
- }*/
306
-
307
- @media all and (min-width: 0px) and (max-width: 719px) {
308
- .store-locator-list,.store-locator-list label,.store-locator-list input,.store-locator-list select{
309
- width:100%!important;
310
- text-align:left;
311
- -webkit-box-sizing:border-box;
312
- -moz-box-sizing:border-box;
313
- box-sizing:border-box;
314
- -moz-background-clip:padding-box !important;
315
- -webkit-background-clip:padding-box !important;
316
- background-clip:padding-box !important;
317
- }
318
- .store-locator-list-store-box{
319
- width:100%;
320
- border:none;
321
- padding:5px 0 5px 0px;
322
- border-bottom:1px solid #cccccc;
323
- margin-bottom:18px;
324
- height:auto;
325
- }
326
- .store-locator-list-store{width:100%;
327
- padding-right:0;
328
- height:160px;
329
- }
330
- .store-locator-list-store-title,.store-locator-view-detail{
331
- width:100%;
332
- }
333
-
334
- .store-locator-list-store-item{
335
- width:100%;
336
- float:left;
337
- -webkit-box-sizing:border-box;
338
- -moz-box-sizing:border-box;
339
- box-sizing:border-box;
340
- -moz-background-clip:padding-box !important;
341
- -webkit-background-clip:padding-box !important;
342
- background-clip:padding-box !important;
343
- }
344
-
345
- #store-locator-list-store div.store-locator-list-store-item:nth-child(even){
346
- float:right;
347
- }
348
- .store-locator-list-store-box .clear{
349
- display:none;
350
- }
351
- .store-locator-map{
352
- width:100%!important;
353
- margin-bottom:15px;
354
- }
355
- .store-locator-item-content a{float:left!important;}
356
- .padoo-map-image{width:100%;}
357
- .padoo-map-image img{width:100%;}
358
-
359
- .store-locator-column-right,.fb_iframe_widget span,.fb_iframe_widget iframe{width:100%!important;}
360
- .fb_iframe_widget{display:inline!important;}
361
-
362
- .store-locator-column-left{
363
- width:100%!important;
364
- margin-bottom:18px;
365
- }
366
- }
367
- /*
368
- @media all and (min-width: 481px) and (max-width: 719px) {
369
- .store-locator-list,.store-locator-list label,.store-locator-list input,.store-locator-list select{
370
- width:100%;
371
- text-align:left;
372
- -webkit-box-sizing:border-box;
373
- -moz-box-sizing:border-box;
374
- box-sizing:border-box;
375
- -moz-background-clip:padding-box !important;
376
- -webkit-background-clip:padding-box !important;
377
- background-clip:padding-box !important;
378
- }
379
- .store-locator-list-store-box,.store-locator-view-detail{
380
- width:100%;
381
- border:none;
382
- padding:5px 0 5px 0px;
383
- border-bottom:1px solid #cccccc;
384
- margin-bottom:18px;
385
- height:auto;
386
- }
387
- .store-locator-list-store{width:100%;
388
- padding-right:0;
389
- height:160px;
390
- }
391
- .store-locator-list-store-title{
392
- width:100%;
393
- }
394
-
395
- .store-locator-list-store-item{
396
- width:49%;
397
- float:left;
398
- -webkit-box-sizing:border-box;
399
- -moz-box-sizing:border-box;
400
- box-sizing:border-box;
401
- -moz-background-clip:padding-box !important;
402
- -webkit-background-clip:padding-box !important;
403
- background-clip:padding-box !important;
404
- }
405
-
406
- #store-locator-list-store div.store-locator-list-store-item:nth-child(even){
407
- float:right;
408
- }
409
- .store-locator-list-store-box .clear{
410
- display:none;
411
- }
412
- .store-locator-map{
413
- width:100%!important;
414
- margin-bottom:15px;
415
- }
416
- .store-locator-item-content a{float:left!important;}
417
- .store-locator-column-right{
418
- float:left;
419
- }
420
- .store-locator-column-left{
421
- width:100%!important;
422
- }
423
- .locator-image-main img{
424
- width:400px;
425
- display:block;
426
- float:none; margin:0 auto;
427
- }
428
-
429
- .store-locator-title{text-align:center;}
430
-
431
- .store-locator-column-right,.fb_iframe_widget span,.fb_iframe_widget iframe{width:100%!important;}
432
- .fb_iframe_widget{display:inline!important;}
433
-
434
- }
435
- */
436
- @media screen and (min-width: 720px) and (max-width: 985px) {
437
- .store-locator-list,.store-locator-list label,.store-locator-list input,.store-locator-list select{
438
- width:100%!important;
439
- text-align:left;
440
- -webkit-box-sizing:border-box;
441
- -moz-box-sizing:border-box;
442
- box-sizing:border-box;
443
- -moz-background-clip:padding-box !important;
444
- -webkit-background-clip:padding-box !important;
445
- background-clip:padding-box !important;
446
- }
447
- .store-locator-list-store-box{
448
- width:100%;
449
- border:none;
450
- padding:5px 0 5px 0px;
451
- border-bottom:1px solid #cccccc;
452
- margin-bottom:18px;
453
- height:auto;
454
- }
455
- .store-locator-list-store{width:100%;
456
- padding-right:0;
457
- height:160px;
458
- }
459
- .store-locator-list-store-title,.store-locator-view-detail{
460
- width:100%;
461
- }
462
-
463
- .store-locator-list-store-item{
464
- width:100%;
465
- float:left;
466
- -webkit-box-sizing:border-box;
467
- -moz-box-sizing:border-box;
468
- box-sizing:border-box;
469
- -moz-background-clip:padding-box !important;
470
- -webkit-background-clip:padding-box !important;
471
- background-clip:padding-box !important;
472
- }
473
-
474
- #store-locator-list-store div.store-locator-list-store-item:nth-child(even){
475
- float:right;
476
- }
477
- .store-locator-list-store-box .clear{
478
- display:none;
479
- }
480
- .store-locator-map{
481
- width:100%!important;
482
- margin-bottom:15px;
483
- }
484
- .store-locator-item-content a{float:left!important;}
485
- .padoo-map-image{width:100%;}
486
- .padoo-map-image img{width:100%;}
487
-
488
- .store-locator-column-right,.fb_iframe_widget span,.fb_iframe_widget iframe{width:100%!important;}
489
- .fb_iframe_widget{display:inline!important;}
490
-
491
- .store-locator-column-left{
492
- width:100%!important;
493
- margin-bottom:18px;
494
- }
495
- }
496
- @media only screen and (max-width: 767px) {
497
- .store-locator-list label{width:27%;}
498
- .store-locator-column-right{float:right;width:100%;}
499
- .padoo-map-image{width:100%;}
500
- .padoo-map-image img{width:100%;}
501
-
502
- .fb_iframe_widget span,.fb_iframe_widget iframe{width:100%!important;}
503
- .fb_iframe_widget{display:inline!important;}
504
- }
505
-
506
- @media screen and (min-width: 986px) and (max-width: 1235px) {
507
-
508
- }
509
-
510
-
511
-
512
- @media screen and (min-width: 1236px) and (max-width: 1585px) {
513
-
514
-
515
- }
516
-
517
-
518
- @media screen and (min-width: 1586px) and (max-width: 1890px) {
519
-
520
- }
521
-
522
-
523
- @media screen and (min-width:1891px) {
524
-
525
- }
526
- .store-locator-content #map img {
527
- max-width: inherit;
528
- width: auto !important;
529
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
skin/frontend/default/default/css/padoo/storelocator/navigation.png DELETED
Binary file
skin/frontend/default/default/css/padoo/storelocator/navigation1.png DELETED
Binary file
skin/frontend/default/default/css/padoo/storelocator/tag-bg.png DELETED
Binary file
skin/frontend/default/default/css/padoo/storelocator/vssver2.scc DELETED
Binary file
skin/frontend/default/default/css/padoo/tinybox.css DELETED
@@ -1,3 +0,0 @@
1
- #tinybox {position:fixed; top:40% !important; display:none;padding:15px; background:#fff ; z-index:2000}
2
- #tinymask {position:absolute; display:none; top:0; left:0; height:100%; width:100%; background:#000; z-index:1500}
3
- #tinycontent {background:#fff}