Version Notes
Auguria_Video
Download this release
Release Info
| Developer | Auguria |
| Extension | Auguria_Video |
| Version | 0.0.3 |
| Comparing to | |
| See all releases | |
Code changes from version 0.0.1 to 0.0.3
- app/code/community/Auguria/Video/etc/config.xml +1 -1
- app/design/frontend/base/default/layout/auguria/video.xml +1 -1
- app/design/frontend/base/default/template/auguria/video/home.phtml +2 -1
- app/design/frontend/base/default/template/auguria/video/list.phtml +11 -7
- app/design/frontend/base/default/template/auguria/video/product.phtml +5 -2
- app/locale/fr_FR/Auguria_Contact.csv +0 -35
- app/locale/fr_FR/Auguria_Video.csv +23 -0
- package.xml +4 -4
- skin/frontend/base/default/css/auguria/video/styles.css +2 -3
- skin/frontend/base/default/images/auguria/video/i_video-player_play.png +0 -0
- skin/frontend/base/default/images/auguria/video/i_video-player_play_thumb.png +0 -0
app/code/community/Auguria/Video/etc/config.xml
CHANGED
|
@@ -10,7 +10,7 @@
|
|
| 10 |
<config>
|
| 11 |
<modules>
|
| 12 |
<Auguria_Video>
|
| 13 |
-
<version>0.0.
|
| 14 |
</Auguria_Video>
|
| 15 |
</modules>
|
| 16 |
<frontend>
|
| 10 |
<config>
|
| 11 |
<modules>
|
| 12 |
<Auguria_Video>
|
| 13 |
+
<version>0.0.3</version>
|
| 14 |
</Auguria_Video>
|
| 15 |
</modules>
|
| 16 |
<frontend>
|
app/design/frontend/base/default/layout/auguria/video.xml
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
</reference>
|
| 20 |
</cms_index_index>
|
| 21 |
<catalog_product_view>
|
| 22 |
-
<reference name="product.info">
|
| 23 |
<block type="auguria_video/product" name="video_product" template="auguria/video/product.phtml" />
|
| 24 |
</reference>
|
| 25 |
</catalog_product_view>
|
| 19 |
</reference>
|
| 20 |
</cms_index_index>
|
| 21 |
<catalog_product_view>
|
| 22 |
+
<reference name="product.info.extrahint">
|
| 23 |
<block type="auguria_video/product" name="video_product" template="auguria/video/product.phtml" />
|
| 24 |
</reference>
|
| 25 |
</catalog_product_view>
|
app/design/frontend/base/default/template/auguria/video/home.phtml
CHANGED
|
@@ -31,7 +31,8 @@
|
|
| 31 |
minimizable:false,
|
| 32 |
maximizable:false,
|
| 33 |
showEffectOptions:{duration:0.4},
|
| 34 |
-
hideEffectOptions:{duration:0.4}
|
|
|
|
| 35 |
});
|
| 36 |
videoPlayer.setZIndex(100);
|
| 37 |
videoPlayer.showCenter(true);
|
| 31 |
minimizable:false,
|
| 32 |
maximizable:false,
|
| 33 |
showEffectOptions:{duration:0.4},
|
| 34 |
+
hideEffectOptions:{duration:0.4},
|
| 35 |
+
onClose:function(event) { $('video-player').src=""; }
|
| 36 |
});
|
| 37 |
videoPlayer.setZIndex(100);
|
| 38 |
videoPlayer.showCenter(true);
|
app/design/frontend/base/default/template/auguria/video/list.phtml
CHANGED
|
@@ -6,12 +6,15 @@
|
|
| 6 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 7 |
*/
|
| 8 |
?>
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
|
|
|
|
|
|
|
|
|
| 12 |
<?php
|
| 13 |
$_videos = $this->getVideos();
|
| 14 |
-
|
| 15 |
if ($_videos && $_videos->count()>0):
|
| 16 |
?>
|
| 17 |
<div id="video-player-container" style="display:none">
|
|
@@ -21,7 +24,7 @@
|
|
| 21 |
<?php
|
| 22 |
foreach ($_videos as $_item):
|
| 23 |
?>
|
| 24 |
-
|
| 25 |
<?php
|
| 26 |
if ($this->getItemImage($_item)!=false):
|
| 27 |
?>
|
|
@@ -30,7 +33,7 @@
|
|
| 30 |
<p class="title"><?php echo $_item->getTitle(); ?></p>
|
| 31 |
<img src="<?php echo $this->getItemImage($_item); ?>" alt="<?php echo $_item->getTitle(); ?>" />
|
| 32 |
<p class="description"><?php echo $_item->getDescription(); ?></p>
|
| 33 |
-
|
| 34 |
<script type="text/javascript">
|
| 35 |
//<