Version Notes
- Resolve directory separator issue
Download this release
Release Info
Developer | Vsourz Digital |
Extension | Responsive_Owl_Slider |
Version | 1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.0.0 to 1.0.1
- app/code/community/Vsourz/Bannerslider/Block/Adminhtml/Bannerslider/Renderer/Category.php +8 -4
- app/code/community/Vsourz/Bannerslider/Block/Adminhtml/Bannerslider/Renderer/Catimage.php +1 -1
- app/code/community/Vsourz/Bannerslider/Block/Adminhtml/Bannerslider/Renderer/Image.php +1 -1
- app/code/community/Vsourz/Bannerslider/Block/Adminhtml/Image/Edit/Tabs/Form.php +6 -0
- app/code/community/Vsourz/Bannerslider/controllers/Adminhtml/CategoryController.php +2 -2
- app/code/community/Vsourz/Bannerslider/controllers/Adminhtml/ImageController.php +12 -9
- app/code/community/Vsourz/Bannerslider/etc/config.xml +1 -1
- app/code/community/Vsourz/Bannerslider/sql/bannerslider_setup/mysql4-upgrade-0.1.0-0.1.1.php +20 -0
- app/design/frontend/base/default/template/bannerslider/bannerslider.phtml +8 -2
- package.xml +5 -5
app/code/community/Vsourz/Bannerslider/Block/Adminhtml/Bannerslider/Renderer/Category.php
CHANGED
@@ -1,13 +1,17 @@
|
|
1 |
<?php
|
2 |
class Vsourz_Bannerslider_Block_Adminhtml_Bannerslider_Renderer_Category extends
|
3 |
-
Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract
|
4 |
-
|
|
|
|
|
5 |
$value = $row->getData($this->getColumn()->getIndex());
|
6 |
$model = Mage::getModel('bannerslider/imagecategory');
|
7 |
$data = $model->load($value)->getData();
|
8 |
-
if(!$data)
|
|
|
9 |
return "Undefined";
|
10 |
-
}else
|
|
|
11 |
return $data['slider_title'];
|
12 |
}
|
13 |
}
|
1 |
<?php
|
2 |
class Vsourz_Bannerslider_Block_Adminhtml_Bannerslider_Renderer_Category extends
|
3 |
+
Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract
|
4 |
+
{
|
5 |
+
public function render(Varien_Object $row)
|
6 |
+
{
|
7 |
$value = $row->getData($this->getColumn()->getIndex());
|
8 |
$model = Mage::getModel('bannerslider/imagecategory');
|
9 |
$data = $model->load($value)->getData();
|
10 |
+
if(!$data)
|
11 |
+
{
|
12 |
return "Undefined";
|
13 |
+
}else
|
14 |
+
{
|
15 |
return $data['slider_title'];
|
16 |
}
|
17 |
}
|
app/code/community/Vsourz/Bannerslider/Block/Adminhtml/Bannerslider/Renderer/Catimage.php
CHANGED
@@ -7,7 +7,7 @@ Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract
|
|
7 |
if($value == NULL){
|
8 |
return "No category image defined";
|
9 |
}else{
|
10 |
-
return '<img width="200" height="100" src="'.Mage::getBaseUrl('media')
|
11 |
}
|
12 |
}
|
13 |
}
|
7 |
if($value == NULL){
|
8 |
return "No category image defined";
|
9 |
}else{
|
10 |
+
return '<img width="200" height="100" src="'.Mage::getBaseUrl('media').$value . '" />';
|
11 |
}
|
12 |
}
|
13 |
}
|
app/code/community/Vsourz/Bannerslider/Block/Adminhtml/Bannerslider/Renderer/Image.php
CHANGED
@@ -6,7 +6,7 @@ Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract {
|
|
6 |
if($value == NULL){
|
7 |
return "Image not inserted";
|
8 |
}else{
|
9 |
-
return '<img width="200" height="100" src="'.Mage::getBaseUrl('media')
|
10 |
}
|
11 |
}
|
12 |
}
|
6 |
if($value == NULL){
|
7 |
return "Image not inserted";
|
8 |
}else{
|
9 |
+
return '<img width="200" height="100" src="'.Mage::getBaseUrl('media').$value.'" />';
|
10 |
}
|
11 |
}
|
12 |
}
|
app/code/community/Vsourz/Bannerslider/Block/Adminhtml/Image/Edit/Tabs/Form.php
CHANGED
@@ -57,6 +57,12 @@ class Vsourz_Bannerslider_Block_Adminhtml_Image_Edit_Tabs_Form extends Mage_Admi
|
|
57 |
'wysiwyg' => true
|
58 |
));
|
59 |
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
$fieldset->addField('text_color', 'text', array(
|
61 |
'label' => Mage::helper('bannerslider')->__('Text Color'),
|
62 |
'class' => 'color',
|
57 |
'wysiwyg' => true
|
58 |
));
|
59 |
|
60 |
+
$fieldset->addField('slide_url', 'text', array(
|
61 |
+
'label' => Mage::helper('bannerslider')->__('Slide Url'),
|
62 |
+
'name' => 'slide_url',
|
63 |
+
'note' => 'Enter URL like, http://www.domainname.com <p style="color:#f00;">If you are provide above URL then do not insert any URL in Slide Description.</p>',
|
64 |
+
));
|
65 |
+
|
66 |
$fieldset->addField('text_color', 'text', array(
|
67 |
'label' => Mage::helper('bannerslider')->__('Text Color'),
|
68 |
'class' => 'color',
|
app/code/community/Vsourz/Bannerslider/controllers/Adminhtml/CategoryController.php
CHANGED
@@ -122,7 +122,7 @@ class Vsourz_Bannerslider_Adminhtml_CategoryController extends Mage_Adminhtml_Co
|
|
122 |
$id = $this->getRequest()->getParam('id');
|
123 |
$objModel = $model->load($id);
|
124 |
$path = Mage::getBaseDir('media');
|
125 |
-
unlink($path.
|
126 |
$objModel->setId($id)->delete();
|
127 |
Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('adminhtml')->__('Item was successfully deleted'));
|
128 |
$this->_redirect('*/*/');
|
@@ -145,7 +145,7 @@ class Vsourz_Bannerslider_Adminhtml_CategoryController extends Mage_Adminhtml_Co
|
|
145 |
foreach($ids as $id){
|
146 |
$objModel = $imageModel->load($id);
|
147 |
$path = Mage::getBaseDir('media');
|
148 |
-
unlink($path.
|
149 |
$objModel->delete();
|
150 |
}
|
151 |
Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('bannerslider')->__('Total of %d record(s) were deleted.', count($ids)));
|
122 |
$id = $this->getRequest()->getParam('id');
|
123 |
$objModel = $model->load($id);
|
124 |
$path = Mage::getBaseDir('media');
|
125 |
+
unlink($path.'/'.$objModel->categoryImg);
|
126 |
$objModel->setId($id)->delete();
|
127 |
Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('adminhtml')->__('Item was successfully deleted'));
|
128 |
$this->_redirect('*/*/');
|
145 |
foreach($ids as $id){
|
146 |
$objModel = $imageModel->load($id);
|
147 |
$path = Mage::getBaseDir('media');
|
148 |
+
unlink($path.'/'.$objModel->categoryImg);
|
149 |
$objModel->delete();
|
150 |
}
|
151 |
Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('bannerslider')->__('Total of %d record(s) were deleted.', count($ids)));
|
app/code/community/Vsourz/Bannerslider/controllers/Adminhtml/ImageController.php
CHANGED
@@ -20,8 +20,8 @@ class Vsourz_Bannerslider_Adminhtml_ImageController extends Mage_Adminhtml_Contr
|
|
20 |
$model = Mage::getModel('bannerslider/imagedetail');
|
21 |
$id = $this->getRequest()->getParam('id');
|
22 |
foreach ($data as $key => $value){
|
23 |
-
if
|
24 |
-
$data[$key] = implode(',',$this->getRequest()->getParam($
|
25 |
}
|
26 |
}
|
27 |
if($id){
|
@@ -35,22 +35,25 @@ class Vsourz_Bannerslider_Adminhtml_ImageController extends Mage_Adminhtml_Contr
|
|
35 |
$uploader->setAllowRenameFiles(false);
|
36 |
// setAllowRenameFiles(true) -> move your file in a folder the magento way
|
37 |
$uploader->setFilesDispersion(false);
|
38 |
-
$path = Mage::getBaseDir('media')
|
39 |
$imgName = explode('.',$_FILES['slide_img']['name']);
|
40 |
$imgName[0] = $imgName[0].'-'.'gallery-img'.'-'.date('Y-m-d H-i-s');
|
41 |
$imgName = implode('.',$imgName);
|
42 |
$imgName = preg_replace('/\s+/', '-', $imgName);
|
43 |
$uploader->save($path, $imgName);
|
44 |
-
$data['slide_img'] = 'bannerslider'
|
45 |
}catch(Exception $e){
|
46 |
|
47 |
}
|
48 |
}
|
49 |
else{
|
50 |
-
if(isset($data['slide_img']
|
51 |
// delete image file
|
52 |
-
|
53 |
-
|
|
|
|
|
|
|
54 |
// set db blank entry
|
55 |
$data['slide_img'] = '';
|
56 |
}else{
|
@@ -119,7 +122,7 @@ class Vsourz_Bannerslider_Adminhtml_ImageController extends Mage_Adminhtml_Contr
|
|
119 |
$id = $this->getRequest()->getParam('id');
|
120 |
$objModel = $model->load($id);
|
121 |
$path = Mage::getBaseDir('media');
|
122 |
-
unlink($path.
|
123 |
$model->setId($id)->delete();
|
124 |
Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('adminhtml')->__('Item was successfully deleted'));
|
125 |
$this->_redirect('*/*/');
|
@@ -141,7 +144,7 @@ class Vsourz_Bannerslider_Adminhtml_ImageController extends Mage_Adminhtml_Contr
|
|
141 |
foreach($ids as $id){
|
142 |
$objModel = $imageModel->load($id);
|
143 |
$path = Mage::getBaseDir('media');
|
144 |
-
unlink($path.
|
145 |
$objModel->delete();
|
146 |
}
|
147 |
Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('bannerslider')->__('Total of %d record(s) were deleted.', count($ids)));
|
20 |
$model = Mage::getModel('bannerslider/imagedetail');
|
21 |
$id = $this->getRequest()->getParam('id');
|
22 |
foreach ($data as $key => $value){
|
23 |
+
if(is_array($value)){
|
24 |
+
$data[$key] = implode(',',$this->getRequest()->getParam($key));
|
25 |
}
|
26 |
}
|
27 |
if($id){
|
35 |
$uploader->setAllowRenameFiles(false);
|
36 |
// setAllowRenameFiles(true) -> move your file in a folder the magento way
|
37 |
$uploader->setFilesDispersion(false);
|
38 |
+
$path = Mage::getBaseDir('media').'/bannerslider/';
|
39 |
$imgName = explode('.',$_FILES['slide_img']['name']);
|
40 |
$imgName[0] = $imgName[0].'-'.'gallery-img'.'-'.date('Y-m-d H-i-s');
|
41 |
$imgName = implode('.',$imgName);
|
42 |
$imgName = preg_replace('/\s+/', '-', $imgName);
|
43 |
$uploader->save($path, $imgName);
|
44 |
+
$data['slide_img'] = 'bannerslider/'.$imgName;
|
45 |
}catch(Exception $e){
|
46 |
|
47 |
}
|
48 |
}
|
49 |
else{
|
50 |
+
if(isset($data['slide_img']) && $data['slide_img']['delete'] == 1){
|
51 |
// delete image file
|
52 |
+
$image = explode(',',$data['slide_img']);
|
53 |
+
$img = Mage::getBaseDir(Mage_Core_Model_Store::URL_TYPE_MEDIA).'/'.$image[1];
|
54 |
+
if(file_exists($img)){
|
55 |
+
unlink($img);
|
56 |
+
}
|
57 |
// set db blank entry
|
58 |
$data['slide_img'] = '';
|
59 |
}else{
|
122 |
$id = $this->getRequest()->getParam('id');
|
123 |
$objModel = $model->load($id);
|
124 |
$path = Mage::getBaseDir('media');
|
125 |
+
unlink($path.'/'.$objModel->galleryImg);
|
126 |
$model->setId($id)->delete();
|
127 |
Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('adminhtml')->__('Item was successfully deleted'));
|
128 |
$this->_redirect('*/*/');
|
144 |
foreach($ids as $id){
|
145 |
$objModel = $imageModel->load($id);
|
146 |
$path = Mage::getBaseDir('media');
|
147 |
+
unlink($path.'/'.$objModel->galleryImg);
|
148 |
$objModel->delete();
|
149 |
}
|
150 |
Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('bannerslider')->__('Total of %d record(s) were deleted.', count($ids)));
|
app/code/community/Vsourz/Bannerslider/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Vsourz_Bannerslider>
|
5 |
-
<version>0.1.
|
6 |
</Vsourz_Bannerslider>
|
7 |
</modules>
|
8 |
<frontend>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Vsourz_Bannerslider>
|
5 |
+
<version>0.1.1</version>
|
6 |
</Vsourz_Bannerslider>
|
7 |
</modules>
|
8 |
<frontend>
|
app/code/community/Vsourz/Bannerslider/sql/bannerslider_setup/mysql4-upgrade-0.1.0-0.1.1.php
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
$installer = $this;
|
4 |
+
$installer->startSetup();
|
5 |
+
|
6 |
+
$resource = Mage::getResourceModel('bannerslider/imagedetail_collection');
|
7 |
+
if(!method_exists($resource, 'getEntity')){
|
8 |
+
|
9 |
+
$table = $this->getTable('bannerdetail');
|
10 |
+
$query = 'ALTER TABLE `' . $table . '` ADD COLUMN `slide_url` TEXT NOT NULL AFTER `slider_id`';
|
11 |
+
$connection = Mage::getSingleton('core/resource')->getConnection('core_write');
|
12 |
+
try {
|
13 |
+
$connection->query($query);
|
14 |
+
} catch (Exception $e) {
|
15 |
+
|
16 |
+
}
|
17 |
+
}
|
18 |
+
|
19 |
+
$installer->endSetup();
|
20 |
+
?>
|
app/design/frontend/base/default/template/bannerslider/bannerslider.phtml
CHANGED
@@ -23,9 +23,8 @@ $catData = $catCollection->getData();
|
|
23 |
$paginationHoverColor=$value['pagination_bg_hover_color'];
|
24 |
$autoplay=($value['auto_play']==0)?"false":"true";
|
25 |
$autoplayTimeout=($value['auto_play']==0)?0:$value['auto_play'];
|
26 |
-
endforeach;
|
27 |
?>
|
28 |
-
|
29 |
<?php if($status==1): ?>
|
30 |
<div class="image-gallery-outer">
|
31 |
<div class="image-detail">
|
@@ -34,6 +33,9 @@ $catData = $catCollection->getData();
|
|
34 |
<?php //print_r($data); ?>
|
35 |
<li class="banner-slide">
|
36 |
<div class="img-box">
|
|
|
|
|
|
|
37 |
<div class="img-box-inner">
|
38 |
<img src="<?php echo Mage::getBaseUrl('media').$data['slide_img']; ?>" alt="<?php echo $data['slide_title']; ?>"/>
|
39 |
<div class="slide-desc-box t-<?php echo $data['text_align']; ?>">
|
@@ -53,6 +55,9 @@ $catData = $catCollection->getData();
|
|
53 |
</div>
|
54 |
</div>
|
55 |
</div>
|
|
|
|
|
|
|
56 |
</div>
|
57 |
</li>
|
58 |
<?php endforeach; ?>
|
@@ -75,6 +80,7 @@ $('#banner-slider<?php echo $sliderId; ?>').owlSlider({
|
|
75 |
navText:['<','>'],
|
76 |
smartSpeed:450,
|
77 |
loop:true,
|
|
|
78 |
dots:<?php echo $pagination; ?>
|
79 |
});
|
80 |
});
|
23 |
$paginationHoverColor=$value['pagination_bg_hover_color'];
|
24 |
$autoplay=($value['auto_play']==0)?"false":"true";
|
25 |
$autoplayTimeout=($value['auto_play']==0)?0:$value['auto_play'];
|
26 |
+
endforeach;
|
27 |
?>
|
|
|
28 |
<?php if($status==1): ?>
|
29 |
<div class="image-gallery-outer">
|
30 |
<div class="image-detail">
|
33 |
<?php //print_r($data); ?>
|
34 |
<li class="banner-slide">
|
35 |
<div class="img-box">
|
36 |
+
<?php if($data['slide_url']!="") { ?>
|
37 |
+
<a href="<?php echo $data['slide_url']; ?>" title="<?php echo $data['slide_title']; ?>">
|
38 |
+
<?php } ?>
|
39 |
<div class="img-box-inner">
|
40 |
<img src="<?php echo Mage::getBaseUrl('media').$data['slide_img']; ?>" alt="<?php echo $data['slide_title']; ?>"/>
|
41 |
<div class="slide-desc-box t-<?php echo $data['text_align']; ?>">
|
55 |
</div>
|
56 |
</div>
|
57 |
</div>
|
58 |
+
<?php if($data['slide_url']!="") { ?>
|
59 |
+
</a>
|
60 |
+
<?php } ?>
|
61 |
</div>
|
62 |
</li>
|
63 |
<?php endforeach; ?>
|
80 |
navText:['<','>'],
|
81 |
smartSpeed:450,
|
82 |
loop:true,
|
83 |
+
autoplayHoverPause:true,
|
84 |
dots:<?php echo $pagination; ?>
|
85 |
});
|
86 |
});
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Responsive_Owl_Slider</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/MIT">Massachusetts Institute of Technology License (MITL)</license>
|
7 |
<channel>community</channel>
|
@@ -60,11 +60,11 @@ HTML
|
|
60 |
echo $this->getLayout()->createBlock('bannerslider/bannerslider')->setCategoryId('1')->setTemplate('bannerslider/bannerslider.phtml')->toHtml();
|
61 |

