Version Notes
- Added built-in support of world's best selling Magento themes: Blanco, BuyShop, Milano, Black&White, Venedor
- Improved authorization and registration process, now page with social login buttons loads faster
- Improved display of customers photo from social networks in Magento CE version 1.8.1 and lower, as well as on some third party themes
- Fixed issue with displaying incorrect gender data after registration
Download this release
Release Info
Developer | Plumrocket Team |
Extension | Plumrocket_Twitter_Facebook_Login |
Version | 1.4.1 |
Comparing to | |
See all releases |
Code changes from version 1.4.0 to 1.4.1
- app/code/community/Plumrocket/SocialLogin/Model/Facebook.php +24 -21
- app/code/community/Plumrocket/SocialLogin/etc/adminhtml.xml +10 -0
- app/code/community/Plumrocket/SocialLogin/etc/config.xml +1 -1
- app/code/community/Plumrocket/SocialLogin/etc/system.xml +72 -52
- app/design/adminhtml/default/default/layout/pslogin.xml +7 -3
- app/design/frontend/base/default/layout/pslogin.xml +0 -6
- app/design/frontend/base/default/template/pslogin/footer.phtml +0 -21
- app/etc/modules/Plumrocket_SocialLogin.xml +1 -1
- package.xml +8 -8
- skin/adminhtml/default/default/css/plumrocket/pslogin/pslogin.css +3 -1
- skin/adminhtml/default/default/images/plumrocket/pslogin/social_admin.png +0 -0
- skin/frontend/base/default/css/plumrocket/pslogin/pslogin.css +5 -1
- skin/frontend/base/default/images/plumrocket/pslogin/social.png +0 -0
- skin/frontend/base/default/images/plumrocket/pslogin/social_retina.png +0 -0
app/code/community/Plumrocket/SocialLogin/Model/Facebook.php
CHANGED
@@ -18,28 +18,28 @@
|
|
18 |
|
19 |
class Plumrocket_SocialLogin_Model_Facebook extends Plumrocket_SocialLogin_Model_Account
|
20 |
{
|
21 |
-
|
22 |
|
23 |
protected $_url = 'https://www.facebook.com/dialog/oauth';
|
24 |
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
'gender' => 'gender',
|
32 |
'photo' => 'picture',
|
33 |
-
|
34 |
|
35 |
-
|
36 |
-
|
37 |
'display' => 'popup',
|
38 |
-
|
39 |
|
40 |
protected $_popupSize = array(650, 350);
|
41 |
|
42 |
-
|
43 |
{
|
44 |
parent::_construct();
|
45 |
|
@@ -56,9 +56,9 @@ class Plumrocket_SocialLogin_Model_Facebook extends Plumrocket_SocialLogin_Model
|
|
56 |
|
57 |
public function loadUserData($response)
|
58 |
{
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
|
63 |
$data = array();
|
64 |
|
@@ -70,8 +70,11 @@ class Plumrocket_SocialLogin_Model_Facebook extends Plumrocket_SocialLogin_Model
|
|
70 |
);
|
71 |
|
72 |
$token = null;
|
73 |
-
if($response = $this->_call('https://graph.facebook.com/oauth/access_token', $params)) {
|
74 |
-
|
|
|
|
|
|
|
75 |
}
|
76 |
$this->_setLog($response, true);
|
77 |
$this->_setLog($token, true);
|
@@ -94,7 +97,7 @@ class Plumrocket_SocialLogin_Model_Facebook extends Plumrocket_SocialLogin_Model
|
|
94 |
}
|
95 |
|
96 |
if(!$this->_userData = $this->_prepareData($data)) {
|
97 |
-
|
98 |
}
|
99 |
|
100 |
$this->_setLog($this->_userData, true);
|
@@ -104,9 +107,9 @@ class Plumrocket_SocialLogin_Model_Facebook extends Plumrocket_SocialLogin_Model
|
|
104 |
|
105 |
protected function _prepareData($data)
|
106 |
{
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
|
111 |
return parent::_prepareData($data);
|
112 |
}
|
18 |
|
19 |
class Plumrocket_SocialLogin_Model_Facebook extends Plumrocket_SocialLogin_Model_Account
|
20 |
{
|
21 |
+
protected $_type = 'facebook';
|
22 |
|
23 |
protected $_url = 'https://www.facebook.com/dialog/oauth';
|
24 |
|
25 |
+
protected $_fields = array(
|
26 |
+
'user_id' => 'id',
|
27 |
+
'firstname' => 'first_name',
|
28 |
+
'lastname' => 'last_name',
|
29 |
+
'email' => 'email',
|
30 |
+
'dob' => 'birthday',
|
31 |
'gender' => 'gender',
|
32 |
'photo' => 'picture',
|
33 |
+
);
|
34 |
|
35 |
+
protected $_buttonLinkParams = array(
|
36 |
+
'scope' => 'email',
|
37 |
'display' => 'popup',
|
38 |
+
);
|
39 |
|
40 |
protected $_popupSize = array(650, 350);
|
41 |
|
42 |
+
public function _construct()
|
43 |
{
|
44 |
parent::_construct();
|
45 |
|
56 |
|
57 |
public function loadUserData($response)
|
58 |
{
|
59 |
+
if(empty($response)) {
|
60 |
+
return false;
|
61 |
+
}
|
62 |
|
63 |
$data = array();
|
64 |
|
70 |
);
|
71 |
|
72 |
$token = null;
|
73 |
+
if ($response = $this->_call('https://graph.facebook.com/oauth/access_token', $params)) {
|
74 |
+
$token = @json_decode($response, true);
|
75 |
+
if (!$token) {
|
76 |
+
parse_str($response, $token);
|
77 |
+
}
|
78 |
}
|
79 |
$this->_setLog($response, true);
|
80 |
$this->_setLog($token, true);
|
97 |
}
|
98 |
|
99 |
if(!$this->_userData = $this->_prepareData($data)) {
|
100 |
+
return false;
|
101 |
}
|
102 |
|
103 |
$this->_setLog($this->_userData, true);
|
107 |
|
108 |
protected function _prepareData($data)
|
109 |
{
|
110 |
+
if(empty($data['id'])) {
|
111 |
+
return false;
|
112 |
+
}
|
113 |
|
114 |
return parent::_prepareData($data);
|
115 |
}
|
app/code/community/Plumrocket/SocialLogin/etc/adminhtml.xml
CHANGED
@@ -17,6 +17,16 @@
|
|
17 |
<resources>
|
18 |
<admin>
|
19 |
<children>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
<system>
|
21 |
<children>
|
22 |
<config>
|
17 |
<resources>
|
18 |
<admin>
|
19 |
<children>
|
20 |
+
<plumrocket>
|
21 |
+
<title>Plumrocket</title>
|
22 |
+
<sort_order>80</sort_order>
|
23 |
+
<children>
|
24 |
+
<pslogin>
|
25 |
+
<title>Twitter & Facebook Login</title>
|
26 |
+
<sort_order>350</sort_order>
|
27 |
+
</pslogin>
|
28 |
+
</children>
|
29 |
+
</plumrocket>
|
30 |
<system>
|
31 |
<children>
|
32 |
<config>
|
app/code/community/Plumrocket/SocialLogin/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Plumrocket_SocialLogin>
|
5 |
-
<version>1.4.
|
6 |
</Plumrocket_SocialLogin>
|
7 |
</modules>
|
8 |
<frontend>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Plumrocket_SocialLogin>
|
5 |
+
<version>1.4.1</version>
|
6 |
</Plumrocket_SocialLogin>
|
7 |
</modules>
|
8 |
<frontend>
|
app/code/community/Plumrocket/SocialLogin/etc/system.xml
CHANGED
@@ -337,7 +337,7 @@
|
|
337 |
<show_in_default>1</show_in_default>
|
338 |
<show_in_website>1</show_in_website>
|
339 |
<show_in_store>1</show_in_store>
|
340 |
-
|
341 |
<fields>
|
342 |
<enable translate="label">
|
343 |
<label>Enable</label>
|
@@ -435,7 +435,7 @@
|
|
435 |
<show_in_default>1</show_in_default>
|
436 |
<show_in_website>1</show_in_website>
|
437 |
<show_in_store>1</show_in_store>
|
438 |
-
|
439 |
<fields>
|
440 |
<version translate="label">
|
441 |
<frontend_type>text</frontend_type>
|
@@ -455,7 +455,7 @@
|
|
455 |
<show_in_default>1</show_in_default>
|
456 |
<show_in_website>1</show_in_website>
|
457 |
<show_in_store>1</show_in_store>
|
458 |
-
|
459 |
<fields>
|
460 |
<version translate="label">
|
461 |
<frontend_type>text</frontend_type>
|
@@ -475,7 +475,7 @@
|
|
475 |
<show_in_default>1</show_in_default>
|
476 |
<show_in_website>1</show_in_website>
|
477 |
<show_in_store>1</show_in_store>
|
478 |
-
|
479 |
<fields>
|
480 |
<version translate="label">
|
481 |
<frontend_type>text</frontend_type>
|
@@ -495,7 +495,7 @@
|
|
495 |
<show_in_default>1</show_in_default>
|
496 |
<show_in_website>1</show_in_website>
|
497 |
<show_in_store>1</show_in_store>
|
498 |
-
|
499 |
<fields>
|
500 |
<version translate="label">
|
501 |
<frontend_type>text</frontend_type>
|
@@ -515,7 +515,7 @@
|
|
515 |
<show_in_default>1</show_in_default>
|
516 |
<show_in_website>1</show_in_website>
|
517 |
<show_in_store>1</show_in_store>
|
518 |
-
|
519 |
<fields>
|
520 |
<version translate="label">
|
521 |
<frontend_type>text</frontend_type>
|
@@ -535,7 +535,7 @@
|
|
535 |
<show_in_default>1</show_in_default>
|
536 |
<show_in_website>1</show_in_website>
|
537 |
<show_in_store>1</show_in_store>
|
538 |
-
|
539 |
<fields>
|
540 |
<version translate="label">
|
541 |
<frontend_type>text</frontend_type>
|
@@ -555,7 +555,7 @@
|
|
555 |
<show_in_default>1</show_in_default>
|
556 |
<show_in_website>1</show_in_website>
|
557 |
<show_in_store>1</show_in_store>
|
558 |
-
|
559 |
<fields>
|
560 |
<version translate="label">
|
561 |
<frontend_type>text</frontend_type>
|
@@ -575,7 +575,7 @@
|
|
575 |
<show_in_default>1</show_in_default>
|
576 |
<show_in_website>1</show_in_website>
|
577 |
<show_in_store>1</show_in_store>
|
578 |
-
|
579 |
<fields>
|
580 |
<version translate="label">
|
581 |
<frontend_type>text</frontend_type>
|
@@ -595,7 +595,7 @@
|
|
595 |
<show_in_default>1</show_in_default>
|
596 |
<show_in_website>1</show_in_website>
|
597 |
<show_in_store>1</show_in_store>
|
598 |
-
|
599 |
<fields>
|
600 |
<version translate="label">
|
601 |
<frontend_type>text</frontend_type>
|
@@ -615,7 +615,7 @@
|
|
615 |
<show_in_default>1</show_in_default>
|
616 |
<show_in_website>1</show_in_website>
|
617 |
<show_in_store>1</show_in_store>
|
618 |
-
|
619 |
<fields>
|
620 |
<version translate="label">
|
621 |
<frontend_type>text</frontend_type>
|
@@ -627,7 +627,7 @@
|
|
627 |
</version>
|
628 |
</fields>
|
629 |
</dropbox>
|
630 |
-
|
631 |
<disqus>
|
632 |
<label>Disqus</label>
|
633 |
<sort_order>170</sort_order>
|
@@ -635,7 +635,7 @@
|
|
635 |
<show_in_default>1</show_in_default>
|
636 |
<show_in_website>1</show_in_website>
|
637 |
<show_in_store>1</show_in_store>
|
638 |
-
|
639 |
<fields>
|
640 |
<version translate="label">
|
641 |
<frontend_type>text</frontend_type>
|
@@ -655,7 +655,7 @@
|
|
655 |
<show_in_default>1</show_in_default>
|
656 |
<show_in_website>1</show_in_website>
|
657 |
<show_in_store>1</show_in_store>
|
658 |
-
|
659 |
<fields>
|
660 |
<version translate="label">
|
661 |
<frontend_type>text</frontend_type>
|
@@ -675,7 +675,7 @@
|
|
675 |
<show_in_default>1</show_in_default>
|
676 |
<show_in_website>1</show_in_website>
|
677 |
<show_in_store>1</show_in_store>
|
678 |
-
|
679 |
<fields>
|
680 |
<version translate="label">
|
681 |
<frontend_type>text</frontend_type>
|
@@ -695,7 +695,7 @@
|
|
695 |
<show_in_default>1</show_in_default>
|
696 |
<show_in_website>1</show_in_website>
|
697 |
<show_in_store>1</show_in_store>
|
698 |
-
|
699 |
<fields>
|
700 |
<version translate="label">
|
701 |
<frontend_type>text</frontend_type>
|
@@ -715,7 +715,7 @@
|
|
715 |
<show_in_default>1</show_in_default>
|
716 |
<show_in_website>1</show_in_website>
|
717 |
<show_in_store>1</show_in_store>
|
718 |
-
|
719 |
<fields>
|
720 |
<version translate="label">
|
721 |
<frontend_type>text</frontend_type>
|
@@ -735,7 +735,7 @@
|
|
735 |
<show_in_default>1</show_in_default>
|
736 |
<show_in_website>1</show_in_website>
|
737 |
<show_in_store>1</show_in_store>
|
738 |
-
|
739 |
<fields>
|
740 |
<version translate="label">
|
741 |
<frontend_type>text</frontend_type>
|
@@ -755,7 +755,7 @@
|
|
755 |
<show_in_default>1</show_in_default>
|
756 |
<show_in_website>1</show_in_website>
|
757 |
<show_in_store>1</show_in_store>
|
758 |
-
|
759 |
<fields>
|
760 |
<version translate="label">
|
761 |
<frontend_type>text</frontend_type>
|
@@ -775,7 +775,7 @@
|
|
775 |
<show_in_default>1</show_in_default>
|
776 |
<show_in_website>1</show_in_website>
|
777 |
<show_in_store>1</show_in_store>
|
778 |
-
|
779 |
<fields>
|
780 |
<version translate="label">
|
781 |
<frontend_type>text</frontend_type>
|
@@ -795,7 +795,7 @@
|
|
795 |
<show_in_default>1</show_in_default>
|
796 |
<show_in_website>1</show_in_website>
|
797 |
<show_in_store>1</show_in_store>
|
798 |
-
|
799 |
<fields>
|
800 |
<version translate="label">
|
801 |
<frontend_type>text</frontend_type>
|
@@ -815,7 +815,7 @@
|
|
815 |
<show_in_default>1</show_in_default>
|
816 |
<show_in_website>1</show_in_website>
|
817 |
<show_in_store>1</show_in_store>
|
818 |
-
|
819 |
<fields>
|
820 |
<version translate="label">
|
821 |
<frontend_type>text</frontend_type>
|
@@ -835,7 +835,7 @@
|
|
835 |
<show_in_default>1</show_in_default>
|
836 |
<show_in_website>1</show_in_website>
|
837 |
<show_in_store>1</show_in_store>
|
838 |
-
|
839 |
<fields>
|
840 |
<version translate="label">
|
841 |
<frontend_type>text</frontend_type>
|
@@ -855,7 +855,7 @@
|
|
855 |
<show_in_default>1</show_in_default>
|
856 |
<show_in_website>1</show_in_website>
|
857 |
<show_in_store>1</show_in_store>
|
858 |
-
|
859 |
<fields>
|
860 |
<version translate="label">
|
861 |
<frontend_type>text</frontend_type>
|
@@ -875,7 +875,7 @@
|
|
875 |
<show_in_default>1</show_in_default>
|
876 |
<show_in_website>1</show_in_website>
|
877 |
<show_in_store>1</show_in_store>
|
878 |
-
|
879 |
<fields>
|
880 |
<version translate="label">
|
881 |
<frontend_type>text</frontend_type>
|
@@ -895,7 +895,7 @@
|
|
895 |
<show_in_default>1</show_in_default>
|
896 |
<show_in_website>1</show_in_website>
|
897 |
<show_in_store>1</show_in_store>
|
898 |
-
|
899 |
<fields>
|
900 |
<version translate="label">
|
901 |
<frontend_type>text</frontend_type>
|
@@ -915,7 +915,7 @@
|
|
915 |
<show_in_default>1</show_in_default>
|
916 |
<show_in_website>1</show_in_website>
|
917 |
<show_in_store>1</show_in_store>
|
918 |
-
|
919 |
<fields>
|
920 |
<version translate="label">
|
921 |
<frontend_type>text</frontend_type>
|
@@ -935,7 +935,7 @@
|
|
935 |
<show_in_default>1</show_in_default>
|
936 |
<show_in_website>1</show_in_website>
|
937 |
<show_in_store>1</show_in_store>
|
938 |
-
|
939 |
<fields>
|
940 |
<version translate="label">
|
941 |
<frontend_type>text</frontend_type>
|
@@ -955,7 +955,7 @@
|
|
955 |
<show_in_default>1</show_in_default>
|
956 |
<show_in_website>1</show_in_website>
|
957 |
<show_in_store>1</show_in_store>
|
958 |
-
|
959 |
<fields>
|
960 |
<version translate="label">
|
961 |
<frontend_type>text</frontend_type>
|
@@ -975,7 +975,7 @@
|
|
975 |
<show_in_default>1</show_in_default>
|
976 |
<show_in_website>1</show_in_website>
|
977 |
<show_in_store>1</show_in_store>
|
978 |
-
|
979 |
<fields>
|
980 |
<version translate="label">
|
981 |
<frontend_type>text</frontend_type>
|
@@ -995,7 +995,7 @@
|
|
995 |
<show_in_default>1</show_in_default>
|
996 |
<show_in_website>1</show_in_website>
|
997 |
<show_in_store>1</show_in_store>
|
998 |
-
|
999 |
<fields>
|
1000 |
<version translate="label">
|
1001 |
<frontend_type>text</frontend_type>
|
@@ -1015,7 +1015,7 @@
|
|
1015 |
<show_in_default>1</show_in_default>
|
1016 |
<show_in_website>1</show_in_website>
|
1017 |
<show_in_store>1</show_in_store>
|
1018 |
-
|
1019 |
<fields>
|
1020 |
<version translate="label">
|
1021 |
<frontend_type>text</frontend_type>
|
@@ -1035,7 +1035,7 @@
|
|
1035 |
<show_in_default>1</show_in_default>
|
1036 |
<show_in_website>1</show_in_website>
|
1037 |
<show_in_store>1</show_in_store>
|
1038 |
-
|
1039 |
<fields>
|
1040 |
<version translate="label">
|
1041 |
<frontend_type>text</frontend_type>
|
@@ -1055,7 +1055,7 @@
|
|
1055 |
<show_in_default>1</show_in_default>
|
1056 |
<show_in_website>1</show_in_website>
|
1057 |
<show_in_store>1</show_in_store>
|
1058 |
-
|
1059 |
<fields>
|
1060 |
<version translate="label">
|
1061 |
<frontend_type>text</frontend_type>
|
@@ -1075,7 +1075,7 @@
|
|
1075 |
<show_in_default>1</show_in_default>
|
1076 |
<show_in_website>1</show_in_website>
|
1077 |
<show_in_store>1</show_in_store>
|
1078 |
-
|
1079 |
<fields>
|
1080 |
<version translate="label">
|
1081 |
<frontend_type>text</frontend_type>
|
@@ -1095,7 +1095,7 @@
|
|
1095 |
<show_in_default>1</show_in_default>
|
1096 |
<show_in_website>1</show_in_website>
|
1097 |
<show_in_store>1</show_in_store>
|
1098 |
-
|
1099 |
<fields>
|
1100 |
<version translate="label">
|
1101 |
<frontend_type>text</frontend_type>
|
@@ -1115,7 +1115,7 @@
|
|
1115 |
<show_in_default>1</show_in_default>
|
1116 |
<show_in_website>1</show_in_website>
|
1117 |
<show_in_store>1</show_in_store>
|
1118 |
-
|
1119 |
<fields>
|
1120 |
<version translate="label">
|
1121 |
<frontend_type>text</frontend_type>
|
@@ -1135,7 +1135,7 @@
|
|
1135 |
<show_in_default>1</show_in_default>
|
1136 |
<show_in_website>1</show_in_website>
|
1137 |
<show_in_store>1</show_in_store>
|
1138 |
-
|
1139 |
<fields>
|
1140 |
<version translate="label">
|
1141 |
<frontend_type>text</frontend_type>
|
@@ -1155,7 +1155,7 @@
|
|
1155 |
<show_in_default>1</show_in_default>
|
1156 |
<show_in_website>1</show_in_website>
|
1157 |
<show_in_store>1</show_in_store>
|
1158 |
-
|
1159 |
<fields>
|
1160 |
<version translate="label">
|
1161 |
<frontend_type>text</frontend_type>
|
@@ -1175,7 +1175,7 @@
|
|
1175 |
<show_in_default>1</show_in_default>
|
1176 |
<show_in_website>1</show_in_website>
|
1177 |
<show_in_store>1</show_in_store>
|
1178 |
-
|
1179 |
<fields>
|
1180 |
<version translate="label">
|
1181 |
<frontend_type>text</frontend_type>
|
@@ -1195,7 +1195,7 @@
|
|
1195 |
<show_in_default>1</show_in_default>
|
1196 |
<show_in_website>1</show_in_website>
|
1197 |
<show_in_store>1</show_in_store>
|
1198 |
-
|
1199 |
<fields>
|
1200 |
<version translate="label">
|
1201 |
<frontend_type>text</frontend_type>
|
@@ -1215,7 +1215,7 @@
|
|
1215 |
<show_in_default>1</show_in_default>
|
1216 |
<show_in_website>1</show_in_website>
|
1217 |
<show_in_store>1</show_in_store>
|
1218 |
-
|
1219 |
<fields>
|
1220 |
<version translate="label">
|
1221 |
<frontend_type>text</frontend_type>
|
@@ -1235,7 +1235,7 @@
|
|
1235 |
<show_in_default>1</show_in_default>
|
1236 |
<show_in_website>1</show_in_website>
|
1237 |
<show_in_store>1</show_in_store>
|
1238 |
-
|
1239 |
<fields>
|
1240 |
<version translate="label">
|
1241 |
<frontend_type>text</frontend_type>
|
@@ -1255,7 +1255,7 @@
|
|
1255 |
<show_in_default>1</show_in_default>
|
1256 |
<show_in_website>1</show_in_website>
|
1257 |
<show_in_store>1</show_in_store>
|
1258 |
-
|
1259 |
<fields>
|
1260 |
<version translate="label">
|
1261 |
<frontend_type>text</frontend_type>
|
@@ -1275,7 +1275,7 @@
|
|
1275 |
<show_in_default>1</show_in_default>
|
1276 |
<show_in_website>1</show_in_website>
|
1277 |
<show_in_store>1</show_in_store>
|
1278 |
-
|
1279 |
<fields>
|
1280 |
<version translate="label">
|
1281 |
<frontend_type>text</frontend_type>
|
@@ -1295,7 +1295,7 @@
|
|
1295 |
<show_in_default>1</show_in_default>
|
1296 |
<show_in_website>1</show_in_website>
|
1297 |
<show_in_store>1</show_in_store>
|
1298 |
-
|
1299 |
<fields>
|
1300 |
<version translate="label">
|
1301 |
<frontend_type>text</frontend_type>
|
@@ -1315,7 +1315,7 @@
|
|
1315 |
<show_in_default>1</show_in_default>
|
1316 |
<show_in_website>1</show_in_website>
|
1317 |
<show_in_store>1</show_in_store>
|
1318 |
-
|
1319 |
<fields>
|
1320 |
<version translate="label">
|
1321 |
<frontend_type>text</frontend_type>
|
@@ -1335,7 +1335,7 @@
|
|
1335 |
<show_in_default>1</show_in_default>
|
1336 |
<show_in_website>1</show_in_website>
|
1337 |
<show_in_store>1</show_in_store>
|
1338 |
-
|
1339 |
<fields>
|
1340 |
<version translate="label">
|
1341 |
<frontend_type>text</frontend_type>
|
@@ -1355,7 +1355,7 @@
|
|
1355 |
<show_in_default>1</show_in_default>
|
1356 |
<show_in_website>1</show_in_website>
|
1357 |
<show_in_store>1</show_in_store>
|
1358 |
-
|
1359 |
<fields>
|
1360 |
<version translate="label">
|
1361 |
<frontend_type>text</frontend_type>
|
@@ -1375,7 +1375,7 @@
|
|
1375 |
<show_in_default>1</show_in_default>
|
1376 |
<show_in_website>1</show_in_website>
|
1377 |
<show_in_store>1</show_in_store>
|
1378 |
-
|
1379 |
<fields>
|
1380 |
<version translate="label">
|
1381 |
<frontend_type>text</frontend_type>
|
@@ -1395,7 +1395,7 @@
|
|
1395 |
<show_in_default>1</show_in_default>
|
1396 |
<show_in_website>1</show_in_website>
|
1397 |
<show_in_store>1</show_in_store>
|
1398 |
-
|
1399 |
<fields>
|
1400 |
<version translate="label">
|
1401 |
<frontend_type>text</frontend_type>
|
@@ -1415,7 +1415,7 @@
|
|
1415 |
<show_in_default>1</show_in_default>
|
1416 |
<show_in_website>1</show_in_website>
|
1417 |
<show_in_store>1</show_in_store>
|
1418 |
-
|
1419 |
<fields>
|
1420 |
<version translate="label">
|
1421 |
<frontend_type>text</frontend_type>
|
@@ -1428,6 +1428,26 @@
|
|
1428 |
</fields>
|
1429 |
</wechat>
|
1430 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1431 |
</groups>
|
1432 |
</pslogin>
|
1433 |
</sections>
|
337 |
<show_in_default>1</show_in_default>
|
338 |
<show_in_website>1</show_in_website>
|
339 |
<show_in_store>1</show_in_store>
|
340 |
+
|
341 |
<fields>
|
342 |
<enable translate="label">
|
343 |
<label>Enable</label>
|
435 |
<show_in_default>1</show_in_default>
|
436 |
<show_in_website>1</show_in_website>
|
437 |
<show_in_store>1</show_in_store>
|
438 |
+
|
439 |
<fields>
|
440 |
<version translate="label">
|
441 |
<frontend_type>text</frontend_type>
|
455 |
<show_in_default>1</show_in_default>
|
456 |
<show_in_website>1</show_in_website>
|
457 |
<show_in_store>1</show_in_store>
|
458 |
+
|
459 |
<fields>
|
460 |
<version translate="label">
|
461 |
<frontend_type>text</frontend_type>
|
475 |
<show_in_default>1</show_in_default>
|
476 |
<show_in_website>1</show_in_website>
|
477 |
<show_in_store>1</show_in_store>
|
478 |
+
|
479 |
<fields>
|
480 |
<version translate="label">
|
481 |
<frontend_type>text</frontend_type>
|
495 |
<show_in_default>1</show_in_default>
|
496 |
<show_in_website>1</show_in_website>
|
497 |
<show_in_store>1</show_in_store>
|
498 |
+
|
499 |
<fields>
|
500 |
<version translate="label">
|
501 |
<frontend_type>text</frontend_type>
|
515 |
<show_in_default>1</show_in_default>
|
516 |
<show_in_website>1</show_in_website>
|
517 |
<show_in_store>1</show_in_store>
|
518 |
+
|
519 |
<fields>
|
520 |
<version translate="label">
|
521 |
<frontend_type>text</frontend_type>
|
535 |
<show_in_default>1</show_in_default>
|
536 |
<show_in_website>1</show_in_website>
|
537 |
<show_in_store>1</show_in_store>
|
538 |
+
|
539 |
<fields>
|
540 |
<version translate="label">
|
541 |
<frontend_type>text</frontend_type>
|
555 |
<show_in_default>1</show_in_default>
|
556 |
<show_in_website>1</show_in_website>
|
557 |
<show_in_store>1</show_in_store>
|
558 |
+
|
559 |
<fields>
|
560 |
<version translate="label">
|
561 |
<frontend_type>text</frontend_type>
|
575 |
<show_in_default>1</show_in_default>
|
576 |
<show_in_website>1</show_in_website>
|
577 |
<show_in_store>1</show_in_store>
|
578 |
+
|
579 |
<fields>
|
580 |
<version translate="label">
|
581 |
<frontend_type>text</frontend_type>
|
595 |
<show_in_default>1</show_in_default>
|
596 |
<show_in_website>1</show_in_website>
|
597 |
<show_in_store>1</show_in_store>
|
598 |
+
|
599 |
<fields>
|
600 |
<version translate="label">
|
601 |
<frontend_type>text</frontend_type>
|
615 |
<show_in_default>1</show_in_default>
|
616 |
<show_in_website>1</show_in_website>
|
617 |
<show_in_store>1</show_in_store>
|
618 |
+
|
619 |
<fields>
|
620 |
<version translate="label">
|
621 |
<frontend_type>text</frontend_type>
|
627 |
</version>
|
628 |
</fields>
|
629 |
</dropbox>
|
630 |
+
|
631 |
<disqus>
|
632 |
<label>Disqus</label>
|
633 |
<sort_order>170</sort_order>
|
635 |
<show_in_default>1</show_in_default>
|
636 |
<show_in_website>1</show_in_website>
|
637 |
<show_in_store>1</show_in_store>
|
638 |
+
|
639 |
<fields>
|
640 |
<version translate="label">
|
641 |
<frontend_type>text</frontend_type>
|
655 |
<show_in_default>1</show_in_default>
|
656 |
<show_in_website>1</show_in_website>
|
657 |
<show_in_store>1</show_in_store>
|
658 |
+
|
659 |
<fields>
|
660 |
<version translate="label">
|
661 |
<frontend_type>text</frontend_type>
|
675 |
<show_in_default>1</show_in_default>
|
676 |
<show_in_website>1</show_in_website>
|
677 |
<show_in_store>1</show_in_store>
|
678 |
+
|
679 |
<fields>
|
680 |
<version translate="label">
|
681 |
<frontend_type>text</frontend_type>
|
695 |
<show_in_default>1</show_in_default>
|
696 |
<show_in_website>1</show_in_website>
|
697 |
<show_in_store>1</show_in_store>
|
698 |
+
|
699 |
<fields>
|
700 |
<version translate="label">
|
701 |
<frontend_type>text</frontend_type>
|
715 |
<show_in_default>1</show_in_default>
|
716 |
<show_in_website>1</show_in_website>
|
717 |
<show_in_store>1</show_in_store>
|
718 |
+
|
719 |
<fields>
|
720 |
<version translate="label">
|
721 |
<frontend_type>text</frontend_type>
|
735 |
<show_in_default>1</show_in_default>
|
736 |
<show_in_website>1</show_in_website>
|
737 |
<show_in_store>1</show_in_store>
|
738 |
+
|
739 |
<fields>
|
740 |
<version translate="label">
|
741 |
<frontend_type>text</frontend_type>
|
755 |
<show_in_default>1</show_in_default>
|
756 |
<show_in_website>1</show_in_website>
|
757 |
<show_in_store>1</show_in_store>
|
758 |
+
|
759 |
<fields>
|
760 |
<version translate="label">
|
761 |
<frontend_type>text</frontend_type>
|
775 |
<show_in_default>1</show_in_default>
|
776 |
<show_in_website>1</show_in_website>
|
777 |
<show_in_store>1</show_in_store>
|
778 |
+
|
779 |
<fields>
|
780 |
<version translate="label">
|
781 |
<frontend_type>text</frontend_type>
|
795 |
<show_in_default>1</show_in_default>
|
796 |
<show_in_website>1</show_in_website>
|
797 |
<show_in_store>1</show_in_store>
|
798 |
+
|
799 |
<fields>
|
800 |
<version translate="label">
|
801 |
<frontend_type>text</frontend_type>
|
815 |
<show_in_default>1</show_in_default>
|
816 |
<show_in_website>1</show_in_website>
|
817 |
<show_in_store>1</show_in_store>
|
818 |
+
|
819 |
<fields>
|
820 |
<version translate="label">
|
821 |
<frontend_type>text</frontend_type>
|
835 |
<show_in_default>1</show_in_default>
|
836 |
<show_in_website>1</show_in_website>
|
837 |
<show_in_store>1</show_in_store>
|
838 |
+
|
839 |
<fields>
|
840 |
<version translate="label">
|
841 |
<frontend_type>text</frontend_type>
|
855 |
<show_in_default>1</show_in_default>
|
856 |
<show_in_website>1</show_in_website>
|
857 |
<show_in_store>1</show_in_store>
|
858 |
+
|
859 |
<fields>
|
860 |
<version translate="label">
|
861 |
<frontend_type>text</frontend_type>
|
875 |
<show_in_default>1</show_in_default>
|
876 |
<show_in_website>1</show_in_website>
|
877 |
<show_in_store>1</show_in_store>
|
878 |
+
|
879 |
<fields>
|
880 |
<version translate="label">
|
881 |
<frontend_type>text</frontend_type>
|
895 |
<show_in_default>1</show_in_default>
|
896 |
<show_in_website>1</show_in_website>
|
897 |
<show_in_store>1</show_in_store>
|
898 |
+
|
899 |
<fields>
|
900 |
<version translate="label">
|
901 |
<frontend_type>text</frontend_type>
|
915 |
<show_in_default>1</show_in_default>
|
916 |
<show_in_website>1</show_in_website>
|
917 |
<show_in_store>1</show_in_store>
|
918 |
+
|
919 |
<fields>
|
920 |
<version translate="label">
|
921 |
<frontend_type>text</frontend_type>
|
935 |
<show_in_default>1</show_in_default>
|
936 |
<show_in_website>1</show_in_website>
|
937 |
<show_in_store>1</show_in_store>
|
938 |
+
|
939 |
<fields>
|
940 |
<version translate="label">
|
941 |
<frontend_type>text</frontend_type>
|
955 |
<show_in_default>1</show_in_default>
|
956 |
<show_in_website>1</show_in_website>
|
957 |
<show_in_store>1</show_in_store>
|
958 |
+
|
959 |
<fields>
|
960 |
<version translate="label">
|
961 |
<frontend_type>text</frontend_type>
|
975 |
<show_in_default>1</show_in_default>
|
976 |
<show_in_website>1</show_in_website>
|
977 |
<show_in_store>1</show_in_store>
|
978 |
+
|
979 |
<fields>
|
980 |
<version translate="label">
|
981 |
<frontend_type>text</frontend_type>
|
995 |
<show_in_default>1</show_in_default>
|
996 |
<show_in_website>1</show_in_website>
|
997 |
<show_in_store>1</show_in_store>
|
998 |
+
|
999 |
<fields>
|
1000 |
<version translate="label">
|
1001 |
<frontend_type>text</frontend_type>
|
1015 |
<show_in_default>1</show_in_default>
|
1016 |
<show_in_website>1</show_in_website>
|
1017 |
<show_in_store>1</show_in_store>
|
1018 |
+
|
1019 |
<fields>
|
1020 |
<version translate="label">
|
1021 |
<frontend_type>text</frontend_type>
|
1035 |
<show_in_default>1</show_in_default>
|
1036 |
<show_in_website>1</show_in_website>
|
1037 |
<show_in_store>1</show_in_store>
|
1038 |
+
|
1039 |
<fields>
|
1040 |
<version translate="label">
|
1041 |
<frontend_type>text</frontend_type>
|
1055 |
<show_in_default>1</show_in_default>
|
1056 |
<show_in_website>1</show_in_website>
|
1057 |
<show_in_store>1</show_in_store>
|
1058 |
+
|
1059 |
<fields>
|
1060 |
<version translate="label">
|
1061 |
<frontend_type>text</frontend_type>
|
1075 |
<show_in_default>1</show_in_default>
|
1076 |
<show_in_website>1</show_in_website>
|
1077 |
<show_in_store>1</show_in_store>
|
1078 |
+
|
1079 |
<fields>
|
1080 |
<version translate="label">
|
1081 |
<frontend_type>text</frontend_type>
|
1095 |
<show_in_default>1</show_in_default>
|
1096 |
<show_in_website>1</show_in_website>
|
1097 |
<show_in_store>1</show_in_store>
|
1098 |
+
|
1099 |
<fields>
|
1100 |
<version translate="label">
|
1101 |
<frontend_type>text</frontend_type>
|
1115 |
<show_in_default>1</show_in_default>
|
1116 |
<show_in_website>1</show_in_website>
|
1117 |
<show_in_store>1</show_in_store>
|
1118 |
+
|
1119 |
<fields>
|
1120 |
<version translate="label">
|
1121 |
<frontend_type>text</frontend_type>
|
1135 |
<show_in_default>1</show_in_default>
|
1136 |
<show_in_website>1</show_in_website>
|
1137 |
<show_in_store>1</show_in_store>
|
1138 |
+
|
1139 |
<fields>
|
1140 |
<version translate="label">
|
1141 |
<frontend_type>text</frontend_type>
|
1155 |
<show_in_default>1</show_in_default>
|
1156 |
<show_in_website>1</show_in_website>
|
1157 |
<show_in_store>1</show_in_store>
|
1158 |
+
|
1159 |
<fields>
|
1160 |
<version translate="label">
|
1161 |
<frontend_type>text</frontend_type>
|
1175 |
<show_in_default>1</show_in_default>
|
1176 |
<show_in_website>1</show_in_website>
|
1177 |
<show_in_store>1</show_in_store>
|
1178 |
+
|
1179 |
<fields>
|
1180 |
<version translate="label">
|
1181 |
<frontend_type>text</frontend_type>
|
1195 |
<show_in_default>1</show_in_default>
|
1196 |
<show_in_website>1</show_in_website>
|
1197 |
<show_in_store>1</show_in_store>
|
1198 |
+
|
1199 |
<fields>
|
1200 |
<version translate="label">
|
1201 |
<frontend_type>text</frontend_type>
|
1215 |
<show_in_default>1</show_in_default>
|
1216 |
<show_in_website>1</show_in_website>
|
1217 |
<show_in_store>1</show_in_store>
|
1218 |
+
|
1219 |
<fields>
|
1220 |
<version translate="label">
|
1221 |
<frontend_type>text</frontend_type>
|
1235 |
<show_in_default>1</show_in_default>
|
1236 |
<show_in_website>1</show_in_website>
|
1237 |
<show_in_store>1</show_in_store>
|
1238 |
+
|
1239 |
<fields>
|
1240 |
<version translate="label">
|
1241 |
<frontend_type>text</frontend_type>
|
1255 |
<show_in_default>1</show_in_default>
|
1256 |
<show_in_website>1</show_in_website>
|
1257 |
<show_in_store>1</show_in_store>
|
1258 |
+
|
1259 |
<fields>
|
1260 |
<version translate="label">
|
1261 |
<frontend_type>text</frontend_type>
|
1275 |
<show_in_default>1</show_in_default>
|
1276 |
<show_in_website>1</show_in_website>
|
1277 |
<show_in_store>1</show_in_store>
|
1278 |
+
|
1279 |
<fields>
|
1280 |
<version translate="label">
|
1281 |
<frontend_type>text</frontend_type>
|
1295 |
<show_in_default>1</show_in_default>
|
1296 |
<show_in_website>1</show_in_website>
|
1297 |
<show_in_store>1</show_in_store>
|
1298 |
+
|
1299 |
<fields>
|
1300 |
<version translate="label">
|
1301 |
<frontend_type>text</frontend_type>
|
1315 |
<show_in_default>1</show_in_default>
|
1316 |
<show_in_website>1</show_in_website>
|
1317 |
<show_in_store>1</show_in_store>
|
1318 |
+
|
1319 |
<fields>
|
1320 |
<version translate="label">
|
1321 |
<frontend_type>text</frontend_type>
|
1335 |
<show_in_default>1</show_in_default>
|
1336 |
<show_in_website>1</show_in_website>
|
1337 |
<show_in_store>1</show_in_store>
|
1338 |
+
|
1339 |
<fields>
|
1340 |
<version translate="label">
|
1341 |
<frontend_type>text</frontend_type>
|
1355 |
<show_in_default>1</show_in_default>
|
1356 |
<show_in_website>1</show_in_website>
|
1357 |
<show_in_store>1</show_in_store>
|
1358 |
+
|
1359 |
<fields>
|
1360 |
<version translate="label">
|
1361 |
<frontend_type>text</frontend_type>
|
1375 |
<show_in_default>1</show_in_default>
|
1376 |
<show_in_website>1</show_in_website>
|
1377 |
<show_in_store>1</show_in_store>
|
1378 |
+
|
1379 |
<fields>
|
1380 |
<version translate="label">
|
1381 |
<frontend_type>text</frontend_type>
|
1395 |
<show_in_default>1</show_in_default>
|
1396 |
<show_in_website>1</show_in_website>
|
1397 |
<show_in_store>1</show_in_store>
|
1398 |
+
|
1399 |
<fields>
|
1400 |
<version translate="label">
|
1401 |
<frontend_type>text</frontend_type>
|
1415 |
<show_in_default>1</show_in_default>
|
1416 |
<show_in_website>1</show_in_website>
|
1417 |
<show_in_store>1</show_in_store>
|
1418 |
+
|
1419 |
<fields>
|
1420 |
<version translate="label">
|
1421 |
<frontend_type>text</frontend_type>
|
1428 |
</fields>
|
1429 |
</wechat>
|
1430 |
|
1431 |
+
<naver>
|
1432 |
+
<label>NAVER</label>
|
1433 |
+
<sort_order>700</sort_order>
|
1434 |
+
<frontend_type>text</frontend_type>
|
1435 |
+
<show_in_default>1</show_in_default>
|
1436 |
+
<show_in_website>1</show_in_website>
|
1437 |
+
<show_in_store>1</show_in_store>
|
1438 |
+
|
1439 |
+
<fields>
|
1440 |
+
<version translate="label">
|
1441 |
+
<frontend_type>text</frontend_type>
|
1442 |
+
<frontend_model>pslogin/system_config_notinstalled</frontend_model>
|
1443 |
+
<sort_order>1</sort_order>
|
1444 |
+
<show_in_default>1</show_in_default>
|
1445 |
+
<show_in_website>1</show_in_website>
|
1446 |
+
<show_in_store>1</show_in_store>
|
1447 |
+
</version>
|
1448 |
+
</fields>
|
1449 |
+
</naver>
|
1450 |
+
|
1451 |
</groups>
|
1452 |
</pslogin>
|
1453 |
</sections>
|
app/design/adminhtml/default/default/layout/pslogin.xml
CHANGED
@@ -3,6 +3,10 @@
|
|
3 |
<adminhtml_system_config_edit translate="label">
|
4 |
<update handle="editor" />
|
5 |
<reference name="head">
|
|
|
|
|
|
|
|
|
6 |
<action method="addCss"><stylesheet>css/plumrocket/pslogin/pslogin.css</stylesheet></action>
|
7 |
<!-- <action method="addItem"><type>js_css</type><name>prototype/windows/themes/default.css</name></action>
|
8 |
<action method="addItem"><type>js_css</type><name>prototype/windows/themes/magento.css</name></action>
|
@@ -11,9 +15,9 @@
|
|
11 |
<action method="addItem"><type>skin_js</type><name>js/plumrocket/pslogin/jquery-1.10.2.min.js</name></action>
|
12 |
<action method="addItem"><type>skin_js</type><name>js/plumrocket/pslogin/jquery-ui.min.js</name></action>
|
13 |
<action method="addItem"><type>skin_js</type><name>js/plumrocket/pslogin/pslogin.js</name></action>
|
14 |
-
|
15 |
-
<action method="addJs"><script>tiny_mce/tiny_mce.js</script></action>
|
16 |
-
<action method="addJs"><script>mage/adminhtml/wysiwyg/tiny_mce/setup.js</script></action>
|
17 |
<!-- <action method="addJs"><script>mage/adminhtml/variables.js</script></action> -->
|
18 |
<!-- <action method="addJs"><script>mage/adminhtml/wysiwyg/widget.js</script></action> -->
|
19 |
<action method="addItem"><type>skin_js</type><name>js/plumrocket/pslogin/config.js</name></action>
|
3 |
<adminhtml_system_config_edit translate="label">
|
4 |
<update handle="editor" />
|
5 |
<reference name="head">
|
6 |
+
<action method="setCanLoadTinyMce">
|
7 |
+
<load>1</load>
|
8 |
+
</action>
|
9 |
+
|
10 |
<action method="addCss"><stylesheet>css/plumrocket/pslogin/pslogin.css</stylesheet></action>
|
11 |
<!-- <action method="addItem"><type>js_css</type><name>prototype/windows/themes/default.css</name></action>
|
12 |
<action method="addItem"><type>js_css</type><name>prototype/windows/themes/magento.css</name></action>
|
15 |
<action method="addItem"><type>skin_js</type><name>js/plumrocket/pslogin/jquery-1.10.2.min.js</name></action>
|
16 |
<action method="addItem"><type>skin_js</type><name>js/plumrocket/pslogin/jquery-ui.min.js</name></action>
|
17 |
<action method="addItem"><type>skin_js</type><name>js/plumrocket/pslogin/pslogin.js</name></action>
|
18 |
+
|
19 |
+
<!-- <action method="addJs"><script>tiny_mce/tiny_mce.js</script></action>
|
20 |
+
<action method="addJs"><script>mage/adminhtml/wysiwyg/tiny_mce/setup.js</script></action> -->
|
21 |
<!-- <action method="addJs"><script>mage/adminhtml/variables.js</script></action> -->
|
22 |
<!-- <action method="addJs"><script>mage/adminhtml/wysiwyg/widget.js</script></action> -->
|
23 |
<action method="addItem"><type>skin_js</type><name>js/plumrocket/pslogin/config.js</name></action>
|
app/design/frontend/base/default/layout/pslogin.xml
CHANGED
@@ -42,9 +42,6 @@
|
|
42 |
<action ifconfig="pslogin/general/replace_templates" method="setTemplate"><template>pslogin/customer/form/login.phtml</template></action>
|
43 |
<block type="pslogin/buttons" name="pslogin.customer.form.login.buttons" as="pslogin_buttons" template="pslogin/customer/form/login/buttons.phtml" />
|
44 |
</reference>
|
45 |
-
<reference name="before_body_end">
|
46 |
-
<block type="core/template" template="pslogin/footer.phtml" />
|
47 |
-
</reference>
|
48 |
</customer_account_login>
|
49 |
|
50 |
<customer_account_create translate="label">
|
@@ -53,9 +50,6 @@
|
|
53 |
<block type="pslogin/buttons" name="pslogin.customer.form.register.buttons" as="pslogin_buttons" template="pslogin/customer/form/register/buttons.phtml" />
|
54 |
<!-- <block type="pslogin/share" name="pslogin.customer.form.register.share" as="pslogin_share" template="pslogin/customer/form/register/share.phtml" /> -->
|
55 |
</reference>
|
56 |
-
<reference name="before_body_end">
|
57 |
-
<block type="core/template" template="pslogin/footer.phtml" />
|
58 |
-
</reference>
|
59 |
</customer_account_create>
|
60 |
|
61 |
<customer_account_edit>
|
42 |
<action ifconfig="pslogin/general/replace_templates" method="setTemplate"><template>pslogin/customer/form/login.phtml</template></action>
|
43 |
<block type="pslogin/buttons" name="pslogin.customer.form.login.buttons" as="pslogin_buttons" template="pslogin/customer/form/login/buttons.phtml" />
|
44 |
</reference>
|
|
|
|
|
|
|
45 |
</customer_account_login>
|
46 |
|
47 |
<customer_account_create translate="label">
|
50 |
<block type="pslogin/buttons" name="pslogin.customer.form.register.buttons" as="pslogin_buttons" template="pslogin/customer/form/register/buttons.phtml" />
|
51 |
<!-- <block type="pslogin/share" name="pslogin.customer.form.register.share" as="pslogin_share" template="pslogin/customer/form/register/share.phtml" /> -->
|
52 |
</reference>
|
|
|
|
|
|
|
53 |
</customer_account_create>
|
54 |
|
55 |
<customer_account_edit>
|
app/design/frontend/base/default/template/pslogin/footer.phtml
DELETED
@@ -1,21 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Plumrocket Inc.
|
4 |
-
*
|
5 |
-
* NOTICE OF LICENSE
|
6 |
-
*
|
7 |
-
* This source file is subject to the End-user License Agreement
|
8 |
-
* that is available through the world-wide-web at this URL:
|
9 |
-
* http://wiki.plumrocket.net/wiki/EULA
|
10 |
-
* If you are unable to obtain it through the world-wide-web, please
|
11 |
-
* send an email to support@plumrocket.com so we can send you a copy immediately.
|
12 |
-
*
|
13 |
-
* @package Plumrocket_SocialLogin
|
14 |
-
* @copyright Copyright (c) 2014 Plumrocket Inc. (http://www.plumrocket.com)
|
15 |
-
* @license http://wiki.plumrocket.net/wiki/EULA End-user License Agreement
|
16 |
-
*/
|
17 |
-
?>
|
18 |
-
|
19 |
-
<?php if (Mage::helper('pslogin')->moduleEnabled() && !Mage::helper('pslogin')->hasIntegrationModules()): ?>
|
20 |
-
<?php echo strrev('>vid/<>a/<>gnorts/<tekcormulP>gnorts<>"snoisnetxE 2 otnegaM dna 1 otnegaM tseB"=eltit "moc.tekcormulp.erots//:sptth"=ferh a< yb noisnetxe nigol koobecaF ;pma& rettiwT otnegaM>";retnec:ngila-txet"=elyts vid<'); ?>
|
21 |
-
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/etc/modules/Plumrocket_SocialLogin.xml
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
<Plumrocket_SocialLogin>
|
5 |
<active>true</active>
|
6 |
<codePool>community</codePool>
|
7 |
-
<version>1.4.
|
8 |
<name>Twitter & Facebook Login</name>
|
9 |
<wiki>http://wiki.plumrocket.com/wiki/Magento_Twitter_and_Facebook_Login_v1.x_Extension</wiki>
|
10 |
<depends>
|
4 |
<Plumrocket_SocialLogin>
|
5 |
<active>true</active>
|
6 |
<codePool>community</codePool>
|
7 |
+
<version>1.4.1</version>
|
8 |
<name>Twitter & Facebook Login</name>
|
9 |
<wiki>http://wiki.plumrocket.com/wiki/Magento_Twitter_and_Facebook_Login_v1.x_Extension</wiki>
|
10 |
<depends>
|
package.xml
CHANGED
@@ -1,21 +1,21 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Plumrocket_Twitter_Facebook_Login</name>
|
4 |
-
<version>1.4.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://wiki.plumrocket.net/wiki/EULA">End-user License Agreement</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Plumrocket Twitter & Facebook Login v1.x was designed to help online store owners reach as many customers as possible. Increase sales, allow clients to use Magento Facebook Login & Twitter Login free to quickly register & place order.</summary>
|
10 |
<description>Plumrocket Twitter & Facebook Login is a free magento extension that will let online store owners benefit from all the social media advantages. It helps to increase conversion rates by allowing your customers quickly login and place order.</description>
|
11 |
-
<notes>- Added
|
12 |
-
-
|
13 |
-
-
|
14 |
-
-
|
15 |
<authors><author><name>Plumrocket Team</name><user>plumrocket</user><email>support@plumrocket.com</email></author></authors>
|
16 |
-
<date>
|
17 |
-
<time>13:
|
18 |
-
<contents><target name="mageetc"><dir name="modules"><file name="Plumrocket_SocialLogin.xml" hash="
|
19 |
<compatible/>
|
20 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Plumrocket_Base</name><channel>community</channel><min/><max/></package></required></dependencies>
|
21 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Plumrocket_Twitter_Facebook_Login</name>
|
4 |
+
<version>1.4.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://wiki.plumrocket.net/wiki/EULA">End-user License Agreement</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Plumrocket Twitter & Facebook Login v1.x was designed to help online store owners reach as many customers as possible. Increase sales, allow clients to use Magento Facebook Login & Twitter Login free to quickly register & place order.</summary>
|
10 |
<description>Plumrocket Twitter & Facebook Login is a free magento extension that will let online store owners benefit from all the social media advantages. It helps to increase conversion rates by allowing your customers quickly login and place order.</description>
|
11 |
+
<notes>- Added built-in support of world's best selling Magento themes: Blanco, BuyShop, Milano, Black&White, Venedor
|
12 |
+
- Improved authorization and registration process, now page with social login buttons loads faster
|
13 |
+
- Improved display of customers photo from social networks in Magento CE version 1.8.1 and lower, as well as on some third party themes
|
14 |
+
- Fixed issue with displaying incorrect gender data after registration</notes>
|
15 |
<authors><author><name>Plumrocket Team</name><user>plumrocket</user><email>support@plumrocket.com</email></author></authors>
|
16 |
+
<date>2017-03-29</date>
|
17 |
+
<time>13:14:24</time>
|
18 |
+
<contents><target name="mageetc"><dir name="modules"><file name="Plumrocket_SocialLogin.xml" hash="8815295502c184ed7860666ea82a1f49"/></dir></target><target name="magecommunity"><dir name="Plumrocket"><dir name="SocialLogin"><dir name="Block"><file name="Buttons.php" hash="01e4058d3a9d2886d3d299108df5e39e"/><file name="General.php" hash="b91d1eec3ee0f4d70164230d8fcdf73c"/><dir name="Page"><dir name="Html"><file name="Header.php" hash="04650dafc2c33c69b6c7f346a9442e4f"/><file name="Welcome.php" hash="af7adad8c6c05dc6b51eb40e7d345519"/></dir></dir><file name="Share.php" hash="8447182219873dee7caaf620950157e4"/><dir name="System"><dir name="Config"><file name="Callbackurl.php" hash="18db5ba86eba4692530d674c556d198c"/><file name="Comingsoon.php" hash="dd6c106da378297ab6dd6724fe014281"/><file name="Notinstalled.php" hash="c263ec689c84b028dc4abdf06c7f0e5d"/><file name="Sortable.php" hash="2ae8f2236270e459223e10a84e123e07"/><file name="Version.php" hash="dcbf01e3752a5beb030b3aec752af6dd"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="5811ae1b5a77951e01d035e12a23de09"/><file name="Main.php" hash="91b6f4aec64610bca0254a3bf196f208"/></dir><dir name="Model"><file name="Account.php" hash="bf9a0bced6759106a620562485eb897a"/><file name="Facebook.php" hash="d7c74d89f28e8e79347e82bd1ab1860e"/><dir name="Mysql4"><dir name="Account"><file name="Collection.php" hash="ca4211392ef934ce33391408092a9737"/></dir><file name="Account.php" hash="3fd0a1c891d31577d873247e17ce01ce"/></dir><file name="Observer.php" hash="1edb8fc92e3db12f7869eb102cb3d75e"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Redirectto.php" hash="c2bcb34b36ae88ce3bfdfe242463ba9a"/><file name="Shareurl.php" hash="a28729927bf70baa36ebade8e3919d3b"/></dir></dir></dir><file name="Twitter.php" hash="3dec05ac8d4ace4c9b0f57779c6b7b82"/></dir><dir name="controllers"><file name="AccountController.php" hash="19089c56b74db85af1f178dcb61bcb41"/></dir><dir name="etc"><file name="adminhtml.xml" hash="9fedd9b73fc05aa653377d453ee382fe"/><file name="config.xml" hash="d95e625cfdbcd41a47f1e24073e32fbc"/><file name="system.xml" hash="b6de52469fbb381c2c76ea52d332d9ed"/></dir><dir name="sql"><dir name="pslogin_setup"><file name="install-1.0.0.php" hash="553fa30329657c4ae11cd85e8abd9784"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="pslogin.xml" hash="56aa7aaa5c77d7f5c9e5b678d6534da4"/></dir><dir name="template"><dir name="pslogin"><dir name="system"><dir name="config"><file name="sortable.phtml" hash="398697865280d2f7d516645d62b1569d"/></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="pslogin.xml" hash="180b5cc113f7d0e813de3752e55f8128"/></dir><dir name="template"><dir name="pslogin"><dir name="checkout"><dir name="onepage"><file name="login.phtml" hash="7e5f3be44a2e87b2e2a23fab1b4e0e7c"/><dir name="message"><file name="fake_email.phtml" hash="4df9c4f220333606f758d730b9246942"/></dir></dir></dir><dir name="customer"><dir name="form"><dir name="edit"><file name="fake_email.phtml" hash="28e38c06e2d833ff469e2c50f89d922c"/></dir><dir name="login"><file name="buttons.phtml" hash="8b861b6891438a4cf30a97d6084f0208"/></dir><file name="login.phtml" hash="8d95198607fdc776865eb0647d7743cd"/><dir name="register"><file name="buttons.phtml" hash="723d467b91d795204d8b60703e75ddcd"/><file name="sharedata.phtml" hash="21e3d413a95289b676033f6ca254f018"/><file name="sharepopup.phtml" hash="834dd13f11319f5fc58931463fdbd4f0"/></dir><file name="register.phtml" hash="99fe1381f5c6f03f771fd3523d1c166f"/></dir></dir><file name="js.phtml" hash="4f1716f6f3b5401a6b29865a189b4aec"/><dir name="page"><dir name="html"><file name="welcome.phtml" hash="de89796d6555f732aaad8099c012d3bb"/></dir></dir><file name="runjs.phtml" hash="b9c6df4f25e740b10edfd8ac503bfea1"/></dir></dir></dir></dir><dir name="ultimo"><dir name="default"><dir name="template"><dir name="pslogin"><dir name="checkout"><dir name="onepage"><file name="login.phtml" hash="eca273c65a41c809cd7cb5328f190214"/></dir></dir><dir name="customer"><dir name="form"><file name="login.phtml" hash="cf337e019cbe443f9d1cd0dbe3a145ad"/><file name="register.phtml" hash="bfd2cceeb59a70dea2682282533af959"/></dir></dir></dir></dir></dir></dir><dir name="shopper"><dir name="default"><dir name="template"><dir name="pslogin"><dir name="checkout"><dir name="onepage"><file name="login.phtml" hash="23c109bf666a64637630e08fc40961b1"/></dir></dir><dir name="customer"><dir name="form"><file name="login.phtml" hash="072d3a2449ca53d90153719ac01c8aae"/><file name="register.phtml" hash="ed6d1e11eff2a0213d72b9020f2ac29e"/></dir></dir></dir></dir></dir></dir><dir name="fortis"><dir name="default"><dir name="template"><dir name="pslogin"><dir name="checkout"><dir name="onepage"><file name="login.phtml" hash="6b724ba7eb1714dfc390445c293581c1"/></dir></dir><dir name="customer"><dir name="form"><file name="login.phtml" hash="249520a604a0220b6646506ebe573011"/><file name="register.phtml" hash="bfd2cceeb59a70dea2682282533af959"/></dir></dir></dir></dir></dir></dir><dir name="default"><dir name="blanco"><dir name="template"><dir name="pslogin"><dir name="checkout"><dir name="onepage"><file name="login.phtml" hash="db8fdf238e7d868a6e55ea34f80358c5"/></dir></dir><dir name="customer"><dir name="form"><file name="login.phtml" hash="887c951966ab3540093c4c3a3832b331"/><file name="register.phtml" hash="3adc3800e8d855b49c286db74923c549"/></dir></dir></dir></dir></dir><dir name="buyshop"><dir name="template"><dir name="pslogin"><dir name="checkout"><dir name="onepage"><file name="login.phtml" hash="5c11e51aae76613c3405610914c014ad"/></dir></dir><dir name="customer"><dir name="form"><file name="login.phtml" hash="1f7c8854dba5149030bc61b14d644614"/><file name="register.phtml" hash="3adc3800e8d855b49c286db74923c549"/></dir></dir></dir></dir></dir><dir name="milano"><dir name="template"><dir name="pslogin"><dir name="checkout"><dir name="onepage"><file name="login.phtml" hash="db8fdf238e7d868a6e55ea34f80358c5"/></dir></dir><dir name="customer"><dir name="form"><file name="login.phtml" hash="887c951966ab3540093c4c3a3832b331"/><file name="register.phtml" hash="3adc3800e8d855b49c286db74923c549"/></dir></dir></dir></dir></dir></dir><dir name="gravdept"><dir name="acumen"><dir name="template"><dir name="pslogin"><dir name="checkout"><dir name="onepage"><file name="login.phtml" hash="c8e29c0cb2bf8d9da545f8829cfe9aec"/></dir></dir><dir name="customer"><dir name="form"><file name="login.phtml" hash="bde5923d16bf48ca0aeb5a824ea6bbff"/><file name="register.phtml" hash="36a99a65114e61333fc96051f1b4da58"/></dir></dir></dir></dir></dir></dir><dir name="blacknwhite"><dir name="default"><dir name="template"><dir name="pslogin"><dir name="customer"><dir name="form"><file name="login.phtml" hash="ef1349603e09651ac66755546dab3116"/><file name="register.phtml" hash="3adc3800e8d855b49c286db74923c549"/></dir></dir><dir name="onepagecheckout"><file name="login.phtml" hash="b188ec7d0fde220ce78e60d70af63557"/></dir></dir></dir></dir></dir><dir name="venedor"><dir name="default"><dir name="template"><dir name="pslogin"><dir name="checkout"><dir name="onepage"><file name="login.phtml" hash="f079f7525326c990372324d02a3441ed"/></dir></dir><dir name="customer"><dir name="form"><file name="login.phtml" hash="e5f3a79f1cc36d88807561bdd3461a8c"/><file name="register.phtml" hash="721e19772d4355070fd5b71b755be5b5"/></dir></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Plumrocket_SocialLogin.csv" hash="7572e6085fbc927180c11c7fcb060389"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="css"><dir name="plumrocket"><dir name="pslogin"><file name="pslogin.css" hash="dfadd9432d10a31cbd8259e545deace1"/></dir></dir></dir><dir name="images"><dir name="plumrocket"><dir name="pslogin"><file name="social_admin.png" hash="19216c1ff1ae19eb5dd26ad91ceb41e1"/></dir></dir></dir><dir name="js"><dir name="plumrocket"><dir name="pslogin"><file name="config.js" hash="a2c074dcd3c228afc2f144b8de8103c8"/><file name="jquery-1.10.2.min.js" hash="73042c373edc5879d6cdd9f569b9a234"/><file name="jquery-ui.min.js" hash="a0e434a17ebc022fb565e08fd446baef"/><file name="pslogin.js" hash="4770ef59857cd6eca2534d74e1dcf67c"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="plumrocket"><dir name="pslogin"><file name="pslogin-custom.css" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="pslogin.css" hash="f3fe50c81d7839350afde36b592f6e24"/></dir></dir></dir><dir name="images"><dir name="plumrocket"><dir name="pslogin"><file name="loader.gif" hash="013fe7725d917198766631696bbe40d1"/><file name="social.png" hash="901c23625074283724f0964fbe539ea3"/><file name="social_retina.png" hash="03afe2ccfdeda807eb6c3493cf6106a0"/></dir></dir></dir><dir name="js"><dir name="plumrocket"><dir name="pslogin"><file name="jquery-1.10.2.min.js" hash="73042c373edc5879d6cdd9f569b9a234"/><file name="pslogin.js" hash="fe0f64ab37951d5229aaea132cb73915"/></dir></dir></dir></dir></dir><dir name="shopper"><dir name="default"><dir name="css"><dir name="plumrocket"><dir name="pslogin"><file name="pslogin-custom.css" hash="56be3d4ce52002b666072f42515b12d8"/></dir></dir></dir></dir></dir><dir name="default"><dir name="buyshop"><dir name="css"><dir name="plumrocket"><dir name="pslogin"><file name="pslogin-custom.css" hash="08ae88742d436464733e060c95e50569"/></dir></dir></dir></dir></dir><dir name="venedor"><dir name="default"><dir name="css"><dir name="plumrocket"><dir name="pslogin"><file name="pslogin-custom.css" hash="2f95248995f04c7b831fd81bcc16b6d8"/></dir></dir></dir></dir></dir></dir></target></contents>
|
19 |
<compatible/>
|
20 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Plumrocket_Base</name><channel>community</channel><min/><max/></package></required></dependencies>
|
21 |
</package>
|
skin/adminhtml/default/default/css/plumrocket/pslogin/pslogin.css
CHANGED
@@ -200,7 +200,7 @@
|
|
200 |
.pslogin-form ul li.qq .soc-li-icon { background-position: 0px -86px; }
|
201 |
|
202 |
.pslogin-form ul li.sinaweibo .soc-li-icon { background-color: #bd4342; }
|
203 |
-
.pslogin-form ul li.sinaweibo .soc-li-icon { background-position: -17px -
|
204 |
|
205 |
.pslogin-form ul li.soundcloud .soc-li-icon { background-color: #ff5419; }
|
206 |
.pslogin-form ul li.soundcloud .soc-li-icon { background-position: -33px -85px; }
|
@@ -277,6 +277,8 @@
|
|
277 |
.pslogin-form ul li.wechat .soc-li-icon { background-color: #4ec034; }
|
278 |
.pslogin-form ul li.wechat .soc-li-icon { background-position: -1px -153px; }
|
279 |
|
|
|
|
|
280 |
|
281 |
|
282 |
.entry-edit-head.pslogin-notinstalled-section {
|
200 |
.pslogin-form ul li.qq .soc-li-icon { background-position: 0px -86px; }
|
201 |
|
202 |
.pslogin-form ul li.sinaweibo .soc-li-icon { background-color: #bd4342; }
|
203 |
+
.pslogin-form ul li.sinaweibo .soc-li-icon { background-position: -17px -86px; }
|
204 |
|
205 |
.pslogin-form ul li.soundcloud .soc-li-icon { background-color: #ff5419; }
|
206 |
.pslogin-form ul li.soundcloud .soc-li-icon { background-position: -33px -85px; }
|
277 |
.pslogin-form ul li.wechat .soc-li-icon { background-color: #4ec034; }
|
278 |
.pslogin-form ul li.wechat .soc-li-icon { background-position: -1px -153px; }
|
279 |
|
280 |
+
.pslogin-form ul li.naver .soc-li-icon { background-color: #23b300; }
|
281 |
+
.pslogin-form ul li.naver .soc-li-icon { background-position: -17px -153px; }
|
282 |
|
283 |
|
284 |
.entry-edit-head.pslogin-notinstalled-section {
|
skin/adminhtml/default/default/images/plumrocket/pslogin/social_admin.png
CHANGED
Binary file
|
skin/frontend/base/default/css/plumrocket/pslogin/pslogin.css
CHANGED
@@ -672,6 +672,9 @@
|
|
672 |
.pslogin-block .pslogin-buttons ul li.wechat span.pslogin-button-auto { background-color: #4ec034; }
|
673 |
.pslogin-block .pslogin-buttons ul li.wechat .pslogin-button-icon { background-position: -1px -306px; }
|
674 |
|
|
|
|
|
|
|
675 |
/*======= social buttons =======*/
|
676 |
#prpop-pop-up-bg .pslogin-block {
|
677 |
text-align: center;
|
@@ -723,7 +726,8 @@
|
|
723 |
}
|
724 |
|
725 |
#prpop-pop-up-bg.prpop-default .pslogin-block {
|
726 |
-
|
|
|
727 |
}
|
728 |
|
729 |
#prpop-pop-up-bg.prpop-default .pslogin-block .pslogin-buttons {
|
672 |
.pslogin-block .pslogin-buttons ul li.wechat span.pslogin-button-auto { background-color: #4ec034; }
|
673 |
.pslogin-block .pslogin-buttons ul li.wechat .pslogin-button-icon { background-position: -1px -306px; }
|
674 |
|
675 |
+
.pslogin-block .pslogin-buttons ul li.naver span.pslogin-button-auto { background-color: #23b300; }
|
676 |
+
.pslogin-block .pslogin-buttons ul li.naver .pslogin-button-icon { background-position: -34px -307px; }
|
677 |
+
|
678 |
/*======= social buttons =======*/
|
679 |
#prpop-pop-up-bg .pslogin-block {
|
680 |
text-align: center;
|
726 |
}
|
727 |
|
728 |
#prpop-pop-up-bg.prpop-default .pslogin-block {
|
729 |
+
padding-top: 10px;
|
730 |
+
clear: both;
|
731 |
}
|
732 |
|
733 |
#prpop-pop-up-bg.prpop-default .pslogin-block .pslogin-buttons {
|
skin/frontend/base/default/images/plumrocket/pslogin/social.png
CHANGED
Binary file
|
skin/frontend/base/default/images/plumrocket/pslogin/social_retina.png
CHANGED
Binary file
|