Version Notes
Bug fix
Download this release
Release Info
Developer | shivkumar singh |
Extension | testtestsetsete |
Version | 0.4.0 |
Comparing to | |
See all releases |
Code changes from version 0.3.0 to 0.4.0
- app/code/local/ConversionBug/Core/Block/System/Config/Info.php +16 -3
- app/code/local/ConversionBug/Core/etc/config.xml +1 -1
- app/code/local/ConversionBug/SocialPopup/controllers/IndexController.php +1 -3
- app/code/local/ConversionBug/SocialPopup/etc/config.xml +1 -1
- js/conversionbug/core/conversion.js +4 -5
- package.xml +11 -10
app/code/local/ConversionBug/Core/Block/System/Config/Info.php
CHANGED
@@ -16,6 +16,17 @@ class ConversionBug_Core_Block_System_Config_Info extends Mage_Adminhtml_Block_A
|
|
16 |
$adminEmail = $adminUser->getUser()->getEmail();
|
17 |
$url = Mage::getBaseUrl();
|
18 |
$ip = $_SERVER['REMOTE_ADDR'];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
$html = <<<HTML
|
21 |
<div class="cb-intro">
|
@@ -30,7 +41,7 @@ class ConversionBug_Core_Block_System_Config_Info extends Mage_Adminhtml_Block_A
|
|
30 |
<a href="mailto:support@conversionbug.com">support@conversionbug.com</a>
|
31 |
</li>
|
32 |
<li class="cb-skype">
|
33 |
-
<a href="#">
|
34 |
</li>
|
35 |
<ul>
|
36 |
</div>
|
@@ -39,8 +50,10 @@ class ConversionBug_Core_Block_System_Config_Info extends Mage_Adminhtml_Block_A
|
|
39 |
<script>
|
40 |
var email = "$adminEmail",
|
41 |
url = "$url",
|
42 |
-
ip = "$ip"
|
43 |
-
|
|
|
|
|
44 |
</script>
|
45 |
HTML;
|
46 |
|
16 |
$adminEmail = $adminUser->getUser()->getEmail();
|
17 |
$url = Mage::getBaseUrl();
|
18 |
$ip = $_SERVER['REMOTE_ADDR'];
|
19 |
+
$modules = Mage::getConfig()->getNode('modules')->children();
|
20 |
+
$modulesArray = (array)$modules;
|
21 |
+
Mage::log($modulesArray,null,"modules.log");
|
22 |
+
$options = array();
|
23 |
+
foreach($modules as $key => $value):
|
24 |
+
if (strpos($key, 'ConversionBug') !== FALSE):
|
25 |
+
$options[] = $key;
|
26 |
+
endif;
|
27 |
+
endforeach;
|
28 |
+
$string = implode(', ', $options);
|
29 |
+
Mage::log($string,null,"string.log");
|
30 |
|
31 |
$html = <<<HTML
|
32 |
<div class="cb-intro">
|
41 |
<a href="mailto:support@conversionbug.com">support@conversionbug.com</a>
|
42 |
</li>
|
43 |
<li class="cb-skype">
|
44 |
+
<a href="#">conversionbug</a>
|
45 |
</li>
|
46 |
<ul>
|
47 |
</div>
|
50 |
<script>
|
51 |
var email = "$adminEmail",
|
52 |
url = "$url",
|
53 |
+
ip = "$ip",
|
54 |
+
//extension = "M1-ExitIntent";
|
55 |
+
extension = "$string";
|
56 |
+
conversionbug.init(url,email,ip,extension);
|
57 |
</script>
|
58 |
HTML;
|
59 |
|
app/code/local/ConversionBug/Core/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<ConversionBug_Core>
|
5 |
-
<version>0.
|
6 |
</ConversionBug_Core>
|
7 |
</modules>
|
8 |
<adminhtml>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<ConversionBug_Core>
|
5 |
+
<version>0.4.0</version>
|
6 |
</ConversionBug_Core>
|
7 |
</modules>
|
8 |
<adminhtml>
|
app/code/local/ConversionBug/SocialPopup/controllers/IndexController.php
CHANGED
@@ -11,9 +11,9 @@ require_once $includePath;
|
|
11 |
|
12 |
class ConversionBug_SocialPopup_IndexController extends Mage_Core_Controller_Front_Action {
|
13 |
|
|
|
14 |
public function redirecUriAction() {
|
15 |
$data = $this->getRequest()->getParams();
|
16 |
-
|
17 |
if (isset($data['code'])) {
|
18 |
$gClient = new Google_Client();
|
19 |
$gClient->setApplicationName('Login to ' . Mage::getUrl());
|
@@ -21,9 +21,7 @@ class ConversionBug_SocialPopup_IndexController extends Mage_Core_Controller_Fro
|
|
21 |
$gClient->setClientSecret(Mage::helper('socialpopup/google')->_getClientSecret());
|
22 |
$gClient->setRedirectUri(Mage::getUrl('socialpopup/index/redirecUri'));
|
23 |
$google_oauthV2 = new Google_Oauth2Service($gClient);
|
24 |
-
|
25 |
$gClient->authenticate($_GET['code']);
|
26 |
-
|
27 |
$url = Mage::getUrl('customer/account');
|
28 |
if ($gClient->getAccessToken()) {
|
29 |
$user = $google_oauthV2->userinfo->get();
|
11 |
|
12 |
class ConversionBug_SocialPopup_IndexController extends Mage_Core_Controller_Front_Action {
|
13 |
|
14 |
+
|
15 |
public function redirecUriAction() {
|
16 |
$data = $this->getRequest()->getParams();
|
|
|
17 |
if (isset($data['code'])) {
|
18 |
$gClient = new Google_Client();
|
19 |
$gClient->setApplicationName('Login to ' . Mage::getUrl());
|
21 |
$gClient->setClientSecret(Mage::helper('socialpopup/google')->_getClientSecret());
|
22 |
$gClient->setRedirectUri(Mage::getUrl('socialpopup/index/redirecUri'));
|
23 |
$google_oauthV2 = new Google_Oauth2Service($gClient);
|
|
|
24 |
$gClient->authenticate($_GET['code']);
|
|
|
25 |
$url = Mage::getUrl('customer/account');
|
26 |
if ($gClient->getAccessToken()) {
|
27 |
$user = $google_oauthV2->userinfo->get();
|
app/code/local/ConversionBug/SocialPopup/etc/config.xml
CHANGED
@@ -24,7 +24,7 @@
|
|
24 |
-->
|
25 |
<modules>
|
26 |
<ConversionBug_SocialPopup>
|
27 |
-
<version>0.
|
28 |
</ConversionBug_SocialPopup>
|
29 |
</modules>
|
30 |
<frontend>
|
24 |
-->
|
25 |
<modules>
|
26 |
<ConversionBug_SocialPopup>
|
27 |
+
<version>0.4.0</version>
|
28 |
</ConversionBug_SocialPopup>
|
29 |
</modules>
|
30 |
<frontend>
|
js/conversionbug/core/conversion.js
CHANGED
@@ -1,13 +1,12 @@
|
|
1 |
var conversionbug = {
|
2 |
-
init: function (url,email) {
|
3 |
-
|
4 |
-
|
5 |
-
fetch("http://products.conversionbug.com/visitor/index/index", {
|
6 |
method: "POST",
|
7 |
headers: {
|
8 |
"Content-Type": "application/x-www-form-urlencoded"
|
9 |
},
|
10 |
-
body: "email="+email+"&url="+url+"&ip="+ip
|
11 |
}).then(function(res) {
|
12 |
if (res.ok) {
|
13 |
///alert("Perfect! Your settings are saved.");
|
1 |
var conversionbug = {
|
2 |
+
init: function (url,email,ip,extension) {
|
3 |
+
console.log(extension);
|
4 |
+
fetch("http://products.conversionbug.com/visitor/index/index", {
|
|
|
5 |
method: "POST",
|
6 |
headers: {
|
7 |
"Content-Type": "application/x-www-form-urlencoded"
|
8 |
},
|
9 |
+
body: "email="+email+"&url="+url+"&ip="+ip+"&extension="+extension
|
10 |
}).then(function(res) {
|
11 |
if (res.ok) {
|
12 |
///alert("Perfect! Your settings are saved.");
|
package.xml
CHANGED
@@ -1,13 +1,15 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>testtestsetsete</name>
|
4 |
-
<version>0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.ConversionBug.com/license-agreement.html">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>This extension helps convert first time visitors into registered customers & registered customers into buyers.</summary>
|
10 |
-
<description>Exit
|
|
|
|
|
11 |

|
12 |
The important benefits of the exit intent social popup are:
|
13 |

|
@@ -35,13 +37,12 @@ The extension can be easily integrated on the store either via Magento connect m
|
|
35 |
Responsive across all devices
|
36 |
The exit intent social popup works smoothly across all the devices. From mobile to tablet and desktop to widescreen, this extension does its work seamlessly.
|
37 |

|
38 |
-
|
39 |
-
|
40 |
-
<
|
41 |
-
<
|
42 |
-
<
|
43 |
-
<time>07:19:23</time>
|
44 |
-
<contents><target name="magelocal"><dir name="ConversionBug"><dir name="Core"><dir name="Block"><file name="Info.php" hash="615b0df84a02bd72de0a75c2a60181af"/><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><file name="Product.php" hash="d0b451bf63512ca2e4f4ef4e0dc200c5"/><file name="Store.php" hash="e50327e182f14d67ce1aeed1efa84d61"/></dir></dir><file name="Info.php" hash="aeaf0376ffec6e958c0f030a19b39747"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="fd937326042c8165a1df0faca629db7f"/></dir><dir name="Model"><file name="Feed.php" hash="9266834784c19c05f6cf06a3acc69acc"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Display.php" hash="fd271787952e4f1b1ce98a0a68cb37cb"/><file name="Footer.php" hash="7c13df78247e0cc2fe1e11ddff2cdcdf"/><file name="Options.php" hash="a26a31999e38a540292ff24e5ed33428"/></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="7164e6536faa45bccbf4a09bc6fba886"/><file name="config.xml" hash="c7b1ac437420d8bb3160e561c18d10e6"/><file name="system.xml" hash="7e52ad89b50f1260b86bc00114a0d326"/></dir></dir><dir name="SocialPopup"><dir name="Block"><dir name="Adminhtml"><dir name="Socialpopup"><dir name="Edit"><file name="Form.php" hash="55aa01775f47a83f12587f4b9de3ec3b"/><dir name="Tab"><file name="Form.php" hash="c25fa7578d3f9b7dec3bdcda2d989128"/></dir><file name="Tabs.php" hash="863d32c3009e9614614134752ce79314"/></dir><file name="Edit.php" hash="1d663a46156139306b9312e016791b4a"/><file name="Grid.php" hash="7e5b5acdf4b17b6a1010ff93f4533505"/></dir><file name="Socialpopup.php" hash="9c9ecccd93633c095346cf3196d126e3"/></dir><file name="Facebook.php" hash="ce6c9bb103910357b4fea5a8711eae1d"/><file name="Google.php" hash="78bf8e1b36a31c6ce2e14825c072f4db"/><file name="SocialPopup.php" hash="efc3bcfd34f235c05d5451f8c53b90d1"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Helper"><file name="Data.php" hash="5489fcf165027bada04f61cdb1b7ced7"/><file name="Facebook.php" hash="42979b35d2e997994f36356e0c9d0d5b"/><file name="Google.php" hash="6e85fb9fe3b0399ea44293cb3f4709b1"/></dir><dir name="Model"><dir name="Facebook"><file name="Client.php" hash="b8ace04ceb311b9483df3bf3bcd22925"/><file name="Userinfo.php" hash="e01c77df4e90a3e1b02f4ebc45792482"/></dir><dir name="Google"><file name="Client.php" hash="470e739d6483ed35263437519c8800f3"/></dir><dir name="Resource"><file name="Setup.php" hash="6d87f95e6fe15e1a147f6895665cf426"/></dir></dir><dir name="controllers"><file name="AccountController.php" hash="4378461153011ba9b966753c5bea08b1"/><file name="AccountController.php.new" hash="64a93430ecfa5666955d65ccd0b64613"/><dir name="Adminhtml"><file name="SocialpopupController.php" hash="f5ade874360eddcdc319669b9fe2dcce"/></dir><file name="IndexController.php" hash="aac359802567b4b57b0133cc9752068f"/></dir><dir name="data"><dir name="conversionbug_socialpopup_setup"><file name="data-upgrade-0.1.0-0.1.1.php" hash="461ae193e2fb1d5c2d04d355f22e06a9"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="fcf91117c9b8ffab461359b2f2dca674"/><file name="config.xml" hash="8f30a44c70bc20dd1169c38223e05c96"/><file name="system.xml" hash="f6364735237623cfb21b84b1ee7ae5f6"/></dir><dir name="sql"><dir name="conversionbug_socialpopup_setup"><file name="install-0.1.0.php" hash="0b65ad3d2d747f81d74935661e3c80d3"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="conversionbugcore.xml" hash="e322159c506c539d8b755fc65e7434b8"/><file name="socialpopup.xml" hash="03c43b79b0d022beae955431300beacc"/></dir><dir name="template"><dir name="conversionbugcore"><file name="info.phtml" hash="9c5797c75db2e608fb652f02adb3a02c"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="socialpopup.xml" hash="b87fd1e1f16ed9460029de24f1babc1a"/></dir><dir name="template"><dir name="socialpopup"><file name="forgotpassword.phtml" hash="b7b44fc9092e8d3e0bf7f76904f36b87"/><file name="form.phtml" hash="c2a6b2b53b446718bf04b7d87aa6ff18"/><file name="form.phtml.new" hash="ae050c0e0217c8f983936cdbd8b4ceaa"/><file name="register.phtml" hash="7745d92de6d46b0ffbcad9d8495671c2"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="ConversionBug_Core.xml" hash="537de773791fc95a5a3e340de82162f7"/><file name="ConversionBug_SocialPopup.xml" hash="c7a477751f5061957aec7a4d39c5fca3"/></dir></target><target name="mageweb"><dir name="js"><dir name="conversionbug"><dir name="core"><file name="conversion.js" hash="6c1b75eb540e3a1063b3a975cda911c3"/></dir><file name="jquery.colorbox.js" hash="a83b0d62d09f3ea49d56f5a0d0200753"/></dir></dir><dir name="lib"><dir name="SocialLogin"><file name="Google_Client.php" hash="a5e9a8a7f54ef1450d1044eb73d134c6"/><dir name="auth"><file name="Google_AssertionCredentials.php" hash="19ec1a0bc3ffdeb07083e225f3e0ac7b"/><file name="Google_Auth.php" hash="15873dc9c390eadbd5da2c0297062d7c"/><file name="Google_AuthNone.php" hash="093b237c59e2e085a97e664c0ce88ebe"/><file name="Google_LoginTicket.php" hash="4397ba773564c0c73f32ae118c24b5d2"/><file name="Google_OAuth2.php" hash="39f54796674f476271ce8d5c05c9ec71"/><file name="Google_P12Signer.php" hash="e33e570503ed42cf7d25dd6c32d67263"/><file name="Google_PemVerifier.php" hash="e9fb745bc98981953a270e0374e77e58"/><file name="Google_Signer.php" hash="b89eb963b836860aa622c2111915e5ac"/><file name="Google_Verifier.php" hash="08c9de305f4824c6d94d7c40bfe7be58"/></dir><dir name="cache"><file name="Google_ApcCache.php" hash="38942168cb94c15a9064aa8faa6c1817"/><file name="Google_Cache.php" hash="98c92b5d919c9143e68230e612298a9b"/><file name="Google_FileCache.php" hash="7cb3f047c1e3774474de8e8b2f5bd638"/><file name="Google_MemcacheCache.php" hash="48f2b20eb2481b40954d0a7a130fa766"/></dir><file name="config.php" hash="e817a5320f789ffafd64a85c481fdfa5"/><dir name="contrib"><file name="Google_AdexchangebuyerService.php" hash="fcd6af83603120d00412c315fec93186"/><file name="Google_AdsenseService.php" hash="46a03ecf85100740f30d284a07eb54eb"/><file name="Google_AdsensehostService.php" hash="8b6a5cd3244cf84c6b33e111570d0d7f"/><file name="Google_AnalyticsService.php" hash="ebac87fabc96f512e2fde8b8514aec71"/><file name="Google_BigqueryService.php" hash="52cdc203a5959b43c6a8a69b9cb16f45"/><file name="Google_BloggerService.php" hash="65336d21d58f8f2c983246b2a768064c"/><file name="Google_BooksService.php" hash="1d3ea79436b063f95f1b1995217ff105"/><file name="Google_CalendarService.php" hash="1828cfdabcded687997e5cad9999b4bb"/><file name="Google_ComputeService.php" hash="fb9b77fb21dcd4b0482bff282a19d890"/><file name="Google_CustomsearchService.php" hash="71e240765a29ee901ad1f5f30a7164e6"/><file name="Google_DriveService.php" hash="49689e610b50e54ffb37fc09bb7bcf31"/><file name="Google_FreebaseService.php" hash="eb53801d59a2edd1c16e5c5b33fba221"/><file name="Google_FusiontablesService.php" hash="2e484e55d79e219246a7ef8f56dfd5ee"/><file name="Google_GanService.php" hash="78df9910ea63e74f3225678f364712d9"/><file name="Google_LatitudeService.php" hash="165096ab7a3a8b05f97ea3a3f02d28d6"/><file name="Google_LicensingService.php" hash="8f55c323fb03447bab1b7403fd4ab2f6"/><file name="Google_ModeratorService.php" hash="f20f92b05539441192ccf98ef0d6cc90"/><file name="Google_Oauth2Service.php" hash="9a3f9c543c0c1d250840f5bd529c61bd"/><file name="Google_OrkutService.php" hash="d0cd466c78cd9c8dcd1e0cfef384696b"/><file name="Google_PagespeedonlineService.php" hash="b73efb6889f190c4aeb01758f8cfc43a"/><file name="Google_PlusMomentsService.php" hash="a4455c8ef47558346a85d2e47588146a"/><file name="Google_PlusService.php" hash="c7853657af310fa339f9aa70ff056b00"/><file name="Google_PredictionService.php" hash="2c4739a3ef181178eb4f76f9ab2d56f6"/><file name="Google_ShoppingService.php" hash="3dbda05eb3f7f8baa7f0188a0a391eac"/><file name="Google_SiteVerificationService.php" hash="9792e2bbe628fdae91dbfae35c00df14"/><file name="Google_StorageService.php" hash="51b240f63170d0c0dd27a2c6e435ddbe"/><file name="Google_TaskqueueService.php" hash="e34f538ffc1e2e412431e85c7cdec662"/><file name="Google_TasksService.php" hash="3065ef4ba7b95317e149191432cb8440"/><file name="Google_TranslateService.php" hash="5dc38b483a051aab0ded6c327beb0025"/><file name="Google_UrlshortenerService.php" hash="ef4fe776c3fa2324dde4afbe0494f979"/><file name="Google_WebfontsService.php" hash="04260525d97d2a1701821eced43fd96e"/><file name="Google_YoutubeService.php" hash="61d96013596c3d94a3388682fb085e29"/></dir><dir name="external"><file name="URITemplateParser.php" hash="dc829ddd424801e2bc4bf83bfb5e698c"/></dir><dir name="facebook"><file name="base_facebook.php" hash="3344015dbbd574739daaaff65dd4c2a9"/><file name="config.php" hash="3a0a641cb7b499641ea6ba14cbd80bd8"/><file name="facebook.php" hash="8ebb7390284d147a51fe8ca8c223e474"/><file name="fb_ca_chain_bundle.crt" hash="c4290b9deb70d0bef2f88b67fc68c8ec"/></dir><dir name="io"><file name="Google_CacheParser.php" hash="a8524de4f95bc1d237a7bf22dd3dfb8a"/><file name="Google_CurlIO.php" hash="9f5d2871c87ba61cced0efab8c57d4dc"/><file name="Google_HttpRequest.php" hash="01f22c8d762d21fd7c93d4d60737b041"/><file name="Google_IO.php" hash="872ddfd60a5ef638517ef81c7c0b6b95"/><file name="Google_REST.php" hash="e0b7abd2292576c5b087b8ddbc5c66b6"/><file name="cacerts.pem" hash="2dc185f345f7ca634aec690243f346d8"/></dir><dir name="service"><file name="Google_BatchRequest.php" hash="3c5f95b98e16d1a4a3fe2cc5cf48e9b6"/><file name="Google_MediaFileUpload.php" hash="58f7f9a71a8cbe0bc6b9a08645d22141"/><file name="Google_Model.php" hash="2c2d018441c8e8971d6b0528f3f34d85"/><file name="Google_Service.php" hash="213627cf943f19478ecd263b1f253195"/><file name="Google_ServiceResource.php" hash="184a9ba26cbabd833092d269b065e5e3"/><file name="Google_Utils.php" hash="612e0e3add05f9cf52d64065b7ccca0a"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir></target><target name="magemedia"><dir name="wysiwyg"><file name="image.png" hash="ee6d3fdb6b84dc6305e1930c9d62c9a1"/><file name="line.png" hash="17bdece70843b982604892de36c529d2"/><file name="mail.png" hash="2e13abe58e9cbf8c1e3ad388777d8e1e"/><file name="password.png" hash="26deab3dfbb79df6e7a1ab113b5a90f0"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="conversionbug"><dir name="core"><file name="core.css" hash="29c9cad2d9271f28bfd9eddd5c808d5d"/><dir name="images"><file name="cb_pattern.png" hash="9c5044bebc10bc6a34aa6a1e8e41b54a"/><file name="favicon.png" hash="bab36888d2974803acc518fc6e80c0a8"/><file name="logo.jpg" hash="04b873540f127f3db2702ec81537a92c"/><file name="logo.png" hash="ee6d3fdb6b84dc6305e1930c9d62c9a1"/><file name="mail.png" hash="dda776f14745ef6ed3ea7c273b89414a"/><file name="onesignal.png" hash="cd0a13c160d15090f2a7cc24e82adb94"/><file name="skype.png" hash="c47bc27f92a5037b5e5808a4c7946eef"/><file name="star.png" hash="7ba3058f225533076d823ad0de40cf61"/><file name="storebg.png" hash="afc4c40ea7a186c807daa8f4bd16dff3"/><file name="tick.png" hash="a93719f7f9a401c5aa10745e72f33b6a"/><file name="tick1.png" hash="a77e5cdd4aa5960fd325028b3cad225b"/><file name="web.png" hash="d6a873b4366d7337b6e3bc048ad3399f"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="conversionbug"><file name="colorbox.css" hash="7ca0c7889bd38f2631d750e0ac8d3cde"/><file name="controls.png" hash="05ad6ec2cbc17a7f3d1b1aac6dbe770d"/><file name="loading.gif" hash="f1d7268ba36b264f8b33b5b2bf0f108c"/><dir name="owl"><file name="AjaxLoader.gif" hash="5b8b06c052cac80413d62e5c45f9f37b"/><file name="bootstrapTheme.css" hash="6a99dc7813d9a40140192e71fe4e2cc7"/><file name="custom.css" hash="2966971052651b1a422b3bb594410b9c"/><file name="glyphicons-halflings-green.png" hash="9bbc6e9602998a385c2ea13df56470fd"/><file name="glyphicons-halflings-green.png_" hash="9cae7799ad4cae356531cb566f8fe287"/><file name="glyphicons-halflings.png" hash="2516339970d710819585f90773aebe0a"/><file name="grabbing.png" hash="d817e1dba5bd5d891d0504bf1715807b"/><file name="owl.carousel.css" hash="3113902e75b311845eb160a0c4b50f51"/><file name="owl.carousel.js" hash="a5f96c62d75be144282ef6cc429a6259"/><file name="owl.css" hash="6c438d4a7126a61e86805ebc0aebdb55"/><file name="owl.theme.css" hash="0a3f28b2f8a363198f35a188bea9ca2b"/><file name="owl.transitions.css" hash="b1bdaeac4065bf67a7d7a06213192964"/><file name="responsive.css" hash="6b7eb0867b2952eb412131c8c7fb1b85"/></dir><file name="socialpopup.css" hash="1dae03785bf2881839f162ae0d28ff8c"/><file name="style.css" hash="7f8cb16a9abae753af4bc0d27ef96830"/></dir></dir></dir></dir></dir></target></contents>
|
45 |
<compatible/>
|
46 |
-
<dependencies><required><php><min>5.
|
47 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>testtestsetsete</name>
|
4 |
+
<version>0.4.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.ConversionBug.com/license-agreement.html">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>This extension helps convert first time visitors into registered customers & registered customers into buyers.</summary>
|
10 |
+
<description>Exit Intent With Social Login
|
11 |
+

|
12 |
+
Exit intent social popup has been designed to convert first time visitors or unknown visitors into registered customers and registered customers into buyers. The exit intent social popup is the combination of exit intent popup with social login promoting special offers and discounts on the website.The popup comes up right when the user is about to leave or exit the website. Popup at the end doesn’t distract him from the purchase process and the offer on the popup attracts him to purchase things.
|
13 |

|
14 |
The important benefits of the exit intent social popup are:
|
15 |

|
37 |
Responsive across all devices
|
38 |
The exit intent social popup works smoothly across all the devices. From mobile to tablet and desktop to widescreen, this extension does its work seamlessly.
|
39 |

|
40 |
+
</description>
|
41 |
+
<notes>Bug fix</notes>
|
42 |
+
<authors><author><name>shivkumar singh</name><user>shivkumar</user><email>shivam.kumar@conversionbug.com</email></author></authors>
|
43 |
+
<date>2016-12-14</date>
|
44 |
+
<time>09:21:18</time>
|
45 |
+
<contents><target name="magelocal"><dir name="ConversionBug"><dir name="Core"><dir name="Block"><file name="Info.php" hash="615b0df84a02bd72de0a75c2a60181af"/><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><file name="Product.php" hash="d0b451bf63512ca2e4f4ef4e0dc200c5"/><file name="Store.php" hash="e50327e182f14d67ce1aeed1efa84d61"/></dir></dir><file name="Info.php" hash="ee563606ec2b8598d27011ae26c58388"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="7164e6536faa45bccbf4a09bc6fba886"/><file name="config.xml" hash="a25a156129324aff445f9ef2d123ca7b"/><file name="system.xml" hash="7e52ad89b50f1260b86bc00114a0d326"/></dir><dir name="Helper"><file name="Data.php" hash="fd937326042c8165a1df0faca629db7f"/></dir><dir name="Model"><file name="Feed.php" hash="9266834784c19c05f6cf06a3acc69acc"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Display.php" hash="fd271787952e4f1b1ce98a0a68cb37cb"/><file name="Footer.php" hash="7c13df78247e0cc2fe1e11ddff2cdcdf"/><file name="Options.php" hash="a26a31999e38a540292ff24e5ed33428"/></dir></dir></dir></dir></dir><dir name="SocialPopup"><dir name="Block"><dir name="Adminhtml"><dir name="Socialpopup"><dir name="Edit"><file name="Form.php" hash="55aa01775f47a83f12587f4b9de3ec3b"/><dir name="Tab"><file name="Form.php" hash="c25fa7578d3f9b7dec3bdcda2d989128"/></dir><file name="Tabs.php" hash="863d32c3009e9614614134752ce79314"/></dir><file name="Edit.php" hash="1d663a46156139306b9312e016791b4a"/><file name="Grid.php" hash="7e5b5acdf4b17b6a1010ff93f4533505"/></dir><file name="Socialpopup.php" hash="9c9ecccd93633c095346cf3196d126e3"/></dir><file name="Facebook.php" hash="ce6c9bb103910357b4fea5a8711eae1d"/><file name="Google.php" hash="78bf8e1b36a31c6ce2e14825c072f4db"/><file name="SocialPopup.php" hash="efc3bcfd34f235c05d5451f8c53b90d1"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="controllers"><file name="AccountController.php" hash="4378461153011ba9b966753c5bea08b1"/><file name="AccountController.php.new" hash="64a93430ecfa5666955d65ccd0b64613"/><dir name="Adminhtml"><file name="SocialpopupController.php" hash="f5ade874360eddcdc319669b9fe2dcce"/></dir><file name="IndexController.php" hash="2db4e8ba26f400693369519aa871c345"/></dir><dir name="data"><dir name="conversionbug_socialpopup_setup"><file name="data-upgrade-0.1.0-0.1.1.php" hash="461ae193e2fb1d5c2d04d355f22e06a9"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="fcf91117c9b8ffab461359b2f2dca674"/><file name="config.xml" hash="f241150f8b38a4a6163e2ddd6b04c069"/><file name="system.xml" hash="f6364735237623cfb21b84b1ee7ae5f6"/></dir><dir name="Helper"><file name="Data.php" hash="5489fcf165027bada04f61cdb1b7ced7"/><file name="Facebook.php" hash="42979b35d2e997994f36356e0c9d0d5b"/><file name="Google.php" hash="6e85fb9fe3b0399ea44293cb3f4709b1"/></dir><dir name="Model"><dir name="Facebook"><file name="Client.php" hash="b8ace04ceb311b9483df3bf3bcd22925"/><file name="Userinfo.php" hash="e01c77df4e90a3e1b02f4ebc45792482"/></dir><dir name="Google"><file name="Client.php" hash="470e739d6483ed35263437519c8800f3"/></dir><dir name="Resource"><file name="Setup.php" hash="6d87f95e6fe15e1a147f6895665cf426"/></dir></dir><dir name="sql"><dir name="conversionbug_socialpopup_setup"><file name="install-0.1.0.php" hash="0b65ad3d2d747f81d74935661e3c80d3"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="ConversionBug_SocialPopup.xml" hash="c7a477751f5061957aec7a4d39c5fca3"/><file name="ConversionBug_Core.xml" hash="537de773791fc95a5a3e340de82162f7"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="conversionbugcore.xml" hash="e322159c506c539d8b755fc65e7434b8"/><file name="socialpopup.xml" hash="03c43b79b0d022beae955431300beacc"/></dir><dir name="template"><dir name="conversionbugcore"><file name="info.phtml" hash="9c5797c75db2e608fb652f02adb3a02c"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="socialpopup.xml" hash="b87fd1e1f16ed9460029de24f1babc1a"/></dir><dir name="template"><dir name="socialpopup"><file name="forgotpassword.phtml" hash="b7b44fc9092e8d3e0bf7f76904f36b87"/><file name="form.phtml" hash="c2a6b2b53b446718bf04b7d87aa6ff18"/><file name="form.phtml.new" hash="ae050c0e0217c8f983936cdbd8b4ceaa"/><file name="register.phtml" hash="7745d92de6d46b0ffbcad9d8495671c2"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="conversionbug"><dir name="core"><file name="conversion.js" hash="f158bdf910be2389241df6ef079e9b47"/></dir><file name="jquery.colorbox.js" hash="a83b0d62d09f3ea49d56f5a0d0200753"/></dir></dir></target><target name="magelib"><dir name="SocialLogin"><dir name="auth"><file name="Google_AssertionCredentials.php" hash="19ec1a0bc3ffdeb07083e225f3e0ac7b"/><file name="Google_AuthNone.php" hash="093b237c59e2e085a97e664c0ce88ebe"/><file name="Google_Auth.php" hash="15873dc9c390eadbd5da2c0297062d7c"/><file name="Google_LoginTicket.php" hash="4397ba773564c0c73f32ae118c24b5d2"/><file name="Google_OAuth2.php" hash="39f54796674f476271ce8d5c05c9ec71"/><file name="Google_P12Signer.php" hash="e33e570503ed42cf7d25dd6c32d67263"/><file name="Google_PemVerifier.php" hash="e9fb745bc98981953a270e0374e77e58"/><file name="Google_Signer.php" hash="b89eb963b836860aa622c2111915e5ac"/><file name="Google_Verifier.php" hash="08c9de305f4824c6d94d7c40bfe7be58"/></dir><dir name="cache"><file name="Google_ApcCache.php" hash="38942168cb94c15a9064aa8faa6c1817"/><file name="Google_Cache.php" hash="98c92b5d919c9143e68230e612298a9b"/><file name="Google_FileCache.php" hash="7cb3f047c1e3774474de8e8b2f5bd638"/><file name="Google_MemcacheCache.php" hash="48f2b20eb2481b40954d0a7a130fa766"/></dir><file name="config.php" hash="e817a5320f789ffafd64a85c481fdfa5"/><dir name="contrib"><file name="Google_AdexchangebuyerService.php" hash="fcd6af83603120d00412c315fec93186"/><file name="Google_AdsensehostService.php" hash="8b6a5cd3244cf84c6b33e111570d0d7f"/><file name="Google_AdsenseService.php" hash="46a03ecf85100740f30d284a07eb54eb"/><file name="Google_AnalyticsService.php" hash="ebac87fabc96f512e2fde8b8514aec71"/><file name="Google_BigqueryService.php" hash="52cdc203a5959b43c6a8a69b9cb16f45"/><file name="Google_BloggerService.php" hash="65336d21d58f8f2c983246b2a768064c"/><file name="Google_BooksService.php" hash="1d3ea79436b063f95f1b1995217ff105"/><file name="Google_CalendarService.php" hash="1828cfdabcded687997e5cad9999b4bb"/><file name="Google_ComputeService.php" hash="fb9b77fb21dcd4b0482bff282a19d890"/><file name="Google_CustomsearchService.php" hash="71e240765a29ee901ad1f5f30a7164e6"/><file name="Google_DriveService.php" hash="49689e610b50e54ffb37fc09bb7bcf31"/><file name="Google_FreebaseService.php" hash="eb53801d59a2edd1c16e5c5b33fba221"/><file name="Google_FusiontablesService.php" hash="2e484e55d79e219246a7ef8f56dfd5ee"/><file name="Google_GanService.php" hash="78df9910ea63e74f3225678f364712d9"/><file name="Google_LatitudeService.php" hash="165096ab7a3a8b05f97ea3a3f02d28d6"/><file name="Google_LicensingService.php" hash="8f55c323fb03447bab1b7403fd4ab2f6"/><file name="Google_ModeratorService.php" hash="f20f92b05539441192ccf98ef0d6cc90"/><file name="Google_Oauth2Service.php" hash="9a3f9c543c0c1d250840f5bd529c61bd"/><file name="Google_OrkutService.php" hash="d0cd466c78cd9c8dcd1e0cfef384696b"/><file name="Google_PagespeedonlineService.php" hash="b73efb6889f190c4aeb01758f8cfc43a"/><file name="Google_PlusMomentsService.php" hash="a4455c8ef47558346a85d2e47588146a"/><file name="Google_PlusService.php" hash="c7853657af310fa339f9aa70ff056b00"/><file name="Google_PredictionService.php" hash="2c4739a3ef181178eb4f76f9ab2d56f6"/><file name="Google_ShoppingService.php" hash="3dbda05eb3f7f8baa7f0188a0a391eac"/><file name="Google_SiteVerificationService.php" hash="9792e2bbe628fdae91dbfae35c00df14"/><file name="Google_StorageService.php" hash="51b240f63170d0c0dd27a2c6e435ddbe"/><file name="Google_TaskqueueService.php" hash="e34f538ffc1e2e412431e85c7cdec662"/><file name="Google_TasksService.php" hash="3065ef4ba7b95317e149191432cb8440"/><file name="Google_TranslateService.php" hash="5dc38b483a051aab0ded6c327beb0025"/><file name="Google_UrlshortenerService.php" hash="ef4fe776c3fa2324dde4afbe0494f979"/><file name="Google_WebfontsService.php" hash="04260525d97d2a1701821eced43fd96e"/><file name="Google_YoutubeService.php" hash="61d96013596c3d94a3388682fb085e29"/></dir><dir name="external"><file name="URITemplateParser.php" hash="dc829ddd424801e2bc4bf83bfb5e698c"/></dir><dir name="facebook"><file name="base_facebook.php" hash="3344015dbbd574739daaaff65dd4c2a9"/><file name="config.php" hash="3a0a641cb7b499641ea6ba14cbd80bd8"/><file name="facebook.php" hash="8ebb7390284d147a51fe8ca8c223e474"/><file name="fb_ca_chain_bundle.crt" hash="c4290b9deb70d0bef2f88b67fc68c8ec"/></dir><file name="Google_Client.php" hash="a5e9a8a7f54ef1450d1044eb73d134c6"/><dir name="io"><file name="cacerts.pem" hash="2dc185f345f7ca634aec690243f346d8"/><file name="Google_CacheParser.php" hash="a8524de4f95bc1d237a7bf22dd3dfb8a"/><file name="Google_CurlIO.php" hash="9f5d2871c87ba61cced0efab8c57d4dc"/><file name="Google_HttpRequest.php" hash="01f22c8d762d21fd7c93d4d60737b041"/><file name="Google_IO.php" hash="872ddfd60a5ef638517ef81c7c0b6b95"/><file name="Google_REST.php" hash="e0b7abd2292576c5b087b8ddbc5c66b6"/></dir><dir name="service"><file name="Google_BatchRequest.php" hash="3c5f95b98e16d1a4a3fe2cc5cf48e9b6"/><file name="Google_MediaFileUpload.php" hash="58f7f9a71a8cbe0bc6b9a08645d22141"/><file name="Google_Model.php" hash="2c2d018441c8e8971d6b0528f3f34d85"/><file name="Google_Service.php" hash="213627cf943f19478ecd263b1f253195"/><file name="Google_ServiceResource.php" hash="184a9ba26cbabd833092d269b065e5e3"/><file name="Google_Utils.php" hash="612e0e3add05f9cf52d64065b7ccca0a"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></target><target name="magemedia"><dir name="wysiwyg"><file name="image.png" hash="ee6d3fdb6b84dc6305e1930c9d62c9a1"/><file name="line.png" hash="17bdece70843b982604892de36c529d2"/><file name="mail.png" hash="2e13abe58e9cbf8c1e3ad388777d8e1e"/><file name="password.png" hash="26deab3dfbb79df6e7a1ab113b5a90f0"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="conversionbug"><dir name="core"><file name="core.css" hash="29c9cad2d9271f28bfd9eddd5c808d5d"/><dir name="images"><file name="cb_pattern.png" hash="9c5044bebc10bc6a34aa6a1e8e41b54a"/><file name="favicon.png" hash="bab36888d2974803acc518fc6e80c0a8"/><file name="logo.jpg" hash="04b873540f127f3db2702ec81537a92c"/><file name="logo.png" hash="ee6d3fdb6b84dc6305e1930c9d62c9a1"/><file name="mail.png" hash="dda776f14745ef6ed3ea7c273b89414a"/><file name="onesignal.png" hash="cd0a13c160d15090f2a7cc24e82adb94"/><file name="skype.png" hash="c47bc27f92a5037b5e5808a4c7946eef"/><file name="star.png" hash="7ba3058f225533076d823ad0de40cf61"/><file name="storebg.png" hash="afc4c40ea7a186c807daa8f4bd16dff3"/><file name="tick1.png" hash="a77e5cdd4aa5960fd325028b3cad225b"/><file name="tick.png" hash="a93719f7f9a401c5aa10745e72f33b6a"/><file name="web.png" hash="d6a873b4366d7337b6e3bc048ad3399f"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="conversionbug"><file name="colorbox.css" hash="7ca0c7889bd38f2631d750e0ac8d3cde"/><file name="controls.png" hash="05ad6ec2cbc17a7f3d1b1aac6dbe770d"/><file name="loading.gif" hash="f1d7268ba36b264f8b33b5b2bf0f108c"/><dir name="owl"><file name="AjaxLoader.gif" hash="5b8b06c052cac80413d62e5c45f9f37b"/><file name="bootstrapTheme.css" hash="6a99dc7813d9a40140192e71fe4e2cc7"/><file name="custom.css" hash="2966971052651b1a422b3bb594410b9c"/><file name="glyphicons-halflings-green.png" hash="9bbc6e9602998a385c2ea13df56470fd"/><file name="glyphicons-halflings-green.png_" hash="9cae7799ad4cae356531cb566f8fe287"/><file name="glyphicons-halflings.png" hash="2516339970d710819585f90773aebe0a"/><file name="grabbing.png" hash="d817e1dba5bd5d891d0504bf1715807b"/><file name="owl.carousel.css" hash="3113902e75b311845eb160a0c4b50f51"/><file name="owl.carousel.js" hash="a5f96c62d75be144282ef6cc429a6259"/><file name="owl.css" hash="6c438d4a7126a61e86805ebc0aebdb55"/><file name="owl.theme.css" hash="0a3f28b2f8a363198f35a188bea9ca2b"/><file name="owl.transitions.css" hash="b1bdaeac4065bf67a7d7a06213192964"/><file name="responsive.css" hash="6b7eb0867b2952eb412131c8c7fb1b85"/></dir><file name="socialpopup.css" hash="1dae03785bf2881839f162ae0d28ff8c"/><file name="style.css" hash="7f8cb16a9abae753af4bc0d27ef96830"/></dir></dir></dir></dir></dir></target></contents>
|
|
|
46 |
<compatible/>
|
47 |
+
<dependencies><required><php><min>5.1.0</min><max>7.0.0</max></php></required></dependencies>
|
48 |
</package>
|