|
62 |
Please Note: In the XML code, we have intentionally placed space in the XML tags. Please remove the spaces while adding the code.</description>
|
63 |
-
<notes
|
64 |
<authors><author><name>Vsourz Digital</name><user>MAG002979323</user><email>mehul@vsourz.com</email></author></authors>
|
65 |
-
<date>2015-08
|
66 |
-
<time>
|
67 |
-
<contents><target name="magecommunity"><dir name="Vsourz"><dir name="Bannerslider"><dir name="Block"><dir name="Adminhtml"><dir name="Bannerslider"><dir name="Renderer"><file name="Category.php" hash="
|
68 |
<compatible/>
|
69 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
70 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Responsive_Owl_Slider</name>
|
4 |
+
<version>1.0.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/MIT">Massachusetts Institute of Technology License (MITL)</license>
|
7 |
<channel>community</channel>
|
60 |
echo $this->getLayout()->createBlock('bannerslider/bannerslider')->setCategoryId('1')->setTemplate('bannerslider/bannerslider.phtml')->toHtml();
|
61 |

|
62 |
Please Note: In the XML code, we have intentionally placed space in the XML tags. Please remove the spaces while adding the code.</description>
|
63 |
+
<notes>- Resolve directory separator issue</notes>
|
64 |
<authors><author><name>Vsourz Digital</name><user>MAG002979323</user><email>mehul@vsourz.com</email></author></authors>
|
65 |
+
<date>2015-09-08</date>
|
66 |
+
<time>09:59:48</time>
|
67 |
+
<contents><target name="magecommunity"><dir name="Vsourz"><dir name="Bannerslider"><dir name="Block"><dir name="Adminhtml"><dir name="Bannerslider"><dir name="Renderer"><file name="Category.php" hash="74ef72f3eca49626bb03abeed005a44a"/><file name="Catimage.php" hash="8fcd79afe41bf78140e1af476b9931fe"/><file name="Image.php" hash="e6d58c41333581b9b104b009e42b6732"/><file name="Status.php" hash="168f6ef1a43cd324acf32caa3aac4ba5"/></dir></dir><dir name="Category"><dir name="Edit"><file name="Form.php" hash="b2e367356e30c4c6c160970ea475cae5"/><dir name="Tabs"><file name="Form.php" hash="9cfdd467b7440c8ab611a6c72106aad1"/></dir><file name="Tabs.php" hash="829947261268f847a7471ac00806f6fd"/></dir><file name="Edit.php" hash="5f93ab08c68905a7239a70a284fb5540"/><file name="Grid.php" hash="d3b1f09b70ad9a1238298aaf7c67bde3"/></dir><dir name="Image"><dir name="Edit"><file name="Form.php" hash="94d630c37b94b27dd5e6a3c450914c3c"/><dir name="Tabs"><file name="Form.php" hash="9a76944a3cc0da333c192a236b2faf29"/></dir><file name="Tabs.php" hash="8d9dae43a3b3546554cd346758cb452e"/></dir><file name="Edit.php" hash="f20bf6f3a3cb48dd7e4e06fd87573a84"/><file name="Grid.php" hash="d662aa4b1fae64cf2eb9d9fbfda478b1"/></dir><file name="Slide.php" hash="ad91018546ea7878fcd626c2408f8fad"/><file name="Slider.php" hash="75e3f6c460c11c292340fa54b64770c5"/></dir><file name="Bannerslider.php" hash="ca75226a72738b6b1be4e5faa724e935"/></dir><dir name="Helper"><file name="Data.php" hash="128263516fa22072df8a1e7b3a2f3260"/></dir><dir name="Model"><file name="Align.php" hash="1aaafcef6317a5efad4b9bb7cd926c1d"/><file name="Animationin.php" hash="23bc1b215a2671721b3d2965faac9464"/><file name="Animationout.php" hash="d08ea1b53588d3957575d162ff6a2cdd"/><file name="Bannerslider.php" hash="07ded4de06b4e4cb5af358e114abe362"/><file name="Categoryval.php" hash="3a8b19e8954371e7a4b215237538bfef"/><file name="Imagecategory.php" hash="81e6e3410eab6d41f60abbc728776b66"/><file name="Imagedetail.php" hash="3d3cf19691756ae32575a238f2ab1fea"/><dir name="Resource"><dir name="Imagecategory"><file name="Collection.php" hash="3b4dcf09798007986115fae27198aca5"/></dir><file name="Imagecategory.php" hash="93275df9ac2459216d8ce95a2707811b"/><dir name="Imagedetail"><file name="Collection.php" hash="b8689924261b354a4d712a9a736f2449"/></dir><file name="Imagedetail.php" hash="e48c2814899f03e551dbd0d5650eb621"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="CategoryController.php" hash="351665df3513ae1362bc230f67be0c85"/><file name="ImageController.php" hash="ede68c5738bff7f0134ccb358143e826"/></dir></dir><dir name="data"><dir name="bannerslider_setup"><file name="data-install-0.1.0.php" hash="b23d20d160568e71df2da142719a07b3"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="44c66d5233ae3e6582493c61b8c77864"/><file name="config.xml" hash="acb5981d29af515f125841a2d9f6431a"/><file name="system.xml" hash="4c608359184cc7b3cd71c5fd6eaf074a"/></dir><dir name="sql"><dir name="bannerslider_setup"><file name="mysql4-install-0.1.0.php" hash="62bfd79eaaaf64ce235cabaffc8e40d4"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="f788f36c79f2d9fb9221c16194620860"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Vsourz_Bannerslider.xml" hash="d1fd185de844ee5297e77deaf8870153"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="bannerslider.xml" hash="54205744501c78a0cd424a59f3092a88"/></dir><dir name="template"><dir name="bannerslider"><file name="bannerslider.phtml" hash=""/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="bannerslider.xml" hash="8cacfe5fdbed3ac4fdb75bfa2407ce6d"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="bannerslider"><file name="animate.css" hash="3f1e82dcc86df45a1943d41a049b8b51"/><file name="animate.min.css" hash="199ea108e710786634d182e11782de2a"/><file name="bannerslider.css" hash="d45581f5765c810ff4f16ec0c0577a01"/><file name="owl.carousel.css" hash="b51416af9e8adbe3d16f5f2526aba221"/></dir></dir><dir name="js"><dir name="bannerslider"><file name="jquery-1.10.2.min.js" hash="f49b02ff7ee95b2d6509a9e553759991"/><file name="no-conflict.js" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="owl.banner.min.js" hash="ffaa3c82ad2c6e216e68aca44746e1be"/><file name="owl.slider.js" hash="4876b7da868a30df943238018bb5cb6a"/></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="vsourz"><dir name="bannerslider"><file name="arrow.gif" hash="5034704a76cd55c1cbcbc58ea6bf523f"/><file name="cross.gif" hash="ba9a274b9323753cd95bc3b1eb2f4e5f"/><file name="hs.png" hash="fefa1a03d92ebad25c88dca94a0b63db"/><file name="hv.png" hash="990d71cada17da100653636cf8490884"/><file name="jscolor.js" hash="a26701f49bf33da8dc48f3431e5f4f42"/></dir></dir></dir></target><target name="magemedia"><dir name="bannerslider"><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/></dir></target></contents>
|
68 |
<compatible/>
|
69 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
70 |
</package>
|