Officience_ShowcaseGallery - Version 0.1.1

Version Notes

Full release version

Download this release

Release Info

Developer ToThanhTrung
Extension Officience_ShowcaseGallery
Version 0.1.1
Comparing to
See all releases


Code changes from version 0.1.0 to 0.1.1

Files changed (26) hide show
  1. app/code/{local → community}/Officience/ShowcaseGallery/Block/Album.php +5 -0
  2. app/code/{local → community}/Officience/ShowcaseGallery/Block/Gallery.php +5 -1
  3. app/code/{local → community}/Officience/ShowcaseGallery/Block/Productalbums.php +5 -1
  4. app/code/community/Officience/ShowcaseGallery/Helper/Data.php +10 -0
  5. app/code/{local → community}/Officience/ShowcaseGallery/Model/Album.php +5 -0
  6. app/code/{local → community}/Officience/ShowcaseGallery/Model/Image.php +5 -0
  7. app/code/{local → community}/Officience/ShowcaseGallery/Model/Mysql4/Album.php +5 -1
  8. app/code/{local → community}/Officience/ShowcaseGallery/Model/Mysql4/Album/Collection.php +6 -0
  9. app/code/{local → community}/Officience/ShowcaseGallery/Model/Mysql4/Image.php +5 -1
  10. app/code/{local → community}/Officience/ShowcaseGallery/Model/Mysql4/Image/Collection.php +6 -0
  11. app/code/{local → community}/Officience/ShowcaseGallery/Model/Mysql4/Product.php +6 -0
  12. app/code/{local → community}/Officience/ShowcaseGallery/Model/Mysql4/Product/Collection.php +6 -0
  13. app/code/{local → community}/Officience/ShowcaseGallery/Model/Product.php +5 -0
  14. app/code/{local → community}/Officience/ShowcaseGallery/controllers/AlbumController.php +5 -4
  15. app/code/{local → community}/Officience/ShowcaseGallery/controllers/IndexController.php +5 -4
  16. app/code/{local → community}/Officience/ShowcaseGallery/etc/config.xml +8 -1
  17. app/code/{local → community}/Officience/ShowcaseGallery/sql/showcasegallery_setup/mysql4-install-0.1.0.php +4 -5
  18. app/code/local/Officience/ShowcaseGallery/Helper/Data.php +0 -6
  19. app/design/frontend/default/default/layout/showcasegallery.xml +7 -4
  20. app/design/frontend/default/default/template/showcasegallery/album.phtml +5 -3
  21. app/design/frontend/default/default/template/showcasegallery/gallery.phtml +8 -0
  22. app/design/frontend/default/default/template/showcasegallery/productalbums.phtml +7 -0
  23. app/etc/modules/Officience_ShowcaseGallery.xml +3 -3
  24. js/jquery/showcasegallery/noconflict.js +0 -1
  25. package.xml +11 -10
  26. skin/frontend/default/default/showcasegallery/css/showcasegallery.css +5 -7
app/code/{local → community}/Officience/ShowcaseGallery/Block/Album.php RENAMED
@@ -1,4 +1,9 @@
1
  <?php
 
 
 
 
 
2
 
