Version Notes
Social Login and Social Share for Magento
Download this release
Release Info
Developer | LoginRadius Team |
Extension | LoginRadius |
Version | 4.2.1 |
Comparing to | |
See all releases |
Code changes from version 4.2.0 to 4.2.1
- app/code/community/Loginradius/Sociallogin/Helper/Loginhelper.php +15 -0
- app/code/community/Loginradius/Sociallogin/Model/Observer.php +14 -0
- app/code/community/Loginradius/Sociallogin/Model/System/Config/Info.php +1 -1
- app/code/community/Loginradius/Sociallogin/etc/config.xml +11 -1
- app/code/community/Loginradius/Sociallogin/sql/sociallogin_setup/{mysql4-install-4.2.0.php → mysql4-install-4.2.1.php} +0 -0
- app/code/community/Loginradius/Sociallogin/sql/sociallogin_setup/{mysql4-upgrade-3.7.1-4.2.0.php → mysql4-upgrade-3.7.1-4.2.1.php} +0 -0
- app/code/community/Loginradius/Sociallogin/sql/sociallogin_setup/{mysql4-upgrade-3.7.2-4.2.0.php → mysql4-upgrade-3.7.2-4.2.1.php} +0 -0
- app/code/community/Loginradius/Sociallogin/sql/sociallogin_setup/{mysql4-upgrade-4.0.0-4.2.0.php → mysql4-upgrade-4.0.0-4.2.1.php} +0 -0
- app/code/community/Loginradius/Sociallogin/sql/sociallogin_setup/{mysql4-upgrade-4.1.0-4.2.0.php → mysql4-upgrade-4.1.0-4.2.1.php} +0 -0
- app/code/community/Loginradius/Sociallogin/sql/sociallogin_setup/mysql4-upgrade-4.2.0-4.2.1.php +17 -0
- app/design/adminhtml/default/default/layout/loginradius_sociallogin.xml +8 -7
- package.xml +5 -5
- skin/adminhtml/default/default/Loginradius/Sociallogin/js/jquery.js +0 -0
- skin/adminhtml/default/default/Loginradius/Sociallogin/js/jquery.noConflict.js +1 -0
app/code/community/Loginradius/Sociallogin/Helper/Loginhelper.php
CHANGED
@@ -368,6 +368,21 @@ class Loginradius_Sociallogin_Helper_Loginhelper extends Mage_Core_Helper_Abstra
|
|
368 |
}
|
369 |
}
|
370 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
371 |
$profileDataFiltered['Gender'] = (!empty($userObject->Gender) ? $userObject->Gender : '');
|
372 |
if (strtolower(substr($profileDataFiltered['Gender'], 0, 1)) == 'm') {
|
373 |
$profileDataFiltered['Gender'] = '1';
|
368 |
}
|
369 |
}
|
370 |
|
371 |
+
if (empty($profileDataFiltered['LastName'])) {
|
372 |
+
if (!empty($profileDataFiltered['FullName'])) {
|
373 |
+
$profileDataFiltered['LastName'] = $profileDataFiltered['FullName'];
|
374 |
+
} elseif (!empty($profileDataFiltered['ProfileName'])) {
|
375 |
+
$profileDataFiltered['LastName'] = $profileDataFiltered['ProfileName'];
|
376 |
+
} elseif (!empty($profileDataFiltered['NickName'])) {
|
377 |
+
$profileDataFiltered['LastName'] = $profileDataFiltered['NickName'];
|
378 |
+
} elseif (!empty($email)) {
|
379 |
+
$user_name = explode('@', $email);
|
380 |
+
$profileDataFiltered['LastName'] = str_replace("_", " ", $user_name[0]);
|
381 |
+
} else {
|
382 |
+
$profileDataFiltered['LastName'] = $userObject->ID;
|
383 |
+
}
|
384 |
+
}
|
385 |
+
|
386 |
$profileDataFiltered['Gender'] = (!empty($userObject->Gender) ? $userObject->Gender : '');
|
387 |
if (strtolower(substr($profileDataFiltered['Gender'], 0, 1)) == 'm') {
|
388 |
$profileDataFiltered['Gender'] = '1';
|
app/code/community/Loginradius/Sociallogin/Model/Observer.php
CHANGED
@@ -75,4 +75,18 @@ class Loginradius_Sociallogin_Model_Observer extends Mage_Core_Helper_Abstract
|
|
75 |
|
76 |
return $result;
|
77 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
}
|
75 |
|
76 |
return $result;
|
77 |
}
|
78 |
+
|
79 |
+
public function addCustomLayoutHandle(Varien_Event_Observer $observer)
|
80 |
+
{
|
81 |
+
$controllerAction = $observer->getEvent()->getAction();
|
82 |
+
$layout = $observer->getEvent()->getLayout();
|
83 |
+
if ($controllerAction && $layout && $controllerAction instanceof Mage_Adminhtml_System_ConfigController) {
|
84 |
+
if ($controllerAction->getRequest()->getParam('section') == 'sociallogin_options') {
|
85 |
+
$layout->getUpdate()->addHandle('sociallogin_custom_handle');
|
86 |
+
}
|
87 |
+
}
|
88 |
+
return $this;
|
89 |
+
}
|
90 |
+
|
91 |
+
|
92 |
}
|
app/code/community/Loginradius/Sociallogin/Model/System/Config/Info.php
CHANGED
@@ -144,7 +144,7 @@ class Loginradius_Sociallogin_Model_System_Config_Info extends Mage_Adminhtml_Bl
|
|
144 |
<li><a target="_blank" href="http://ish.re/8PG2">Discussion Forum</a></li>
|
145 |
<li><a target="_blank" href="http://ish.re/96M7">About LoginRadius</a></li>
|
146 |
<li><a target="_blank" href="http://ish.re/8PG8">Social Plugins</a></li>
|
147 |
-
<li><a target="_blank" href="http://ish.re/
|
148 |
</ul>
|
149 |
</fieldset>
|
150 |
<?php
|
144 |
<li><a target="_blank" href="http://ish.re/8PG2">Discussion Forum</a></li>
|
145 |
<li><a target="_blank" href="http://ish.re/96M7">About LoginRadius</a></li>
|
146 |
<li><a target="_blank" href="http://ish.re/8PG8">Social Plugins</a></li>
|
147 |
+
<li><a target="_blank" href="http://ish.re/C9F7">Social SDKs</a></li>
|
148 |
</ul>
|
149 |
</fieldset>
|
150 |
<?php
|
app/code/community/Loginradius/Sociallogin/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Loginradius_Sociallogin>
|
5 |
-
<version>4.2.
|
6 |
</Loginradius_Sociallogin>
|
7 |
</modules>
|
8 |
<frontend>
|
@@ -106,6 +106,16 @@
|
|
106 |
</observers>
|
107 |
</model_config_data_save_before>
|
108 |
</events>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
<helpers>
|
110 |
<sociallogin>
|
111 |
<class>Loginradius_Sociallogin_Helper_admin_Adminhelper</class>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Loginradius_Sociallogin>
|
5 |
+
<version>4.2.1</version>
|
6 |
</Loginradius_Sociallogin>
|
7 |
</modules>
|
8 |
<frontend>
|
106 |
</observers>
|
107 |
</model_config_data_save_before>
|
108 |
</events>
|
109 |
+
<events>
|
110 |
+
<controller_action_layout_load_before>
|
111 |
+
<observers>
|
112 |
+
<sociallogin_observer>
|
113 |
+
<class>sociallogin/Observer</class>
|
114 |
+
<method>addCustomLayoutHandle</method>
|
115 |
+
</sociallogin_observer>
|
116 |
+
</observers>
|
117 |
+
</controller_action_layout_load_before>
|
118 |
+
</events>
|
119 |
<helpers>
|
120 |
<sociallogin>
|
121 |
<class>Loginradius_Sociallogin_Helper_admin_Adminhelper</class>
|
app/code/community/Loginradius/Sociallogin/sql/sociallogin_setup/{mysql4-install-4.2.0.php → mysql4-install-4.2.1.php}
RENAMED
File without changes
|
app/code/community/Loginradius/Sociallogin/sql/sociallogin_setup/{mysql4-upgrade-3.7.1-4.2.0.php → mysql4-upgrade-3.7.1-4.2.1.php}
RENAMED
File without changes
|
app/code/community/Loginradius/Sociallogin/sql/sociallogin_setup/{mysql4-upgrade-3.7.2-4.2.0.php → mysql4-upgrade-3.7.2-4.2.1.php}
RENAMED
File without changes
|
app/code/community/Loginradius/Sociallogin/sql/sociallogin_setup/{mysql4-upgrade-4.0.0-4.2.0.php → mysql4-upgrade-4.0.0-4.2.1.php}
RENAMED
File without changes
|
app/code/community/Loginradius/Sociallogin/sql/sociallogin_setup/{mysql4-upgrade-4.1.0-4.2.0.php → mysql4-upgrade-4.1.0-4.2.1.php}
RENAMED
File without changes
|
app/code/community/Loginradius/Sociallogin/sql/sociallogin_setup/mysql4-upgrade-4.2.0-4.2.1.php
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
$installer = $this;
|
3 |
+
$installer->startSetup();
|
4 |
+
$installer->run(
|
5 |
+
"
|
6 |
+
CREATE TABLE IF NOT EXISTS {$this->getTable('sociallogin')} (
|
7 |
+
`sociallogin_id` varchar(200) default NULL,
|
8 |
+
`entity_id` int(11) default NULL,
|
9 |
+
`avatar` varchar(1000) default NULL,
|
10 |
+
`verified` enum('0','1') default NULL,
|
11 |
+
`vkey` varchar(40) default NULL,
|
12 |
+
`provider` varchar(20) default NULL
|
13 |
+
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
14 |
+
"
|
15 |
+
);
|
16 |
+
$installer->run("alter table {$this->getTable('sociallogin')} modify `sociallogin_id` varchar(200) default NULL");
|
17 |
+
$installer->endSetup();
|
app/design/adminhtml/default/default/layout/loginradius_sociallogin.xml
CHANGED
@@ -1,11 +1,12 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
-
<layout version="
|
3 |
-
<
|
4 |
<reference name="head">
|
5 |
-
<action method="
|
6 |
-
<action method="
|
7 |
-
<action method="
|
8 |
-
<action method="
|
|
|
9 |
</reference>
|
10 |
-
</
|
11 |
</layout>
|
1 |
<?xml version="1.0"?>
|
2 |
+
<layout version="1.0.0">
|
3 |
+
<sociallogin_custom_handle>
|
4 |
<reference name="head">
|
5 |
+
<action method="addItem"><type>skin_js</type><name>Loginradius/Sociallogin/js/jquery.js</name><params/></action>
|
6 |
+
<action method="addItem"><type>skin_js</type><name>Loginradius/Sociallogin/js/jquery.noConflict.js</name><params/></action>
|
7 |
+
<action method="addItem"><type>skin_js</type><name>Loginradius/Sociallogin/js/jquery.ui.sortable.min.js</name><params/></action>
|
8 |
+
<action method="addItem"><type>skin_js</type><name>Loginradius/Sociallogin/js/admin-ui.js</name><params/></action>
|
9 |
+
<action method="addItem"><type>skin_css</type><name>Loginradius/Sociallogin/css/admin-ui.css</name><params/></action>
|
10 |
</reference>
|
11 |
+
</sociallogin_custom_handle>
|
12 |
</layout>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>LoginRadius</name>
|
4 |
-
<version>4.2.
|
5 |
<stability>stable</stability>
|
6 |
<license>GNU General Public License (GPL)</license>
|
7 |
<channel>community</channel>
|
@@ -10,9 +10,9 @@
|
|
10 |
<description>Add Social Login and Social Share to your Magento website and also get accurate User Profile Data and Social Analytics.</description>
|
11 |
<notes>Social Login and Social Share for Magento</notes>
|
12 |
<authors><author><name>LoginRadius Team</name><user>LoginRadius</user><email>developers@loginradius.com</email></author></authors>
|
13 |
-
<date>2015-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magecommunity"><dir name="Loginradius"><dir name="Sociallogin"><dir name="Block"><file name="Auth.php" hash="b19bd173c73bc378cb7538a5eca674db"/><file name="Horizontalsharing.php" hash="3713675479e57166b26a6174899d8c45"/><file name="Sociallogin.php" hash="d0c4fe1c7c6dad02ebaf35fa0922b6ab"/><file name="Socialsharing.php" hash="0c2feef7550ad0d98f6b356077a4ba9e"/><file name="Verticalsharing.php" hash="c9b06bf1c7e2112caddeef92bd393b30"/></dir><dir name="Helper"><file name="Data.php" hash="b8823bc8c1e74269d2ec79a6a1fa53e2"/><file name="Loginhelper.php" hash="cce833c4a35927ed38f1747f36ff864f"/><file name="Loginradiussdk.php" hash="fc3f0f459d644bd8e02e395c8ee74cf1"/></dir><dir name="Model"><file name="Observer.php" hash="9534e40fdae5503950b39516ceec066c"/><dir name="Source"><file name="HorizontalSharing.php" hash="ef8b65ade59f872e505332fcd037f3f6"/><file name="Iconsize.php" hash="0ca612f395f4c4e6594af40d82a1d348"/><file name="LoginPopup.php" hash="c9cf8733dd7ea86550e5f87959343126"/><file name="SharingVerticalAlignment.php" hash="83db29fc20525218156176077519b040"/><file name="TwitterRecipients.php" hash="bcb80e9a53354a553244ea3d565085b5"/><file name="Uihover.php" hash="74041c8cc5c0259770c39bec881799c0"/><file name="VerticalSharing.php" hash="2c8dff8846941dd95ecb53e366fe287e"/></dir><dir name="System"><dir name="Config"><file name="Info.php" hash="33f58cfd122dd1246a29c5f1963a1763"/></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="fd04c978c752114738b364ff2f39f81f"/></dir><dir name="etc"><file name="config.xml" hash="0613462aa13eefeddc5130f817afe0ee"/><file name="system.xml" hash="60249f8a2d9cd88fe4b2eeabf11a6adf"/><file name="widget.xml" hash="f6e8a254aa3a9ff86f958710c4e8edca"/></dir><dir name="sql"><dir name="sociallogin_setup"><file name="mysql4-install-4.2.0.php" hash="4a0e9043a38af9970f4ed55f8e6762c9"/><file name="mysql4-upgrade-3.7.1-4.2.0.php" hash="4a0e9043a38af9970f4ed55f8e6762c9"/><file name="mysql4-upgrade-3.7.2-4.2.0.php" hash="4a0e9043a38af9970f4ed55f8e6762c9"/><file name="mysql4-upgrade-4.0.0-4.2.0.php" hash="4a0e9043a38af9970f4ed55f8e6762c9"/><file name="mysql4-upgrade-4.1.0-4.2.0.php" hash="4a0e9043a38af9970f4ed55f8e6762c9"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Loginradius_Sociallogin.xml" hash="20cb11d66b0f486ebca4b8deedacc86b"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="loginradius_sociallogin.xml" hash="86b4e183c723dc96e13ee28198a36bc8"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="sociallogin.xml" hash="dcc24b2735bf4a240ca8916a597b8157"/></dir><dir name="template"><dir name="sociallogin"><file name="abovelogin.phtml" hash="d0ef7a79dac876ae14fcf1f0b838f215"/><file name="aboveregister.phtml" hash="f2cf9967267917c0116d9088b117e58f"/><file name="belowlogin.phtml" hash="4bfae009a6e1b1a9c36a2de031269623"/><file name="belowregister.phtml" hash="b75a87b979719e81a165aba5f83d2277"/><file name="linking.phtml" hash="6cafc097b8d23cab626c5b1f745a0314"/><file name="popup.phtml" hash="4e5305b1edff6073528d870ba372bd13"/><file name="popupscript.phtml" hash="64323c1a52b45987c5e4e9f70a4402e5"/><file name="sociallogin.phtml" hash="ed8f2bfa0adfc632afc9d47e50faacf8"/><file name="sociallogin_head.phtml" hash="90f31d8be1b38b8aa2aefbe1d5b921e2"/><file name="sociallogincustom.phtml" hash="e66b8b4049df01d1865dd2fa8b1e7876"/><file name="socialshare_head.phtml" hash="0b78b9f4451cb295de0a49ebaebb1abd"/><file name="socialshareproduct.phtml" hash="6c8049790baf1110aa40eadfa14c1bb8"/><file name="socialsharesuccess.phtml" hash="4f6b476cbd3af099507e39e5abdb530e"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="Loginradius"><dir name="Sociallogin"><dir name="css"><file name="admin-ui.css" hash="78bba6098eeeb6e9f39edfdf41ee0b11"/></dir><dir name="images"><dir name="Linking"><file name="amazon.png" hash="961d0082ed4b433d8e0274c133072e2c"/><file name="aol.png" hash="4e51f60c1b8750c5b9dfa94f56fe13b1"/><file name="facebook.png" hash="141309628c58912076f00954b3fd19a6"/><file name="foursquare.png" hash="de2f4fcf5b3c1156f22ed546f5c3f0c5"/><file name="github.png" hash="45f8e1436fc5c5803ed9d4edb7cb59b6"/><file name="google.png" hash="ffeddc7d14c9b4de2efb6b8ea0f5f652"/><file name="hyves.png" hash="3c77fd2243b22c61915a950c3910f37c"/><file name="kaixin.png" hash="bc84991a5c9d15e20946fae5e9c27f4d"/><file name="linkedin.png" hash="7a9bc12ec91ab2a30442c56a9f70e9ea"/><file name="live.png" hash="9d747bae72fc0f2e3a04f32896d62fbc"/><file name="livejournal.png" hash="e21f34630444412ab3dd197884e0c2e6"/><file name="mixi.png" hash="909e7edc76e59b448d56043eee5e1412"/><file name="myopenid.png" hash="c8295969044cb9d99f8348091ba75319"/><file name="myspace.png" hash="42cd07decb5f4a1fba604ef8df32ef2e"/><file name="odnoklassniki.png" hash="34cd7d239583b015cdd1adb5b7fec085"/><file name="openid.png" hash="92bd4471ef1d5dd04855887806db74f0"/><file name="orange.png" hash="9b9b8f2da956a238e7d58c241423af8a"/><file name="paypal.png" hash="082f0b50411b1dfb1bfd86cfdeb92cea"/><file name="persona.png" hash="e0d926f89e9c428aece1e0f9dbb1f8f2"/><file name="qq.png" hash="8e6dc34bdf03f07277e0aadf8706a4a7"/><file name="renren.png" hash="040a0af8119b7f85bfc2df41ec56f915"/><file name="salesforce.png" hash="e41bcac63438bb04af3a9745b816a675"/><file name="stackexchange.png" hash="8ab952fe75d4a96d6752792ffdcbf0c3"/><file name="steamcommunity.png" hash="ad05c57a4ee01ebc01428b0da905d6b6"/><file name="twitter.png" hash="48044aca3a1d4864361f78c02ba86848"/><file name="verisign.png" hash="7a15fd820171218d803d26e7a3ec46a3"/><file name="virgilio.png" hash="f5c3b6e19c38903a192954934000f60a"/><file name="vkontakte.png" hash="ae1e98911fe9ea6da8a50a568c082133"/><file name="wordpress.png" hash="8ce8b46a2233b8497dd10d9c4d535e22"/><file name="yahoo.png" hash="5c159cc8fed73621b2c12600f8dac288"/></dir><dir name="Sharing"><dir name="Horizontal"><file name="horizonSharing16.png" hash="0fad94b8e4a3e44a2e14f81a2ee04041"/><file name="horizonSharing32.png" hash="561208c81d7cd9d3500e3c460a8a5c49"/><file name="horizontal.png" hash="628fb90190ea3ded7b1f384662ce8153"/><file name="responsive-icons.png" hash="f792ba85bf94a6cf05329d5a9a4087b5"/><file name="single-image-theme-large.png" hash="e6ff4a26149b631639b601d95e2dc361"/><file name="single-image-theme-small.png" hash="8c2b20fa0f276e33f3876783eb2cbd74"/><file name="vertical.png" hash="81e8591ec1216ffaa22430e86431bf15"/></dir><dir name="Vertical"><file name="16VerticlewithBox.png" hash="73b3abf54889144e9188ffaa76cbb11f"/><file name="32VerticlewithBox.png" hash="37060e164ca4f7c00f430d5f1ab7eddd"/><file name="verticalhorizontal.png" hash="0f4729083e85894d126a7c5202b18465"/><file name="verticalvertical.png" hash="fbbcf59f5e1c121d34073e4769048ff4"/></dir></dir><dir name="media-pages"><file name="Thumbs.db" hash="2bf832cc35446fe90ae3b62f3d1d6044"/><file name="facebook.png" hash="206f9ea5a7374595f0d8dc94a713eb01"/><file name="google.png" hash="aeb7ef22d42ef585b133f4f6f9332996"/><file name="linkedin.png" hash="30428fd794b1d4444891a987b76080df"/><file name="twitter.png" hash="ebab12206bed415ea082231ed2d5c3b9"/><file name="youtube.png" hash="a78066dee928ad36762b83a29cdea932"/></dir></dir><dir name="js"><file name="admin-ui.js" hash="5684b24482733c990195c4c4d3524927"/><file name="jquery.js" hash="5654b0561c66ca9c0ad2a1dd75e5d9b8"/><file name="jquery.ui.sortable.min.js" hash="b847eafb05bcc6ef0908ff07dcd2b0f1"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="Loginradius"><dir name="Sociallogin"><dir name="css"><file name="popup.css" hash="b0c7d630e5cabf477a58172d534efb67"/></dir><dir name="images"><dir name="Linking"><file name="amazon.png" hash="961d0082ed4b433d8e0274c133072e2c"/><file name="aol.png" hash="4e51f60c1b8750c5b9dfa94f56fe13b1"/><file name="facebook.png" hash="141309628c58912076f00954b3fd19a6"/><file name="foursquare.png" hash="de2f4fcf5b3c1156f22ed546f5c3f0c5"/><file name="github.png" hash="45f8e1436fc5c5803ed9d4edb7cb59b6"/><file name="google.png" hash="ffeddc7d14c9b4de2efb6b8ea0f5f652"/><file name="hyves.png" hash="3c77fd2243b22c61915a950c3910f37c"/><file name="kaixin.png" hash="bc84991a5c9d15e20946fae5e9c27f4d"/><file name="linkedin.png" hash="7a9bc12ec91ab2a30442c56a9f70e9ea"/><file name="live.png" hash="9d747bae72fc0f2e3a04f32896d62fbc"/><file name="livejournal.png" hash="e21f34630444412ab3dd197884e0c2e6"/><file name="mixi.png" hash="909e7edc76e59b448d56043eee5e1412"/><file name="myopenid.png" hash="c8295969044cb9d99f8348091ba75319"/><file name="myspace.png" hash="42cd07decb5f4a1fba604ef8df32ef2e"/><file name="odnoklassniki.png" hash="34cd7d239583b015cdd1adb5b7fec085"/><file name="openid.png" hash="92bd4471ef1d5dd04855887806db74f0"/><file name="orange.png" hash="9b9b8f2da956a238e7d58c241423af8a"/><file name="paypal.png" hash="082f0b50411b1dfb1bfd86cfdeb92cea"/><file name="persona.png" hash="e0d926f89e9c428aece1e0f9dbb1f8f2"/><file name="qq.png" hash="8e6dc34bdf03f07277e0aadf8706a4a7"/><file name="renren.png" hash="040a0af8119b7f85bfc2df41ec56f915"/><file name="salesforce.png" hash="e41bcac63438bb04af3a9745b816a675"/><file name="stackexchange.png" hash="8ab952fe75d4a96d6752792ffdcbf0c3"/><file name="steamcommunity.png" hash="ad05c57a4ee01ebc01428b0da905d6b6"/><file name="twitter.png" hash="48044aca3a1d4864361f78c02ba86848"/><file name="verisign.png" hash="7a15fd820171218d803d26e7a3ec46a3"/><file name="virgilio.png" hash="f5c3b6e19c38903a192954934000f60a"/><file name="vkontakte.png" hash="ae1e98911fe9ea6da8a50a568c082133"/><file name="wordpress.png" hash="8ce8b46a2233b8497dd10d9c4d535e22"/><file name="yahoo.png" hash="5c159cc8fed73621b2c12600f8dac288"/></dir></dir><dir name="js"><file name="LoginRadiusSDK.js" hash="4bcc695e646cca3e0775e8279dfd773b"/><file name="jquery.js" hash="5654b0561c66ca9c0ad2a1dd75e5d9b8"/><file name="jquery.ui.sortable.min.js" hash="b847eafb05bcc6ef0908ff07dcd2b0f1"/><file name="popup.js" hash="8459298049f4a6c6303144573db82ace"/></dir></dir></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
-
<dependencies><required><php><min>5.1.0</min><max>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>LoginRadius</name>
|
4 |
+
<version>4.2.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>GNU General Public License (GPL)</license>
|
7 |
<channel>community</channel>
|
10 |
<description>Add Social Login and Social Share to your Magento website and also get accurate User Profile Data and Social Analytics.</description>
|
11 |
<notes>Social Login and Social Share for Magento</notes>
|
12 |
<authors><author><name>LoginRadius Team</name><user>LoginRadius</user><email>developers@loginradius.com</email></author></authors>
|
13 |
+
<date>2015-05-27</date>
|
14 |
+
<time>13:48:04</time>
|
15 |
+
<contents><target name="magecommunity"><dir name="Loginradius"><dir name="Sociallogin"><dir name="Block"><file name="Auth.php" hash="b19bd173c73bc378cb7538a5eca674db"/><file name="Horizontalsharing.php" hash="3713675479e57166b26a6174899d8c45"/><file name="Sociallogin.php" hash="d0c4fe1c7c6dad02ebaf35fa0922b6ab"/><file name="Socialsharing.php" hash="0c2feef7550ad0d98f6b356077a4ba9e"/><file name="Verticalsharing.php" hash="c9b06bf1c7e2112caddeef92bd393b30"/></dir><dir name="Helper"><file name="Data.php" hash="b8823bc8c1e74269d2ec79a6a1fa53e2"/><file name="Loginhelper.php" hash="55f2c67ec6a5d72021d798f549907929"/><file name="Loginradiussdk.php" hash="fc3f0f459d644bd8e02e395c8ee74cf1"/></dir><dir name="Model"><file name="Observer.php" hash="9e927b3949366a9522bac0d7ee1e3df0"/><dir name="Source"><file name="HorizontalSharing.php" hash="ef8b65ade59f872e505332fcd037f3f6"/><file name="Iconsize.php" hash="0ca612f395f4c4e6594af40d82a1d348"/><file name="LoginPopup.php" hash="c9cf8733dd7ea86550e5f87959343126"/><file name="SharingVerticalAlignment.php" hash="83db29fc20525218156176077519b040"/><file name="TwitterRecipients.php" hash="bcb80e9a53354a553244ea3d565085b5"/><file name="Uihover.php" hash="74041c8cc5c0259770c39bec881799c0"/><file name="VerticalSharing.php" hash="2c8dff8846941dd95ecb53e366fe287e"/></dir><dir name="System"><dir name="Config"><file name="Info.php" hash="6a67aa75daf8819a8ce1d76b4c6a989a"/></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="fd04c978c752114738b364ff2f39f81f"/></dir><dir name="etc"><file name="config.xml" hash="094ec424eed823b1126ab5542db601d6"/><file name="system.xml" hash="60249f8a2d9cd88fe4b2eeabf11a6adf"/><file name="widget.xml" hash="f6e8a254aa3a9ff86f958710c4e8edca"/></dir><dir name="sql"><dir name="sociallogin_setup"><file name="mysql4-install-4.2.1.php" hash="4a0e9043a38af9970f4ed55f8e6762c9"/><file name="mysql4-upgrade-3.7.1-4.2.1.php" hash="4a0e9043a38af9970f4ed55f8e6762c9"/><file name="mysql4-upgrade-3.7.2-4.2.1.php" hash="4a0e9043a38af9970f4ed55f8e6762c9"/><file name="mysql4-upgrade-4.0.0-4.2.1.php" hash="4a0e9043a38af9970f4ed55f8e6762c9"/><file name="mysql4-upgrade-4.1.0-4.2.1.php" hash="4a0e9043a38af9970f4ed55f8e6762c9"/><file name="mysql4-upgrade-4.2.0-4.2.1.php" hash="4a0e9043a38af9970f4ed55f8e6762c9"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Loginradius_Sociallogin.xml" hash="20cb11d66b0f486ebca4b8deedacc86b"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="loginradius_sociallogin.xml" hash="d6bd13c949e135e388994fd77f1690ef"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="sociallogin.xml" hash="dcc24b2735bf4a240ca8916a597b8157"/></dir><dir name="template"><dir name="sociallogin"><file name="abovelogin.phtml" hash="d0ef7a79dac876ae14fcf1f0b838f215"/><file name="aboveregister.phtml" hash="f2cf9967267917c0116d9088b117e58f"/><file name="belowlogin.phtml" hash="4bfae009a6e1b1a9c36a2de031269623"/><file name="belowregister.phtml" hash="b75a87b979719e81a165aba5f83d2277"/><file name="linking.phtml" hash="6cafc097b8d23cab626c5b1f745a0314"/><file name="popup.phtml" hash="4e5305b1edff6073528d870ba372bd13"/><file name="popupscript.phtml" hash="64323c1a52b45987c5e4e9f70a4402e5"/><file name="sociallogin.phtml" hash="ed8f2bfa0adfc632afc9d47e50faacf8"/><file name="sociallogin_head.phtml" hash="90f31d8be1b38b8aa2aefbe1d5b921e2"/><file name="sociallogincustom.phtml" hash="e66b8b4049df01d1865dd2fa8b1e7876"/><file name="socialshare_head.phtml" hash="0b78b9f4451cb295de0a49ebaebb1abd"/><file name="socialshareproduct.phtml" hash="6c8049790baf1110aa40eadfa14c1bb8"/><file name="socialsharesuccess.phtml" hash="4f6b476cbd3af099507e39e5abdb530e"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="Loginradius"><dir name="Sociallogin"><dir name="css"><file name="admin-ui.css" hash="78bba6098eeeb6e9f39edfdf41ee0b11"/></dir><dir name="images"><dir name="Linking"><file name="amazon.png" hash="961d0082ed4b433d8e0274c133072e2c"/><file name="aol.png" hash="4e51f60c1b8750c5b9dfa94f56fe13b1"/><file name="facebook.png" hash="141309628c58912076f00954b3fd19a6"/><file name="foursquare.png" hash="de2f4fcf5b3c1156f22ed546f5c3f0c5"/><file name="github.png" hash="45f8e1436fc5c5803ed9d4edb7cb59b6"/><file name="google.png" hash="ffeddc7d14c9b4de2efb6b8ea0f5f652"/><file name="hyves.png" hash="3c77fd2243b22c61915a950c3910f37c"/><file name="kaixin.png" hash="bc84991a5c9d15e20946fae5e9c27f4d"/><file name="linkedin.png" hash="7a9bc12ec91ab2a30442c56a9f70e9ea"/><file name="live.png" hash="9d747bae72fc0f2e3a04f32896d62fbc"/><file name="livejournal.png" hash="e21f34630444412ab3dd197884e0c2e6"/><file name="mixi.png" hash="909e7edc76e59b448d56043eee5e1412"/><file name="myopenid.png" hash="c8295969044cb9d99f8348091ba75319"/><file name="myspace.png" hash="42cd07decb5f4a1fba604ef8df32ef2e"/><file name="odnoklassniki.png" hash="34cd7d239583b015cdd1adb5b7fec085"/><file name="openid.png" hash="92bd4471ef1d5dd04855887806db74f0"/><file name="orange.png" hash="9b9b8f2da956a238e7d58c241423af8a"/><file name="paypal.png" hash="082f0b50411b1dfb1bfd86cfdeb92cea"/><file name="persona.png" hash="e0d926f89e9c428aece1e0f9dbb1f8f2"/><file name="qq.png" hash="8e6dc34bdf03f07277e0aadf8706a4a7"/><file name="renren.png" hash="040a0af8119b7f85bfc2df41ec56f915"/><file name="salesforce.png" hash="e41bcac63438bb04af3a9745b816a675"/><file name="stackexchange.png" hash="8ab952fe75d4a96d6752792ffdcbf0c3"/><file name="steamcommunity.png" hash="ad05c57a4ee01ebc01428b0da905d6b6"/><file name="twitter.png" hash="48044aca3a1d4864361f78c02ba86848"/><file name="verisign.png" hash="7a15fd820171218d803d26e7a3ec46a3"/><file name="virgilio.png" hash="f5c3b6e19c38903a192954934000f60a"/><file name="vkontakte.png" hash="ae1e98911fe9ea6da8a50a568c082133"/><file name="wordpress.png" hash="8ce8b46a2233b8497dd10d9c4d535e22"/><file name="yahoo.png" hash="5c159cc8fed73621b2c12600f8dac288"/></dir><dir name="Sharing"><dir name="Horizontal"><file name="horizonSharing16.png" hash="0fad94b8e4a3e44a2e14f81a2ee04041"/><file name="horizonSharing32.png" hash="561208c81d7cd9d3500e3c460a8a5c49"/><file name="horizontal.png" hash="628fb90190ea3ded7b1f384662ce8153"/><file name="responsive-icons.png" hash="f792ba85bf94a6cf05329d5a9a4087b5"/><file name="single-image-theme-large.png" hash="e6ff4a26149b631639b601d95e2dc361"/><file name="single-image-theme-small.png" hash="8c2b20fa0f276e33f3876783eb2cbd74"/><file name="vertical.png" hash="81e8591ec1216ffaa22430e86431bf15"/></dir><dir name="Vertical"><file name="16VerticlewithBox.png" hash="73b3abf54889144e9188ffaa76cbb11f"/><file name="32VerticlewithBox.png" hash="37060e164ca4f7c00f430d5f1ab7eddd"/><file name="verticalhorizontal.png" hash="0f4729083e85894d126a7c5202b18465"/><file name="verticalvertical.png" hash="fbbcf59f5e1c121d34073e4769048ff4"/></dir></dir><dir name="media-pages"><file name="Thumbs.db" hash="2bf832cc35446fe90ae3b62f3d1d6044"/><file name="facebook.png" hash="206f9ea5a7374595f0d8dc94a713eb01"/><file name="google.png" hash="aeb7ef22d42ef585b133f4f6f9332996"/><file name="linkedin.png" hash="30428fd794b1d4444891a987b76080df"/><file name="twitter.png" hash="ebab12206bed415ea082231ed2d5c3b9"/><file name="youtube.png" hash="a78066dee928ad36762b83a29cdea932"/></dir></dir><dir name="js"><file name="admin-ui.js" hash="5684b24482733c990195c4c4d3524927"/><file name="jquery.js" hash="d05a3f47f076f2e0d1fc948d8d94d58d"/><file name="jquery.noConflict.js" hash="3179f2255b046d5f2e9a71e365287bef"/><file name="jquery.ui.sortable.min.js" hash="b847eafb05bcc6ef0908ff07dcd2b0f1"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="Loginradius"><dir name="Sociallogin"><dir name="css"><file name="popup.css" hash="b0c7d630e5cabf477a58172d534efb67"/></dir><dir name="images"><dir name="Linking"><file name="amazon.png" hash="961d0082ed4b433d8e0274c133072e2c"/><file name="aol.png" hash="4e51f60c1b8750c5b9dfa94f56fe13b1"/><file name="facebook.png" hash="141309628c58912076f00954b3fd19a6"/><file name="foursquare.png" hash="de2f4fcf5b3c1156f22ed546f5c3f0c5"/><file name="github.png" hash="45f8e1436fc5c5803ed9d4edb7cb59b6"/><file name="google.png" hash="ffeddc7d14c9b4de2efb6b8ea0f5f652"/><file name="hyves.png" hash="3c77fd2243b22c61915a950c3910f37c"/><file name="kaixin.png" hash="bc84991a5c9d15e20946fae5e9c27f4d"/><file name="linkedin.png" hash="7a9bc12ec91ab2a30442c56a9f70e9ea"/><file name="live.png" hash="9d747bae72fc0f2e3a04f32896d62fbc"/><file name="livejournal.png" hash="e21f34630444412ab3dd197884e0c2e6"/><file name="mixi.png" hash="909e7edc76e59b448d56043eee5e1412"/><file name="myopenid.png" hash="c8295969044cb9d99f8348091ba75319"/><file name="myspace.png" hash="42cd07decb5f4a1fba604ef8df32ef2e"/><file name="odnoklassniki.png" hash="34cd7d239583b015cdd1adb5b7fec085"/><file name="openid.png" hash="92bd4471ef1d5dd04855887806db74f0"/><file name="orange.png" hash="9b9b8f2da956a238e7d58c241423af8a"/><file name="paypal.png" hash="082f0b50411b1dfb1bfd86cfdeb92cea"/><file name="persona.png" hash="e0d926f89e9c428aece1e0f9dbb1f8f2"/><file name="qq.png" hash="8e6dc34bdf03f07277e0aadf8706a4a7"/><file name="renren.png" hash="040a0af8119b7f85bfc2df41ec56f915"/><file name="salesforce.png" hash="e41bcac63438bb04af3a9745b816a675"/><file name="stackexchange.png" hash="8ab952fe75d4a96d6752792ffdcbf0c3"/><file name="steamcommunity.png" hash="ad05c57a4ee01ebc01428b0da905d6b6"/><file name="twitter.png" hash="48044aca3a1d4864361f78c02ba86848"/><file name="verisign.png" hash="7a15fd820171218d803d26e7a3ec46a3"/><file name="virgilio.png" hash="f5c3b6e19c38903a192954934000f60a"/><file name="vkontakte.png" hash="ae1e98911fe9ea6da8a50a568c082133"/><file name="wordpress.png" hash="8ce8b46a2233b8497dd10d9c4d535e22"/><file name="yahoo.png" hash="5c159cc8fed73621b2c12600f8dac288"/></dir></dir><dir name="js"><file name="LoginRadiusSDK.js" hash="4bcc695e646cca3e0775e8279dfd773b"/><file name="jquery.js" hash="5654b0561c66ca9c0ad2a1dd75e5d9b8"/><file name="jquery.ui.sortable.min.js" hash="b847eafb05bcc6ef0908ff07dcd2b0f1"/><file name="popup.js" hash="8459298049f4a6c6303144573db82ace"/></dir></dir></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
+
<dependencies><required><php><min>5.1.0</min><max>10.0.0</max></php></required></dependencies>
|
18 |
</package>
|
skin/adminhtml/default/default/Loginradius/Sociallogin/js/jquery.js
CHANGED
Binary file
|
skin/adminhtml/default/default/Loginradius/Sociallogin/js/jquery.noConflict.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
jQuery.noConflict();
|