__('Google Connect'); ?>
41 |__('You can login using your Google account.'); ?>
42 |├── app
├── locale
│ └── fr_FR
│ │ └── Inchoo_SocialConnect.csv
├── code
│ └── community
│ │ └── Inchoo
│ │ └── SocialConnect
│ │ ├── Model
│ │ ├── Facebook
│ │ │ ├── Oauth2
│ │ │ │ └── Exception.php
│ │ │ ├── Info
│ │ │ │ └── User.php
│ │ │ └── Info.php
│ │ ├── Google
│ │ │ ├── Oauth2
│ │ │ │ └── Exception.php
│ │ │ ├── Info
│ │ │ │ └── User.php
│ │ │ └── Info.php
│ │ ├── Twitter
│ │ │ ├── Oauth
│ │ │ │ └── Exception.php
│ │ │ ├── Info
│ │ │ │ └── User.php
│ │ │ └── Info.php
│ │ ├── Linkedin
│ │ │ ├── Oauth2
│ │ │ │ └── Exception.php
│ │ │ ├── Info
│ │ │ │ └── User.php
│ │ │ └── Info.php
│ │ └── Resource
│ │ │ └── Setup.php
│ │ ├── Block
│ │ ├── Facebook
│ │ │ ├── Adminhtml
│ │ │ │ └── System
│ │ │ │ │ └── Config
│ │ │ │ │ └── Form
│ │ │ │ │ └── Field
│ │ │ │ │ ├── Origins.php
│ │ │ │ │ ├── Redirects.php
│ │ │ │ │ └── Links.php
│ │ │ ├── Button.php
│ │ │ └── Account.php
│ │ ├── Google
│ │ │ ├── Adminhtml
│ │ │ │ └── System
│ │ │ │ │ └── Config
│ │ │ │ │ └── Form
│ │ │ │ │ └── Field
│ │ │ │ │ ├── Origins.php
│ │ │ │ │ ├── Redirects.php
│ │ │ │ │ └── Links.php
│ │ │ ├── Button.php
│ │ │ └── Account.php
│ │ ├── Linkedin
│ │ │ ├── Adminhtml
│ │ │ │ └── System
│ │ │ │ │ └── Config
│ │ │ │ │ └── Form
│ │ │ │ │ └── Field
│ │ │ │ │ ├── Origins.php
│ │ │ │ │ ├── Redirects.php
│ │ │ │ │ └── Links.php
│ │ │ ├── Button.php
│ │ │ └── Account.php
│ │ ├── Twitter
│ │ │ ├── Adminhtml
│ │ │ │ └── System
│ │ │ │ │ └── Config
│ │ │ │ │ └── Form
│ │ │ │ │ └── Field
│ │ │ │ │ ├── Origins.php
│ │ │ │ │ ├── Redirects.php
│ │ │ │ │ └── Links.php
│ │ │ ├── Button.php
│ │ │ └── Account.php
│ │ ├── Adminhtml
│ │ │ └── System
│ │ │ │ └── Config
│ │ │ │ └── Form
│ │ │ │ └── Field
│ │ │ │ ├── Origins.php
│ │ │ │ ├── Redirects.php
│ │ │ │ └── Links.php
│ │ ├── Checkout.php
│ │ ├── Register.php
│ │ └── Login.php
│ │ ├── Helper
│ │ ├── Data.php
│ │ ├── Linkedin.php
│ │ ├── Twitter.php
│ │ ├── Facebook.php
│ │ └── Google.php
│ │ ├── sql
│ │ └── inchoo_socialconnect_setup
│ │ │ ├── upgrade-0.2.6-0.3.0.php
│ │ │ ├── upgrade-0.1.0-0.2.0.php
│ │ │ └── install-0.1.0.php
│ │ ├── Controller
│ │ └── Abstract.php
│ │ ├── controllers
│ │ ├── AccountController.php
│ │ ├── TwitterController.php
│ │ ├── GoogleController.php
│ │ ├── FacebookController.php
│ │ └── LinkedinController.php
│ │ └── etc
│ │ └── config.xml
├── etc
│ └── modules
│ │ └── Inchoo_SocialConnect.xml
└── design
│ └── frontend
│ └── base
│ └── default
│ └── template
│ └── inchoo
│ └── socialconnect
│ ├── google
│ ├── button.phtml
│ └── account.phtml
│ ├── linkedin
│ ├── button.phtml
│ └── account.phtml
│ ├── twitter
│ ├── button.phtml
│ └── account.phtml
│ ├── facebook
│ ├── button.phtml
│ └── account.phtml
│ ├── checkout.phtml
│ ├── register.phtml
│ ├── login.phtml
│ └── checkout
│ └── onepage
│ └── login.phtml
├── skin
└── frontend
│ └── base
│ └── default
│ └── inchoo_socialconnect
│ ├── facebook
│ ├── images
│ │ ├── login-button-left.png
│ │ ├── login-button-inner.png
│ │ └── login-button-right.png
│ └── css
│ │ └── button.css
│ ├── google
│ ├── images
│ │ ├── login-button-inner.png
│ │ ├── login-button-left.png
│ │ └── login-button-right.png
│ └── css
│ │ └── button.css
│ ├── linkedin
│ ├── images
│ │ ├── login-button-left.png
│ │ ├── login-button-inner.png
│ │ └── login-button-right.png
│ └── css
│ │ └── button.css
│ ├── twitter
│ ├── images
│ │ ├── login-button-inner.png
│ │ ├── login-button-left.png
│ │ └── login-button-right.png
│ └── css
│ │ └── button.css
│ └── css
│ └── styles.css
├── README.md
└── modman
/app/locale/fr_FR/Inchoo_SocialConnect.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chapagain/Inchoo_SocialConnect/master/app/locale/fr_FR/Inchoo_SocialConnect.csv
--------------------------------------------------------------------------------
/app/code/community/Inchoo/SocialConnect/Model/Facebook/Oauth2/Exception.php:
--------------------------------------------------------------------------------
1 | %s', Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB));
9 | }
10 |
11 | }
--------------------------------------------------------------------------------
/app/code/community/Inchoo/SocialConnect/Block/Twitter/Adminhtml/System/Config/Form/Field/Links.php:
--------------------------------------------------------------------------------
1 | %ssocialconnect/%s/connect/',
15 | Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB),
16 | $this->getAuthProvider()
17 | );
18 | }
19 |
20 | }
--------------------------------------------------------------------------------
/app/code/community/Inchoo/SocialConnect/Block/Adminhtml/System/Config/Form/Field/Links.php:
--------------------------------------------------------------------------------
1 | %s',
20 | $this->getAuthProviderLinkHref(),
21 | $this->getAuthProviderLink()
22 | );
23 | }
24 |
25 | }
--------------------------------------------------------------------------------
/modman:
--------------------------------------------------------------------------------
1 | app/code/community/Inchoo/SocialConnect/ app/code/community/Inchoo/SocialConnect/
2 | app/design/frontend/base/default/layout/inchoo_socialconnect.xml app/design/frontend/base/default/layout/inchoo_socialconnect.xml
3 | app/design/frontend/base/default/template/inchoo/socialconnect/ app/design/frontend/base/default/template/inchoo/socialconnect/
4 | app/etc/modules/Inchoo_SocialConnect.xml app/etc/modules/Inchoo_SocialConnect.xml
5 | skin/frontend/base/default/inchoo_socialconnect/ skin/frontend/base/default/inchoo_socialconnect/
6 | app/locale/da_DK/Inchoo_SocialConnect.csv app/locale/da_DK/Inchoo_SocialConnect.csv
7 | app/locale/en_US/Inchoo_SocialConnect.csv app/locale/en_US/Inchoo_SocialConnect.csv
8 | app/locale/sl_SI/Inchoo_SocialConnect.csv app/locale/sl_SI/Inchoo_SocialConnect.csv
9 | app/locale/de_DE/Inchoo_SocialConnect.csv app/locale/de_DE/Inchoo_SocialConnect.csv
10 | app/locale/fr_FR/Inchoo_SocialConnect.csv app/locale/fr_FR/Inchoo_SocialConnect.csv
11 |
--------------------------------------------------------------------------------
/app/etc/modules/Inchoo_SocialConnect.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
36 |
37 |
__('Register with us for future convenience:') ?>
42 | 43 |__('Register and save time!') ?>
44 | __('Register with us for future convenience:') ?>
__('Register with us for future convenience:') ?>
63 |