3
  class Officience_ShowcaseGallery_Block_Album extends Mage_Core_Block_Template {
4
 
1
  <?php
2
+ /**
3
+ * @category Officience
4
+ * @package Officience_ShowcaseGallery
5
+ * @author Officience <itdev.officience@gmail.com>
6
+ */
7
 
8
  class Officience_ShowcaseGallery_Block_Album extends Mage_Core_Block_Template {
9
 
app/code/{local → community}/Officience/ShowcaseGallery/Block/Gallery.php RENAMED
@@ -1,5 +1,9 @@
1
  <?php
2
-
 
 
 
 
3
  class Officience_ShowcaseGallery_Block_Gallery extends Mage_Core_Block_Template {
4
 
5
  protected $_albumDefaultId = null;
1
  <?php
2
+ /**
3
+ * @category Officience
4
+ * @package Officience_ShowcaseGallery
5
+ * @author Officience <itdev.officience@gmail.com>
6
+ */
7
  class Officience_ShowcaseGallery_Block_Gallery extends Mage_Core_Block_Template {
8
 
9
  protected $_albumDefaultId = null;
app/code/{local → community}/Officience/ShowcaseGallery/Block/Productalbums.php RENAMED
@@ -1,5 +1,9 @@
1
  <?php
2
-
 
 
 
 
3
  class Officience_ShowcaseGallery_Block_Productalbums extends Mage_Core_Block_Template {
4
 
5
  public function getProductId()
1
  <?php
2
+ /**
3
+ * @category Officience
4
+ * @package Officience_ShowcaseGallery
5
+ * @author Officience <itdev.officience@gmail.com>
6
+ */
7
  class Officience_ShowcaseGallery_Block_Productalbums extends Mage_Core_Block_Template {
8
 
9
  public function getProductId()
app/code/community/Officience/ShowcaseGallery/Helper/Data.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @category Officience
4
+ * @package Officience_ShowcaseGallery
5
+ * @author Officience <itdev.officience@gmail.com>
6
+ */
7
+ class Officience_ShowcaseGallery_Helper_Data extends Mage_Core_Helper_Abstract
8
+ {
9
+
10
+ }
app/code/{local → community}/Officience/ShowcaseGallery/Model/Album.php RENAMED
@@ -1,4 +1,9 @@
1
  <?php
 
 
 
 
 
2
  class Officience_ShowcaseGallery_Model_Album extends Mage_Core_Model_Abstract
3
  {
4
  public function _construct()
1
  <?php
2
+ /**
3
+ * @category Officience
4
+ * @package Officience_ShowcaseGallery
5
+ * @author Officience <itdev.officience@gmail.com>
6
+ */
7
  class Officience_ShowcaseGallery_Model_Album extends Mage_Core_Model_Abstract
8
  {
9
  public function _construct()
app/code/{local → community}/Officience/ShowcaseGallery/Model/Image.php RENAMED
@@ -1,4 +1,9 @@
1
  <?php
 
 
 
 
 
2
  class Officience_ShowcaseGallery_Model_Image extends Mage_Core_Model_Abstract
3
  {
4
  public function _construct()
1
  <?php
2
+ /**
3
+ * @category Officience
4
+ * @package Officience_ShowcaseGallery
5
+ * @author Officience <itdev.officience@gmail.com>
6
+ */
7
  class Officience_ShowcaseGallery_Model_Image extends Mage_Core_Model_Abstract
8
  {
9
  public function _construct()
app/code/{local → community}/Officience/ShowcaseGallery/Model/Mysql4/Album.php RENAMED
@@ -1,5 +1,9 @@
1
  <?php
2
-
 
 
 
 
3
  class Officience_ShowcaseGallery_Model_Mysql4_Album extends Mage_Core_Model_Mysql4_Abstract {
4
 
5
  public function _construct() {
1
  <?php
2
+ /**
3
+ * @category Officience
4
+ * @package Officience_ShowcaseGallery
5
+ * @author Officience <itdev.officience@gmail.com>
6
+ */
7
  class Officience_ShowcaseGallery_Model_Mysql4_Album extends Mage_Core_Model_Mysql4_Abstract {
8
 
9
  public function _construct() {
app/code/{local → community}/Officience/ShowcaseGallery/Model/Mysql4/Album/Collection.php RENAMED
@@ -1,4 +1,10 @@
1
  <?php
 
 
 
 
 
 
2
  class Officience_ShowcaseGallery_Model_Mysql4_Album_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
3
  {
4
 
1
  <?php
2
+ /**
3
+ * @category Officience
4
+ * @package Officience_ShowcaseGallery
5
+ * @author Officience <itdev.officience@gmail.com>
6
+ */
7
+
8
  class Officience_ShowcaseGallery_Model_Mysql4_Album_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
9
  {
10
 
app/code/{local → community}/Officience/ShowcaseGallery/Model/Mysql4/Image.php RENAMED
@@ -1,5 +1,9 @@
1
  <?php
2
-
 
 
 
 
3
  class Officience_ShowcaseGallery_Model_Mysql4_Image extends Mage_Core_Model_Mysql4_Abstract {
4
 
5
  public function _construct() {
1
  <?php
2
+ /**
3
+ * @category Officience
4
+ * @package Officience_ShowcaseGallery
5
+ * @author Officience <itdev.officience@gmail.com>
6
+ */
7
  class Officience_ShowcaseGallery_Model_Mysql4_Image extends Mage_Core_Model_Mysql4_Abstract {
8
 
9
  public function _construct() {
app/code/{local → community}/Officience/ShowcaseGallery/Model/Mysql4/Image/Collection.php RENAMED
@@ -1,4 +1,10 @@
1
  <?php
 
 
 
 
 
 
2
  class Officience_ShowcaseGallery_Model_Mysql4_Image_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
3
  {
4
 
1
  <?php
2
+ /**
3
+ * @category Officience
4
+ * @package Officience_ShowcaseGallery
5
+ * @author Officience <itdev.officience@gmail.com>
6
+ */
7
+
8
  class Officience_ShowcaseGallery_Model_Mysql4_Image_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
9
  {
10
 
app/code/{local → community}/Officience/ShowcaseGallery/Model/Mysql4/Product.php RENAMED
@@ -1,4 +1,10 @@
1
  <?php
 
 
 
 
 
 
2
  class Officience_ShowcaseGallery_Model_Mysql4_Product extends Mage_Core_Model_Mysql4_Abstract {
3
 
4
  public function _construct() {
1
  <?php
2
+ /**
3
+ * @category Officience
4
+ * @package Officience_ShowcaseGallery
5
+ * @author Officience <itdev.officience@gmail.com>
6
+ */
7
+
8
  class Officience_ShowcaseGallery_Model_Mysql4_Product extends Mage_Core_Model_Mysql4_Abstract {
9
 
10
  public function _construct() {
app/code/{local → community}/Officience/ShowcaseGallery/Model/Mysql4/Product/Collection.php RENAMED
@@ -1,4 +1,10 @@
1
  <?php
 
 
 
 
 
 
2
  class Officience_ShowcaseGallery_Model_Mysql4_Product_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
3
  {
4
 
1
  <?php
2
+ /**
3
+ * @category Officience
4
+ * @package Officience_ShowcaseGallery
5
+ * @author Officience <itdev.officience@gmail.com>
6
+ */
7
+
8
  class Officience_ShowcaseGallery_Model_Mysql4_Product_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
9
  {
10
 
app/code/{local → community}/Officience/ShowcaseGallery/Model/Product.php RENAMED
@@ -1,4 +1,9 @@
1
  <?php
 
 
 
 
 
2
  class Officience_ShowcaseGallery_Model_Product extends Mage_Core_Model_Abstract
3
  {
4
  public function _construct()
1
  <?php
2
+ /**
3
+ * @category Officience
4
+ * @package Officience_ShowcaseGallery
5
+ * @author Officience <itdev.officience@gmail.com>
6
+ */
7
  class Officience_ShowcaseGallery_Model_Product extends Mage_Core_Model_Abstract
8
  {
9
  public function _construct()
app/code/{local → community}/Officience/ShowcaseGallery/controllers/AlbumController.php RENAMED
@@ -1,9 +1,10 @@
1
  <?php
2
 
3
- /*
4
- Modules Magento Gallery - Zoom NGUYEN - University Bordeaux I - France
5
- Email : frtlupsvn@gmail.com
6
- */
 
7
 
8
  class Officience_ShowcaseGallery_AlbumController extends Mage_Core_Controller_Front_Action {
9
 
1
  <?php
2
 
3
+ /**
4
+ * @category Officience
5
+ * @package Officience_ShowcaseGallery
6
+ * @author Officience <itdev.officience@gmail.com>
7
+ */
8
 
9
  class Officience_ShowcaseGallery_AlbumController extends Mage_Core_Controller_Front_Action {
10
 
app/code/{local → community}/Officience/ShowcaseGallery/controllers/IndexController.php RENAMED
@@ -1,9 +1,10 @@
1
  <?php
2
 
3
- /*
4
- Modules Magento Gallery - Zoom NGUYEN - University Bordeaux I - France
5
- Email : frtlupsvn@gmail.com
6
- */
 
7
 
8
  class Officience_ShowcaseGallery_IndexController extends Mage_Core_Controller_Front_Action {
9
 
1
  <?php
2
 
3
+ /**
4
+ * @category Officience
5
+ * @package Officience_ShowcaseGallery
6
+ * @author Officience <itdev.officience@gmail.com>
7
+ */
8
 
9
  class Officience_ShowcaseGallery_IndexController extends Mage_Core_Controller_Front_Action {
10
 
app/code/{local → community}/Officience/ShowcaseGallery/etc/config.xml RENAMED
@@ -1,8 +1,15 @@
1
  <?xml version="1.0"?>
 
 
 
 
 
 
 
2
  <config>
3
  <modules>
4
  <Officience_ShowcaseGallery>
5
- <version>0.1.0</version> <!-- Version Modules Magento Gallery -->
6
  </Officience_ShowcaseGallery>
7
  </modules>
8
  <frontend>
1
  <?xml version="1.0"?>
2
+ <!--
3
+ /**
4
+ * @category Officience
5
+ * @package Officience_ShowcaseGallery
6
+ * @author Officience <itdev.officience@gmail.com>
7
+ */
8
+ -->
9
  <config>
10
  <modules>
11
  <Officience_ShowcaseGallery>
12
+ <version>0.1.1</version> <!-- Version Modules Magento Gallery -->
13
  </Officience_ShowcaseGallery>
14
  </modules>
15
  <frontend>
app/code/{local → community}/Officience/ShowcaseGallery/sql/showcasegallery_setup/mysql4-install-0.1.0.php RENAMED
@@ -1,10 +1,9 @@
1
  <?php
2
-
3
  /**
4
- Modules Magento Gallery - Officience - Zoom NGUYEN - University Bordeaux I - France
5
- Website: www.officience.com
6
- Email : frtlupsvn@gmail.com
7
- */
8
  $installer = $this;
9
  /* @var $installer Mage_Core_Model_Resource_Setup */
10
 
1
  <?php
 
2
  /**
3
+ * @category Officience
4
+ * @package Officience_ShowcaseGallery
5
+ * @author Officience <itdev.officience@gmail.com>
6
+ */
7
  $installer = $this;
8
  /* @var $installer Mage_Core_Model_Resource_Setup */
9
 
app/code/local/Officience/ShowcaseGallery/Helper/Data.php DELETED
@@ -1,6 +0,0 @@
1
- <?php
2
-
3
- class Officience_ShowcaseGallery_Helper_Data extends Mage_Core_Helper_Abstract
4
- {
5
-
6
- }
 
 
 
 
 
 
app/design/frontend/default/default/layout/showcasegallery.xml CHANGED
@@ -1,8 +1,11 @@
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <!--
3
- Modules Magento Gallery - Zoom NGUYEN - University Bordeaux I - France
4
- Email : frtlupsvn@gmail.com
5
- -->
 
 
 
6
  <layout version="1.0.0">
7
  <default>
8
  <reference name="top.links">
1
  <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+ /**
4
+ * @category Officience
5
+ * @package Officience_ShowcaseGallery
6
+ * @author Officience <itdev.officience@gmail.com>
7
+ */
8
+ -->
9
  <layout version="1.0.0">
10
  <default>
11
  <reference name="top.links">
app/design/frontend/default/default/template/showcasegallery/album.phtml CHANGED
@@ -1,7 +1,9 @@
1
  <?php
2
- /*
3
- * upload form template Medma_Avatar
4
- */
 
 
5
  ?>
6
 
7
  <script type="text/javascript">
1
  <?php
2
+ /**
3
+ * @category Officience
4
+ * @package Officience_ShowcaseGallery
5
+ * @author Officience <itdev.officience@gmail.com>
6
+ */
7
  ?>
8
 
9
  <script type="text/javascript">
app/design/frontend/default/default/template/showcasegallery/gallery.phtml CHANGED
@@ -1,3 +1,11 @@
 
 
 
 
 
 
 
 
1
  <?php
2
  $albums = $this->getAlbumsByCustomerId();
3
  $name = $this->getCustomerName();
1
+ <?php
2
+ /**
3
+ * @category Officience
4
+ * @package Officience_ShowcaseGallery
5
+ * @author Officience <itdev.officience@gmail.com>
6
+ */
7
+ ?>
8
+
9
  <?php
10
  $albums = $this->getAlbumsByCustomerId();
11
  $name = $this->getCustomerName();
app/design/frontend/default/default/template/showcasegallery/productalbums.phtml CHANGED
@@ -1,3 +1,10 @@
 
 
 
 
 
 
 
1
  <div class="box-collateral box-albums">
2
  <h2><?php echo $this->__('Showcase Gallery') ?></h2>
3
  <?php if($this->getAlbums()):?>
1
+ <?php
2
+ /**
3
+ * @category Officience
4
+ * @package Officience_ShowcaseGallery
5
+ * @author Officience <itdev.officience@gmail.com>
6
+ */
7
+ ?>
8
  <div class="box-collateral box-albums">
9
  <h2><?php echo $this->__('Showcase Gallery') ?></h2>
10
  <?php if($this->getAlbums()):?>
app/etc/modules/Officience_ShowcaseGallery.xml CHANGED
@@ -1,13 +1,13 @@
1
  <?xml version="1.0"?>
2
  <!--
3
- Modules Magento Gallery - Zoom NGUYEN - University Bordeaux I - France
4
- Email : frtlupsvn@gmail.com
5
  -->
6
  <config>
7
  <modules>
8
  <Officience_ShowcaseGallery><!-- Name of Modules -->
9
  <active>true</active><!-- active module -->
10
- <codePool>local</codePool><!-- Localtion of Modules -->
11
  </Officience_ShowcaseGallery>
12
  </modules>
13
  </config>
1
  <?xml version="1.0"?>
2
  <!--
3
+ Modules Magento ShowCaseGallery - Officience - Vietnam - France
4
+ Email : itdev.officience@gmail.com
5
  -->
6
  <config>
7
  <modules>
8
  <Officience_ShowcaseGallery><!-- Name of Modules -->
9
  <active>true</active><!-- active module -->
10
+ <codePool>community</codePool><!-- Localtion of Modules -->
11
  </Officience_ShowcaseGallery>
12
  </modules>
13
  </config>
js/jquery/showcasegallery/noconflict.js DELETED
@@ -1 +0,0 @@
1
- jQuery.noConflict();
 
package.xml CHANGED
@@ -1,19 +1,20 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Officience_ShowcaseGallery</name>
4
- <version>0.1.0</version>
5
  <stability>stable</stability>
6
- <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
- <summary>Showcase extension for Magento</summary>
10
- <description>This module that allows customer can create the albums that related with product</description>
11
- <notes>First release&#xD;
12
- </notes>
13
- <authors><author><name>Officience</name><user>officience</user><email>itdev.officience@gmail.com</email></author></authors>
14
- <date>2013-10-18</date>
15
- <time>09:22:10</time>
16
- <contents><target name="magelocal"><dir name="Officience"><dir name="ShowcaseGallery"><dir name="Block"><file name="Album.php" hash="c9aabc91271fa49289c844b28a6533c5"/><file name="Gallery.php" hash="6e4650a891503dec76e75c829771656a"/><file name="Productalbums.php" hash="1d98f767bba7d4ae2f6d7568d50a5896"/></dir><dir name="Helper"><file name="Data.php" hash="1f222465123807898ef77bd21a423b61"/></dir><dir name="Model"><file name="Album.php" hash="b2752ecfb99c4000ee28a4f2c4858b8e"/><file name="Image.php" hash="e53299c6644ed2fcca68e68a3bce9e1f"/><dir name="Mysql4"><dir name="Album"><file name="Collection.php" hash="0a7e96c2cfea91c5d0d2022b46f1d11a"/></dir><file name="Album.php" hash="acd6b9e7a832aed2ba5290221c43ba9b"/><dir name="Image"><file name="Collection.php" hash="41efdfa7de832791900fc68fda060c11"/></dir><file name="Image.php" hash="d9cd35dea74751b2ad8d6deecb3d64dc"/><dir name="Product"><file name="Collection.php" hash="c3f6c0160c7a454e816f9b7df6ed3406"/></dir><file name="Product.php" hash="612609145739f742a29d3761f35e2905"/></dir><file name="Product.php" hash="122e1f54b5f4bd2f538fafd31f7b8382"/></dir><dir name="controllers"><file name="AlbumController.php" hash="430dbc7b3108a32c454034059ef53023"/><file name="IndexController.php" hash="194f1aeb08663045e930800d1af36861"/></dir><dir name="etc"><file name="config.xml" hash="b4bfd7ead08f2abb73229ca703608d6d"/></dir><dir name="sql"><dir name="showcasegallery_setup"><file name="mysql4-install-0.1.0.php" hash="6edb7ebb2578c3bad721c57ee691ed50"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="showcasegallery.xml" hash="9615b8517238c17d587abb1b45bf2133"/></dir><dir name="template"><dir name="showcasegallery"><file name="album.phtml" hash="dc3ce495075c3b0e543d6503fba3acd1"/><file name="gallery.phtml" hash="e34d216c5fbee792af7a83e8bb4761b1"/><file name="productalbums.phtml" hash="404284c6addec5acea423b29210784fe"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Officience_ShowcaseGallery.xml" hash="da2af5dcbb8a783566bad90912f695c6"/></dir></target><target name="mageweb"><dir name="js"><dir name="jquery"><dir name="showcasegallery"><file name="jQuery.js" hash="2a410e352d5137af6e651365228eebbd"/><file name="noconflict.js" hash="3179f2255b046d5f2e9a71e365287bef"/></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="showcasegallery"><dir name="css"><file name="showcasegallery.css" hash="6021ea1a5130457434217ba03118fb69"/></dir></dir></dir></dir></dir></target></contents>
 
17
  <compatible/>
18
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
19
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Officience_ShowcaseGallery</name>
4
+ <version>0.1.1</version>
5
  <stability>stable</stability>
6
+ <license>OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
+ <summary>This extension that allows customer can create the albums in order to promotion products</summary>
10
+ <description>-Registered user will have a gallery&#xD;
11
+ -Registered user have ability to create gallery album related with product&#xD;
12
+ -In product detail page will display showcase gallery block that include albums that related with product</description>
13
+ <notes>Full release version</notes>
14
+ <authors><author><name>ToThanhTrung</name><user>ToThanhTrung</user><email>thanhtrung.to@officience.com</email></author></authors>
15
+ <date>2013-10-25</date>
16
+ <time>07:11:47</time>
17
+ <contents><target name="magecommunity"><dir name="Officience"><dir name="ShowcaseGallery"><dir name="Block"><file name="Album.php" hash="e0286555418578f966f6b1dca39d0acd"/><file name="Gallery.php" hash="dbdcb77d1da3274a7564465d8f33d835"/><file name="Productalbums.php" hash="87d18fbcc55df51ffd168750fa2bd4c5"/></dir><dir name="Helper"><file name="Data.php" hash="244cb818ffb5290132af3c61fbe6a72a"/></dir><dir name="Model"><file name="Album.php" hash="5fdce5c60c537d027645630abee5e20b"/><file name="Image.php" hash="ef7811c4f88103198111a586796a7aff"/><dir name="Mysql4"><dir name="Album"><file name="Collection.php" hash="f27585d5a9b2a593f468eb008eb6200c"/></dir><file name="Album.php" hash="37c636bb5b3b1c85574b93590c682254"/><dir name="Image"><file name="Collection.php" hash="7b9a3839c5e559af97f1d5fb626f621c"/></dir><file name="Image.php" hash="b36feae2c2462aa901c7f22f5fc61c1a"/><dir name="Product"><file name="Collection.php" hash="7eb65f0664db31d67dd1e5355165a686"/></dir><file name="Product.php" hash="d6f9cc1051efc2820538fac74fc1c0f3"/></dir><file name="Product.php" hash="92bad0ed8020248247f829e9dc7abf88"/></dir><dir name="controllers"><file name="AlbumController.php" hash="c922ce1b5f9602e7145475d3b9f9df01"/><file name="IndexController.php" hash="542e35fd13fc7bf959ae710f9851f5b6"/></dir><dir name="etc"><file name="config.xml" hash="328cde6cb2bc107dcaf396fdbd0cd55b"/></dir><dir name="sql"><dir name="showcasegallery_setup"><file name="mysql4-install-0.1.0.php" hash="6a25b821f2566cf282e0f8016be5f0c3"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="showcasegallery.xml" hash="9f562627269d1ab2572942b943cfdb0e"/></dir><dir name="template"><dir name="showcasegallery"><file name="album.phtml" hash="9134d34e66a4318aba59c388261ad80e"/><file name="gallery.phtml" hash="f17161446b24fb5a436fc78fdd9fbc12"/><file name="productalbums.phtml" hash="057c7681ab39be8416d5793f0ef34ffa"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Officience_ShowcaseGallery.xml" hash="57d01629c0f87364a162118105cace42"/></dir></target><target name="mageweb"><dir name="js"><dir name="jquery"><dir name="showcasegallery"><file name="jQuery.js" hash="2a410e352d5137af6e651365228eebbd"/></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="showcasegallery"><dir name="css"><file name="showcasegallery.css" hash="4d987cfaf75a4c573146acc6b5c215c7"/></dir></dir></dir></dir></dir></target></contents>
18
  <compatible/>
19
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
20
  </package>
skin/frontend/default/default/showcasegallery/css/showcasegallery.css CHANGED
@@ -1,10 +1,8 @@
1
- .avatar-block{
2
- float: right;
3
- width:auto;
4
- height:auto;
5
- border:1px solid gray;
6
- margin-left: 8px;
7
- }
8
 
9
  /* Add an album */
10
 
1
+ /**
2
+ * @category Officience
3
+ * @package Officience_ShowcaseGallery
4
+ * @author Officience <itdev.officience@gmail.com>
5
+ */
 
 
6
 
7
  /* Add an album */
8