Version Notes
Full Multilingual Support and Bug Fixes
Download this release
Release Info
Developer | Roy Toledo |
Extension | SocialShareOG |
Version | 2.0.0 |
Comparing to | |
See all releases |
Code changes from version 1.5.3 to 2.0.0
- app/code/community/SocialShare/OpenGraphTags/Adminhtml/Model/System/Config/Source/Color.php +0 -11
- app/code/community/SocialShare/OpenGraphTags/Adminhtml/Model/System/Config/Source/Font.php +0 -20
- app/code/community/SocialShare/OpenGraphTags/Adminhtml/Model/System/Config/Source/Language.php +0 -11
- app/code/community/SocialShare/OpenGraphTags/Adminhtml/Model/System/Config/Source/Layout.php +0 -11
- app/code/community/SocialShare/OpenGraphTags/Adminhtml/Model/System/Config/Source/Verb.php +0 -11
- app/code/community/SocialShare/OpenGraphTags/Model/System/Config/Source/Dropdown/Localization.php +111 -6
- app/code/community/SocialShare/OpenGraphTags/etc/system.xml +1 -1
- app/design/frontend/default/default/template/socialshare/body.phtml +0 -21
- app/design/frontend/default/default/template/socialshare/head.phtml +0 -1
- package.xml +6 -6
app/code/community/SocialShare/OpenGraphTags/Adminhtml/Model/System/Config/Source/Color.php
DELETED
@@ -1,11 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
class OE_SocialShare_Adminhtml_Model_System_Config_Source_Color
|
3 |
-
{
|
4 |
-
public function toOptionArray()
|
5 |
-
{
|
6 |
-
return array(
|
7 |
-
array('value'=>'light', 'label'=>Mage::helper('socialshare')->__('Light')),
|
8 |
-
array('value'=>'dark', 'label'=>Mage::helper('socialshare')->__('Dark'))
|
9 |
-
);
|
10 |
-
}
|
11 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/SocialShare/OpenGraphTags/Adminhtml/Model/System/Config/Source/Font.php
DELETED
@@ -1,20 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
exit("FacebookComments");
|
4 |
-
|
5 |
-
|
6 |
-
class SocialShare_FacebookComments_Adminhtml_Model_System_Config_Source_Font
|
7 |
-
{
|
8 |
-
public function toOptionArray()
|
9 |
-
{
|
10 |
-
return array(
|
11 |
-
array('value'=>'', 'label'=>Mage::helper('socialshare')->__('')),
|
12 |
-
array('value'=>'arial', 'label'=>Mage::helper('socialshare')->__('arial')),
|
13 |
-
array('value'=>'lucida grande', 'label'=>Mage::helper('socialshare')->__('lucida grande')),
|
14 |
-
array('value'=>'segoe ui', 'label'=>Mage::helper('socialshare')->__('segoe ui')),
|
15 |
-
array('value'=>'tahoma', 'label'=>Mage::helper('socialshare')->__('tahoma')),
|
16 |
-
array('value'=>'trebuchet ms', 'label'=>Mage::helper('socialshare')->__('trebuchet ms')),
|
17 |
-
array('value'=>'verdana', 'label'=>Mage::helper('socialshare')->__('verdana'))
|
18 |
-
);
|
19 |
-
}
|
20 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/SocialShare/OpenGraphTags/Adminhtml/Model/System/Config/Source/Language.php
DELETED
@@ -1,11 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
class SocialShare_OpenGraphTags_Adminhtml_Model_System_Config_Source_Language
|
3 |
-
{
|
4 |
-
public function toOptionArray()
|
5 |
-
{
|
6 |
-
return array(
|
7 |
-
array('value'=>'en_US', 'label'=>Mage::helper('opengraphtags')->__('English US')),
|
8 |
-
array('value'=>'de_DE', 'label'=>Mage::helper('opengraphtags')->__('German'))
|
9 |
-
);
|
10 |
-
}
|
11 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/SocialShare/OpenGraphTags/Adminhtml/Model/System/Config/Source/Layout.php
DELETED
@@ -1,11 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
class OE_SocialShare_Adminhtml_Model_System_Config_Source_Layout
|
3 |
-
{
|
4 |
-
public function toOptionArray()
|
5 |
-
{
|
6 |
-
return array(
|
7 |
-
array('value'=>'button_count', 'label'=>Mage::helper('socialshare')->__('button_count')),
|
8 |
-
array('value'=>'standard', 'label'=>Mage::helper('socialshare')->__('standard'))
|
9 |
-
);
|
10 |
-
}
|
11 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/SocialShare/OpenGraphTags/Adminhtml/Model/System/Config/Source/Verb.php
DELETED
@@ -1,11 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
class OE_SocialShare_Adminhtml_Model_System_Config_Source_Verb
|
3 |
-
{
|
4 |
-
public function toOptionArray()
|
5 |
-
{
|
6 |
-
return array(
|
7 |
-
array('value'=>'like', 'label'=>Mage::helper('socialshare')->__('Like')),
|
8 |
-
array('value'=>'recommend', 'label'=>Mage::helper('socialshare')->__('Recommend'))
|
9 |
-
);
|
10 |
-
}
|
11 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/SocialShare/OpenGraphTags/Model/System/Config/Source/Dropdown/Localization.php
CHANGED
@@ -5,12 +5,117 @@ class SocialShare_OpenGraphTags_Model_System_Config_Source_Dropdown_Localization
|
|
5 |
public function toOptionArray()
|
6 |
{
|
7 |
return array(
|
8 |
-
array(
|
9 |
-
array(
|
10 |
-
array(
|
11 |
-
array(
|
12 |
-
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
);
|
15 |
}
|
16 |
}
|
5 |
public function toOptionArray()
|
6 |
{
|
7 |
return array(
|
8 |
+
array('value'=>'af_ZA', 'label'=>Mage::helper('opengraphtags')->__('Afrikaans')),
|
9 |
+
array('value'=>'sq_AL', 'label'=>Mage::helper('opengraphtags')->__('Albanian')),
|
10 |
+
array('value'=>'ar_AR', 'label'=>Mage::helper('opengraphtags')->__('Arabic')),
|
11 |
+
array('value'=>'hy_AM', 'label'=>Mage::helper('opengraphtags')->__('Armenian')),
|
12 |
+
array('value'=>'ay_BO', 'label'=>Mage::helper('opengraphtags')->__('Aymara')),
|
13 |
+
array('value'=>'az_AZ', 'label'=>Mage::helper('opengraphtags')->__('Azeri')),
|
14 |
+
array('value'=>'be_BY', 'label'=>Mage::helper('opengraphtags')->__('Belarusian')),
|
15 |
+
array('value'=>'bn_IN', 'label'=>Mage::helper('opengraphtags')->__('Bengali')),
|
16 |
+
array('value'=>'bs_BA', 'label'=>Mage::helper('opengraphtags')->__('Bosnian')),
|
17 |
+
array('value'=>'bg_BG', 'label'=>Mage::helper('opengraphtags')->__('Bulgarian')),
|
18 |
+
array('value'=>'hr_HR', 'label'=>Mage::helper('opengraphtags')->__('Croatian')),
|
19 |
+
array('value'=>'ca_ES', 'label'=>Mage::helper('opengraphtags')->__('Catalan')),
|
20 |
+
array('value'=>'cs_CZ', 'label'=>Mage::helper('opengraphtags')->__('Czech')),
|
21 |
+
array('value'=>'da_DK', 'label'=>Mage::helper('opengraphtags')->__('Danish')),
|
22 |
+
array('value'=>'nl_NL', 'label'=>Mage::helper('opengraphtags')->__('Dutch')),
|
23 |
+
array('value'=>'nl_BE', 'label'=>Mage::helper('opengraphtags')->__('Dutch(Belgi?)')),
|
24 |
+
array('value'=>'en_US', 'label'=>Mage::helper('opengraphtags')->__('English(US)')),
|
25 |
+
array('value'=>'en_GB', 'label'=>Mage::helper('opengraphtags')->__('English(UK)')),
|
26 |
+
array('value'=>'en_PI', 'label'=>Mage::helper('opengraphtags')->__('English(Pirate)')),
|
27 |
+
array('value'=>'en_UD', 'label'=>Mage::helper('opengraphtags')->__('English(UpsideDown)')),
|
28 |
+
array('value'=>'eo_EO', 'label'=>Mage::helper('opengraphtags')->__('Esperanto')),
|
29 |
+
array('value'=>'et_EE', 'label'=>Mage::helper('opengraphtags')->__('Estonian')),
|
30 |
+
array('value'=>'fo_FO', 'label'=>Mage::helper('opengraphtags')->__('Faroese')),
|
31 |
+
array('value'=>'fr_CA', 'label'=>Mage::helper('opengraphtags')->__('French(Canada)')),
|
32 |
+
array('value'=>'fb_FI', 'label'=>Mage::helper('opengraphtags')->__('Finnish(test)')),
|
33 |
+
array('value'=>'fi_FI', 'label'=>Mage::helper('opengraphtags')->__('Finnish')),
|
34 |
+
array('value'=>'fr_FR', 'label'=>Mage::helper('opengraphtags')->__('French(France)')),
|
35 |
+
array('value'=>'gl_ES', 'label'=>Mage::helper('opengraphtags')->__('Galician')),
|
36 |
+
array('value'=>'ka_GE', 'label'=>Mage::helper('opengraphtags')->__('Georgian')),
|
37 |
+
array('value'=>'el_GR', 'label'=>Mage::helper('opengraphtags')->__('Greek')),
|
38 |
+
array('value'=>'gu_IN', 'label'=>Mage::helper('opengraphtags')->__('Gujarati')),
|
39 |
+
array('value'=>'he_IL', 'label'=>Mage::helper('opengraphtags')->__('Hebrew')),
|
40 |
+
array('value'=>'hu_HU', 'label'=>Mage::helper('opengraphtags')->__('Hungarian')),
|
41 |
+
array('value'=>'hi_IN', 'label'=>Mage::helper('opengraphtags')->__('Hindi')),
|
42 |
+
array('value'=>'is_IS', 'label'=>Mage::helper('opengraphtags')->__('Icelandic')),
|
43 |
+
array('value'=>'id_ID', 'label'=>Mage::helper('opengraphtags')->__('Indonesian')),
|
44 |
+
array('value'=>'ga_IE', 'label'=>Mage::helper('opengraphtags')->__('Irish')),
|
45 |
+
array('value'=>'jv_ID', 'label'=>Mage::helper('opengraphtags')->__('Javanese')),
|
46 |
+
array('value'=>'kn_IN', 'label'=>Mage::helper('opengraphtags')->__('Kannada')),
|
47 |
+
array('value'=>'kk_KZ', 'label'=>Mage::helper('opengraphtags')->__('Kazakh')),
|
48 |
+
array('value'=>'la_VA', 'label'=>Mage::helper('opengraphtags')->__('Latin')),
|
49 |
+
array('value'=>'lv_LV', 'label'=>Mage::helper('opengraphtags')->__('Latvian')),
|
50 |
+
array('value'=>'li_NL', 'label'=>Mage::helper('opengraphtags')->__('Limburgish')),
|
51 |
+
array('value'=>'lt_LT', 'label'=>Mage::helper('opengraphtags')->__('Lithuanian')),
|
52 |
+
array('value'=>'mk_MK', 'label'=>Mage::helper('opengraphtags')->__('Macedonian')),
|
53 |
+
array('value'=>'mg_MG', 'label'=>Mage::helper('opengraphtags')->__('Malagasy')),
|
54 |
+
array('value'=>'ms_MY', 'label'=>Mage::helper('opengraphtags')->__('Malay')),
|
55 |
+
array('value'=>'mt_MT', 'label'=>Mage::helper('opengraphtags')->__('Maltese')),
|
56 |
+
array('value'=>'mr_IN', 'label'=>Mage::helper('opengraphtags')->__('Marathi')),
|
57 |
+
array('value'=>'mn_MN', 'label'=>Mage::helper('opengraphtags')->__('Mongolian')),
|
58 |
+
array('value'=>'ne_NP', 'label'=>Mage::helper('opengraphtags')->__('Nepali')),
|
59 |
+
array('value'=>'nb_NO', 'label'=>Mage::helper('opengraphtags')->__('Norwegian(bokmal)')),
|
60 |
+
array('value'=>'nn_NO', 'label'=>Mage::helper('opengraphtags')->__('Norwegian(nynorsk)')),
|
61 |
+
array('value'=>'ps_AF', 'label'=>Mage::helper('opengraphtags')->__('Pashto')),
|
62 |
+
array('value'=>'pl_PL', 'label'=>Mage::helper('opengraphtags')->__('Polish')),
|
63 |
+
array('value'=>'pt_BR', 'label'=>Mage::helper('opengraphtags')->__('Portuguese(Brazil)')),
|
64 |
+
array('value'=>'pt_PT', 'label'=>Mage::helper('opengraphtags')->__('Portuguese(Portugal)')),
|
65 |
+
array('value'=>'pa_IN', 'label'=>Mage::helper('opengraphtags')->__('Punjabi')),
|
66 |
+
array('value'=>'rm_CH', 'label'=>Mage::helper('opengraphtags')->__('Romansh')),
|
67 |
+
array('value'=>'sa_IN', 'label'=>Mage::helper('opengraphtags')->__('Sanskrit')),
|
68 |
+
array('value'=>'sr_RS', 'label'=>Mage::helper('opengraphtags')->__('Serbian')),
|
69 |
+
array('value'=>'so_SO', 'label'=>Mage::helper('opengraphtags')->__('Somali')),
|
70 |
+
array('value'=>'es_LA', 'label'=>Mage::helper('opengraphtags')->__('Spanish')),
|
71 |
+
array('value'=>'es_CL', 'label'=>Mage::helper('opengraphtags')->__('Spanish(Chile)')),
|
72 |
+
array('value'=>'es_CO', 'label'=>Mage::helper('opengraphtags')->__('Spanish(Colombia)')),
|
73 |
+
array('value'=>'es_ES', 'label'=>Mage::helper('opengraphtags')->__('Spanish(Spain)')),
|
74 |
+
array('value'=>'es_MX', 'label'=>Mage::helper('opengraphtags')->__('Spanish(Mexico)')),
|
75 |
+
array('value'=>'es_VE', 'label'=>Mage::helper('opengraphtags')->__('Spanish(Venezuela)')),
|
76 |
+
array('value'=>'sw_KE', 'label'=>Mage::helper('opengraphtags')->__('Swahili')),
|
77 |
+
array('value'=>'tl_PH', 'label'=>Mage::helper('opengraphtags')->__('Filipino')),
|
78 |
+
array('value'=>'tg_TJ', 'label'=>Mage::helper('opengraphtags')->__('Tajik')),
|
79 |
+
array('value'=>'ta_IN', 'label'=>Mage::helper('opengraphtags')->__('Tamil')),
|
80 |
+
array('value'=>'tt_RU', 'label'=>Mage::helper('opengraphtags')->__('Tatar')),
|
81 |
+
array('value'=>'te_IN', 'label'=>Mage::helper('opengraphtags')->__('Telugu')),
|
82 |
+
array('value'=>'ml_IN', 'label'=>Mage::helper('opengraphtags')->__('Malayalam')),
|
83 |
+
array('value'=>'uk_UA', 'label'=>Mage::helper('opengraphtags')->__('Ukrainian')),
|
84 |
+
array('value'=>'uz_UZ', 'label'=>Mage::helper('opengraphtags')->__('Uzbek')),
|
85 |
+
array('value'=>'vi_VN', 'label'=>Mage::helper('opengraphtags')->__('Vietnamese')),
|
86 |
+
array('value'=>'xh_ZA', 'label'=>Mage::helper('opengraphtags')->__('Xhosa')),
|
87 |
+
array('value'=>'yi_DE', 'label'=>Mage::helper('opengraphtags')->__('Yiddish')),
|
88 |
+
array('value'=>'zu_ZA', 'label'=>Mage::helper('opengraphtags')->__('Zulu')),
|
89 |
+
|
90 |
+
array('value'=>'cy_GB', 'label'=>Mage::helper('opengraphtags')->__('Welsh')),
|
91 |
+
array('value'=>'de_DE', 'label'=>Mage::helper('opengraphtags')->__('German')),
|
92 |
+
array('value'=>'eu_ES', 'label'=>Mage::helper('opengraphtags')->__('Basque')),
|
93 |
+
array('value'=>'ck_US', 'label'=>Mage::helper('opengraphtags')->__('Cherokee')),
|
94 |
+
array('value'=>'it_IT', 'label'=>Mage::helper('opengraphtags')->__('Italian')),
|
95 |
+
array('value'=>'ja_JP', 'label'=>Mage::helper('opengraphtags')->__('Japanese')),
|
96 |
+
array('value'=>'ko_KR', 'label'=>Mage::helper('opengraphtags')->__('Korean')),
|
97 |
+
array('value'=>'ro_RO', 'label'=>Mage::helper('opengraphtags')->__('Romanian')),
|
98 |
+
array('value'=>'ru_RU', 'label'=>Mage::helper('opengraphtags')->__('Russian')),
|
99 |
+
array('value'=>'sk_SK', 'label'=>Mage::helper('opengraphtags')->__('Slovak')),
|
100 |
+
array('value'=>'sl_SI', 'label'=>Mage::helper('opengraphtags')->__('Slovenian')),
|
101 |
+
array('value'=>'sv_SE', 'label'=>Mage::helper('opengraphtags')->__('Swedish')),
|
102 |
+
array('value'=>'th_TH', 'label'=>Mage::helper('opengraphtags')->__('Thai')),
|
103 |
+
array('value'=>'tr_TR', 'label'=>Mage::helper('opengraphtags')->__('Turkish')),
|
104 |
+
array('value'=>'ku_TR', 'label'=>Mage::helper('opengraphtags')->__('Kurdish')),
|
105 |
+
array('value'=>'zh_CN', 'label'=>Mage::helper('opengraphtags')->__('SimplifiedChinese(China)')),
|
106 |
+
array('value'=>'zh_HK', 'label'=>Mage::helper('opengraphtags')->__('TraditionalChinese(HongKong)')),
|
107 |
+
array('value'=>'zh_TW', 'label'=>Mage::helper('opengraphtags')->__('TraditionalChinese(Taiwan)')),
|
108 |
+
array('value'=>'fb_LT', 'label'=>Mage::helper('opengraphtags')->__('LeetSpeak')),
|
109 |
+
|
110 |
+
array('value'=>'km_KH', 'label'=>Mage::helper('opengraphtags')->__('Khmer')),
|
111 |
+
array('value'=>'ur_PK', 'label'=>Mage::helper('opengraphtags')->__('Urdu')),
|
112 |
+
array('value'=>'fa_IR', 'label'=>Mage::helper('opengraphtags')->__('Persian')),
|
113 |
+
array('value'=>'sy_SY', 'label'=>Mage::helper('opengraphtags')->__('Syriac')),
|
114 |
+
array('value'=>'gn_PY', 'label'=>Mage::helper('opengraphtags')->__('Guaran?')),
|
115 |
+
array('value'=>'qu_PE', 'label'=>Mage::helper('opengraphtags')->__('Quechua')),
|
116 |
+
array('value'=>'se_NO', 'label'=>Mage::helper('opengraphtags')->__('NorthernS?mi')),
|
117 |
+
array('value'=>'tl_ST', 'label'=>Mage::helper('opengraphtags')->__('Klingon')),
|
118 |
+
|
119 |
);
|
120 |
}
|
121 |
}
|
app/code/community/SocialShare/OpenGraphTags/etc/system.xml
CHANGED
@@ -52,7 +52,7 @@
|
|
52 |
<fields>
|
53 |
<fb_appid translate="label">
|
54 |
<label>Application id / key</label>
|
55 |
-
<comment><![CDATA[ Get a <a target="_blank" href="
|
56 |
<frontend_type>text</frontend_type>
|
57 |
<sort_order>20</sort_order>
|
58 |
<show_in_default>1</show_in_default>
|
52 |
<fields>
|
53 |
<fb_appid translate="label">
|
54 |
<label>Application id / key</label>
|
55 |
+
<comment><![CDATA[ Get a <a target="_blank" href="https://developers.facebook.com/apps">Facebook API Key</a>]]></comment>
|
56 |
<frontend_type>text</frontend_type>
|
57 |
<sort_order>20</sort_order>
|
58 |
<show_in_default>1</show_in_default>
|
app/design/frontend/default/default/template/socialshare/body.phtml
DELETED
@@ -1,21 +0,0 @@
|
|
1 |
-
<!-- SocialShare - OpenGraphTags Body -->
|
2 |
-
<div id="fb-root"></div>
|
3 |
-
<script>
|
4 |
-
window.fbAsyncInit = function() {
|
5 |
-
FB.init({
|
6 |
-
appId : '<?php echo Mage::getStoreConfig('opengraphtags/facebook/fb_appid'); ?>',
|
7 |
-
status : true,
|
8 |
-
cookie : true,
|
9 |
-
xfbml : true
|
10 |
-
});
|
11 |
-
};
|
12 |
-
// Load the SDK Asynchronously
|
13 |
-
(function(d){
|
14 |
-
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
|
15 |
-
if (d.getElementById(id)) {return;}
|
16 |
-
js = d.createElement('script'); js.id = id; js.async = true;
|
17 |
-
js.src = "//connect.facebook.net/<?php echo Mage::getStoreConfig('opengraphtags/conf/lang'); ?>/all.js";
|
18 |
-
ref.parentNode.insertBefore(js, ref);
|
19 |
-
}(document));
|
20 |
-
</script>
|
21 |
-
<!-- SocialShare - OpenGraphTags Body END -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/default/default/template/socialshare/head.phtml
CHANGED
@@ -10,7 +10,6 @@
|
|
10 |
<?php $product = Mage::registry('current_product');
|
11 |
if ($product): ?>
|
12 |
<meta property="og:title" content="<?php echo trim($product->getName()); ?>"/>
|
13 |
-
<meta property="og:description" content="<?php echo strip_tags($product->getDescription()) ?>" />
|
14 |
<meta property="og:image" content="<?php echo Mage::helper('catalog/image')->init($product, 'image');?>"/>
|
15 |
<?php endif; ?>
|
16 |
<!-- SocialShare - OpenGraphTags Head END -->
|
10 |
<?php $product = Mage::registry('current_product');
|
11 |
if ($product): ?>
|
12 |
<meta property="og:title" content="<?php echo trim($product->getName()); ?>"/>
|
|
|
13 |
<meta property="og:image" content="<?php echo Mage::helper('catalog/image')->init($product, 'image');?>"/>
|
14 |
<?php endif; ?>
|
15 |
<!-- SocialShare - OpenGraphTags Head END -->
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>SocialShareOG</name>
|
4 |
-
<version>
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Open Graph Tags support for magento store</summary>
|
10 |
-
<description>This extention provides
|
11 |
-
<notes>
|
12 |
<authors><author><name>Roy</name><user>NikNak</user><email>toledoroy@gmail.com</email></author></authors>
|
13 |
-
<date>
|
14 |
-
<time>
|
15 |
-
<contents><target name="magecommunity"><dir name="SocialShare"><dir name="OpenGraphTags"><dir name="
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>4.3.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>SocialShareOG</name>
|
4 |
+
<version>2.0.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Open Graph Tags support for magento store</summary>
|
10 |
+
<description>This extention provides Open Graph Tags support for magento store and enables the use of Open Graph analitics and more advanced social Addons</description>
|
11 |
+
<notes>Full Multilingual Support and Bug Fixes</notes>
|
12 |
<authors><author><name>Roy</name><user>NikNak</user><email>toledoroy@gmail.com</email></author></authors>
|
13 |
+
<date>2013-02-02</date>
|
14 |
+
<time>20:58:52</time>
|
15 |
+
<contents><target name="magecommunity"><dir name="SocialShare"><dir name="OpenGraphTags"><dir name="Helper"><file name="Data.php" hash="0d955fa9a94fddc4e5fe8b6c87f1cece"/></dir><dir name="Model"><dir name="System"><dir name="Config"><dir name="Source"><dir name="Dropdown"><file name="Localization.php" hash="124bfcf8e6be20123772da9c5c458989"/></dir></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="d9864cf4645ba6cc01f1e8d04a4bd735"/><file name="config.xml" hash="e354c871847c66b08376f0446c7512d5"/><file name="system.xml" hash="3de8767a1f1435d7ed201ffdc31c4da5"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="OpenGraphTags.xml" hash="1d5d69364bbee107d37fb128511ee94a"/></dir><dir name="template"><dir name="socialshare"><file name="head.phtml" hash="23e5ab205f5d6c46eb60f98dce129f25"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="SocialShare_OpenGraphTags.xml" hash="820d4be224ecac5ad1ba1a7e23cb7b55"/></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>4.3.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|