Version Notes
Tested for Magento 1.9
Download this release
Release Info
| Developer | eflyermaker |
| Extension | eflyermaker |
| Version | 1.0.2 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.1 to 1.0.2
- app/code/community/Eflyermaker/Eflyermakerformbuilder/Model/Template/Filter.php +2 -0
- app/code/community/Eflyermaker/Eflyermakerformbuilder/etc/config.xml +1 -1
- app/{code/community/Eflyermaker/Eflyermakerformbuilder → design/adminhtml/default/default/template/eflyermakerformbuilder}/.DS_Store +0 -0
- app/design/adminhtml/default/default/template/eflyermakerformbuilder/form.phtml +1 -1
- app/design/adminhtml/default/default/template/eflyermakerformbuilder/forms_list.phtml +1 -1
- app/design/adminhtml/default/default/template/eflyermakerformbuilder/get_started.phtml +4 -3
- app/locale/fr_CA/eflyermakerformbuilder.csv +3 -3
- app/locale/fr_FR/eflyermakerformbuilder.csv +3 -3
- package.xml +6 -7
- skin/adminhtml/default/default/eflyermakerformbuilder/.DS_Store +0 -0
- skin/adminhtml/default/default/eflyermakerformbuilder/images/help3.png +0 -0
- skin/adminhtml/default/default/eflyermakerformbuilder/images/help4.png +0 -0
- skin/adminhtml/default/default/eflyermakerformbuilder/js/efmfb_admin.js +4 -4
- skin/adminhtml/default/default/eflyermakerformbuilder/js/efmfb_popup_options.js +9 -3
- skin/adminhtml/default/default/eflyermakerformbuilder/js/efmfb_popup_setup.js +2 -1
- skin/frontend/base/default/eflyermakerformbuilder/efmfb_public.js +104 -27
app/code/community/Eflyermaker/Eflyermakerformbuilder/Model/Template/Filter.php
CHANGED
|
@@ -16,6 +16,7 @@
|
|
| 16 |
|
| 17 |
$efmfb_id = trim($params['form_id']);
|
| 18 |
$is_popup = trim($params['is_popup']);
|
|
|
|
| 19 |
|
| 20 |
if ( empty( $efmfb_id ) || '' == $efmfb_id )
|
| 21 |
{
|
|
@@ -94,6 +95,7 @@
|
|
| 94 |
|
| 95 |
$efmfb_popup_Form_html = '';
|
| 96 |
$efmfb_popup_Form_html .= '<div id="efmfb_popup_form_data" style="display:none;">';
|
|
|
|
| 97 |
$efmfb_popup_Form_html .= '<input type="hidden" style="display:none !important;" name="efmfb_popup_overlay_color" id="efmfb_popup_overlay_color" value="'.$efmfb_popup_overlay_color.'"/>';
|
| 98 |
$efmfb_popup_Form_html .= '<input type="hidden" style="display:none !important;" name="efmfb_popup_animatecss_show" id="efmfb_popup_animatecss_show" value="'.$efmfb_popup_animatecss_show.'"/>';
|
| 99 |
$efmfb_popup_Form_html .= '<input type="hidden" style="display:none !important;" name="efmfb_popup_animatecss_hide" id="efmfb_popup_animatecss_hide" value="'.$efmfb_popup_animatecss_hide.'"/>';
|
| 16 |
|
| 17 |
$efmfb_id = trim($params['form_id']);
|
| 18 |
$is_popup = trim($params['is_popup']);
|
| 19 |
+
$popup_onclick = trim($params['popup_onclick']);
|
| 20 |
|
| 21 |
if ( empty( $efmfb_id ) || '' == $efmfb_id )
|
| 22 |
{
|
| 95 |
|
| 96 |
$efmfb_popup_Form_html = '';
|
| 97 |
$efmfb_popup_Form_html .= '<div id="efmfb_popup_form_data" style="display:none;">';
|
| 98 |
+
$efmfb_popup_Form_html .= '<input type="hidden" style="display:none !important;" name="efmfb_popup_on_click" id="efmfb_popup_on_click" value="'.$popup_onclick.'"/>';
|
| 99 |
$efmfb_popup_Form_html .= '<input type="hidden" style="display:none !important;" name="efmfb_popup_overlay_color" id="efmfb_popup_overlay_color" value="'.$efmfb_popup_overlay_color.'"/>';
|
| 100 |
$efmfb_popup_Form_html .= '<input type="hidden" style="display:none !important;" name="efmfb_popup_animatecss_show" id="efmfb_popup_animatecss_show" value="'.$efmfb_popup_animatecss_show.'"/>';
|
| 101 |
$efmfb_popup_Form_html .= '<input type="hidden" style="display:none !important;" name="efmfb_popup_animatecss_hide" id="efmfb_popup_animatecss_hide" value="'.$efmfb_popup_animatecss_hide.'"/>';
|
app/code/community/Eflyermaker/Eflyermakerformbuilder/etc/config.xml
CHANGED
|
@@ -13,7 +13,7 @@
|
|
| 13 |
<config>
|
| 14 |
<modules>
|
| 15 |
<Eflyermaker_Eflyermakerformbuilder>
|
| 16 |
-
<version>1.0.
|
| 17 |
</Eflyermaker_Eflyermakerformbuilder>
|
| 18 |
</modules>
|
| 19 |
<!-- GLOBAL -->
|
| 13 |
<config>
|
| 14 |
<modules>
|
| 15 |
<Eflyermaker_Eflyermakerformbuilder>
|
| 16 |
+
<version>1.0.3</version>
|
| 17 |
</Eflyermaker_Eflyermakerformbuilder>
|
| 18 |
</modules>
|
| 19 |
<!-- GLOBAL -->
|
app/{code/community/Eflyermaker/Eflyermakerformbuilder → design/adminhtml/default/default/template/eflyermakerformbuilder}/.DS_Store
RENAMED
|
Binary file
|
app/design/adminhtml/default/default/template/eflyermakerformbuilder/form.phtml
CHANGED
|
@@ -63,7 +63,7 @@ $formData = Mage::registry('formData');
|
|
| 63 |
<input type="hidden" name="efmfb_form_old_id" id="efmfb_form_old_id" value="<?php if(isset($formData)) echo $formData['efmfb_id']; ?>" />
|
| 64 |
<input type="hidden" name="efmfb_form_key" id="efmfb_form_key" value="<?php if(isset($formData)) echo $formData['efmfb_form_key']; ?>" />
|
| 65 |
<input type="hidden" name="efmfb_form_structure" id="efmfb_form_structure" value="" />
|
| 66 |
-
<input type="hidden" name="form_key" value="<? echo $this->getFormKey(); ?>" />
|
| 67 |
<div class="efmfb-form-group">
|
| 68 |
<label class="efmfb-label"><?= $this->__('Name:') ?></label><br>
|
| 69 |
<input id="efmfb_form_info_name" name="efmfb_form_info_name" class="efmfb-form-control" type="text" value="<?php if(isset($formData)) echo $formData['efmfb_form_name']; ?>" maxlength="254"/>
|
| 63 |
<input type="hidden" name="efmfb_form_old_id" id="efmfb_form_old_id" value="<?php if(isset($formData)) echo $formData['efmfb_id']; ?>" />
|
| 64 |
<input type="hidden" name="efmfb_form_key" id="efmfb_form_key" value="<?php if(isset($formData)) echo $formData['efmfb_form_key']; ?>" />
|
| 65 |
<input type="hidden" name="efmfb_form_structure" id="efmfb_form_structure" value="" />
|
| 66 |
+
<input type="hidden" name="form_key" value="<?php echo $this->getFormKey(); ?>" />
|
| 67 |
<div class="efmfb-form-group">
|
| 68 |
<label class="efmfb-label"><?= $this->__('Name:') ?></label><br>
|
| 69 |
<input id="efmfb_form_info_name" name="efmfb_form_info_name" class="efmfb-form-control" type="text" value="<?php if(isset($formData)) echo $formData['efmfb_form_name']; ?>" maxlength="254"/>
|
app/design/adminhtml/default/default/template/eflyermakerformbuilder/forms_list.phtml
CHANGED
|
@@ -72,7 +72,7 @@ $efmfb_forms_list = $this->forms_list ;
|
|
| 72 |
else
|
| 73 |
{
|
| 74 |
?>
|
| 75 |
-
<tr><td colspan="
|
| 76 |
<?php
|
| 77 |
}
|
| 78 |
|
| 72 |
else
|
| 73 |
{
|
| 74 |
?>
|
| 75 |
+
<tr><td colspan="7"><h2><?= $this->__('Not Found') ?></h2></td></tr>
|
| 76 |
<?php
|
| 77 |
}
|
| 78 |
|
app/design/adminhtml/default/default/template/eflyermakerformbuilder/get_started.phtml
CHANGED
|
@@ -51,9 +51,10 @@
|
|
| 51 |
<br>
|
| 52 |
<br>
|
| 53 |
</li>
|
| 54 |
-
<li><?= $this->__('In the pop-over modal window, select
|
| 55 |
|
| 56 |
-
<img style="width:100%; max-width:560px; margin-top:10px; border:solid 1px #ccc;" src="<?php echo Mage::getDesign()->getSkinUrl(); ?>eflyermakerformbuilder/images/help3.
|
|
|
|
| 57 |
</li>
|
| 58 |
<li><?= $this->__('Copy all the Json code');?></li>
|
| 59 |
<br>
|
|
@@ -61,7 +62,7 @@
|
|
| 61 |
</ol>
|
| 62 |
<hr>
|
| 63 |
<br>
|
| 64 |
-
<h3><?= $this->__('Back In
|
| 65 |
<ol>
|
| 66 |
<li><?= $this->__('Click on <a class="createForm" href="javascript:void(0)">Create a new form</a> button located in menu bar at your right');?></li>
|
| 67 |
<li><?= $this->__('Past the code in the field "eFlyerMaker Json code"');?></li>
|
| 51 |
<br>
|
| 52 |
<br>
|
| 53 |
</li>
|
| 54 |
+
<li><?= $this->__('In the pop-over modal window, select Plugins then Magento');?><br>
|
| 55 |
|
| 56 |
+
<img style="width:100%; max-width:560px; margin-top:10px; border:solid 1px #ccc;" src="<?php echo Mage::getDesign()->getSkinUrl(); ?>eflyermakerformbuilder/images/help3.png"><br />
|
| 57 |
+
<img style="width:100%; max-width:560px; margin-top:10px; border:solid 1px #ccc;" src="<?php echo Mage::getDesign()->getSkinUrl(); ?>eflyermakerformbuilder/images/help4.png">
|
| 58 |
</li>
|
| 59 |
<li><?= $this->__('Copy all the Json code');?></li>
|
| 60 |
<br>
|
| 62 |
</ol>
|
| 63 |
<hr>
|
| 64 |
<br>
|
| 65 |
+
<h3><?= $this->__('Back In Magento');?></h3>
|
| 66 |
<ol>
|
| 67 |
<li><?= $this->__('Click on <a class="createForm" href="javascript:void(0)">Create a new form</a> button located in menu bar at your right');?></li>
|
| 68 |
<li><?= $this->__('Past the code in the field "eFlyerMaker Json code"');?></li>
|
app/locale/fr_CA/eflyermakerformbuilder.csv
CHANGED
|
@@ -58,7 +58,7 @@
|
|
| 58 |
"Not Found", "Introuvable"
|
| 59 |
"On Load Dialog", "Boîte de dialogue"
|
| 60 |
"This section provides you a powerfull tool to use your form as a pop-up. If you want more information about this section", "Cette section fournit un outil puissant pour utiliser votre formulaire comme un pop-up. Si vous souhaitez plus d'informations sur cette section"
|
| 61 |
-
"http://kb.eflyermaker.com/
|
| 62 |
"click here","cliquez ici"
|
| 63 |
"<strong>P.S.</strong> some styles (colors, font size, ...) may change in public view due to your website style.", "<strong>Notez-bien : </strong>certains styles (couleurs, taille de la police, etc) peuvent être modifier en raison du thème de votre site."
|
| 64 |
"Box", "Boîte"
|
|
@@ -98,9 +98,9 @@
|
|
| 98 |
"From eFlyerMaker", "À partir de eFlyerMaker"
|
| 99 |
"Login to your <a href=""https://campaign.eflyermaker.com/?utm_source=Magento_1.9.x&utm_medium=Plugin&utm_campaign=magento1_en"" target=""_blank"">eFlyerMaker's</a> account or create your <a href=""https://campaign.eflyermaker.com/?signup&utm_source=Magento_1.9.x&utm_medium=Plugin&utm_campaign=magento1_en"" target=""_blank"">free account now</a>","Connectez-vous à votre compte <a href=""https://campagne.eflyermaker.com/?utm_source=Magento_1.9.x&utm_medium=Plugin&utm_campaign=magento1_fr"" target=""_blank"">eFlyerMaker</a> ou créez-vous un <a href=""https://campagne.eflyermaker.com/?inscription&utm_source=Magento_1.9.x&utm_medium=Plugin&utm_campaign=magento1_fr"" target=""_blank"">compte gratuit</a>"
|
| 100 |
"Under Newsletter, click on ""Sign-Up HTML Code""", "À droite de la publication de votre choix, cliquez sur ""Code HTML pour le formulaire d'abonnement"""
|
| 101 |
-
"In the pop-over modal window, select
|
| 102 |
"Copy all the Json code", "Copiez tout le codage JSON"
|
| 103 |
-
"Back In
|
| 104 |
"Click on <a class=""createForm"" href=""javascript:void(0)"">Create a new form</a> button located in menu bar at your right", "Cliquez sur le bouton ""<a class=""createForm"" href=""javascript:void(0)"">Créer un nouveau formulaire</a>"" situé dans la barre de menu à votre droite"
|
| 105 |
"Past the code in the field ""eFlyerMaker Json code""", "Copiez le codage JSON dans le champ ""Le code JSON de eFlyerMaker"" puis cliquez sur ""Création de formulaire"", votre nouveau formulaire devrait apparaitre dans la zone blanche. "
|
| 106 |
"Create a new form", "Création de formulaire"
|
| 58 |
"Not Found", "Introuvable"
|
| 59 |
"On Load Dialog", "Boîte de dialogue"
|
| 60 |
"This section provides you a powerfull tool to use your form as a pop-up. If you want more information about this section", "Cette section fournit un outil puissant pour utiliser votre formulaire comme un pop-up. Si vous souhaitez plus d'informations sur cette section"
|
| 61 |
+
"http://kb.eflyermaker.com/magento-signup-form-plugin", "https://kb.eflyermaker.com/magento-signup-form-plugin-fr"
|
| 62 |
"click here","cliquez ici"
|
| 63 |
"<strong>P.S.</strong> some styles (colors, font size, ...) may change in public view due to your website style.", "<strong>Notez-bien : </strong>certains styles (couleurs, taille de la police, etc) peuvent être modifier en raison du thème de votre site."
|
| 64 |
"Box", "Boîte"
|
| 98 |
"From eFlyerMaker", "À partir de eFlyerMaker"
|
| 99 |
"Login to your <a href=""https://campaign.eflyermaker.com/?utm_source=Magento_1.9.x&utm_medium=Plugin&utm_campaign=magento1_en"" target=""_blank"">eFlyerMaker's</a> account or create your <a href=""https://campaign.eflyermaker.com/?signup&utm_source=Magento_1.9.x&utm_medium=Plugin&utm_campaign=magento1_en"" target=""_blank"">free account now</a>","Connectez-vous à votre compte <a href=""https://campagne.eflyermaker.com/?utm_source=Magento_1.9.x&utm_medium=Plugin&utm_campaign=magento1_fr"" target=""_blank"">eFlyerMaker</a> ou créez-vous un <a href=""https://campagne.eflyermaker.com/?inscription&utm_source=Magento_1.9.x&utm_medium=Plugin&utm_campaign=magento1_fr"" target=""_blank"">compte gratuit</a>"
|
| 100 |
"Under Newsletter, click on ""Sign-Up HTML Code""", "À droite de la publication de votre choix, cliquez sur ""Code HTML pour le formulaire d'abonnement"""
|
| 101 |
+
"In the pop-over modal window, select Plugins then Magento", "Dans la fenêtre qui vient d'apparaitre, cliquez Plugins puis Magento"
|
| 102 |
"Copy all the Json code", "Copiez tout le codage JSON"
|
| 103 |
+
"Back In Magento", "Retournez dans Magento"
|
| 104 |
"Click on <a class=""createForm"" href=""javascript:void(0)"">Create a new form</a> button located in menu bar at your right", "Cliquez sur le bouton ""<a class=""createForm"" href=""javascript:void(0)"">Créer un nouveau formulaire</a>"" situé dans la barre de menu à votre droite"
|
| 105 |
"Past the code in the field ""eFlyerMaker Json code""", "Copiez le codage JSON dans le champ ""Le code JSON de eFlyerMaker"" puis cliquez sur ""Création de formulaire"", votre nouveau formulaire devrait apparaitre dans la zone blanche. "
|
| 106 |
"Create a new form", "Création de formulaire"
|
app/locale/fr_FR/eflyermakerformbuilder.csv
CHANGED
|
@@ -58,7 +58,7 @@
|
|
| 58 |
"Not Found", "Introuvable"
|
| 59 |
"On Load Dialog", "Boîte de dialogue"
|
| 60 |
"This section provides you a powerfull tool to use your form as a pop-up. If you want more information about this section", "Cette section fournit un outil puissant pour utiliser votre formulaire comme un pop-up. Si vous souhaitez plus d'informations sur cette section"
|
| 61 |
-
"http://kb.eflyermaker.com/
|
| 62 |
"click here","cliquez ici"
|
| 63 |
"<strong>P.S.</strong> some styles (colors, font size, ...) may change in public view due to your website style.", "<strong>Notez-bien : </strong>certains styles (couleurs, taille de la police, etc) peuvent être modifier en raison du thème de votre site."
|
| 64 |
"Box", "Boîte"
|
|
@@ -98,9 +98,9 @@
|
|
| 98 |
"From eFlyerMaker", "À partir de eFlyerMaker"
|
| 99 |
"Login to your <a href=""https://campaign.eflyermaker.com/?utm_source=Magento_1.9.x&utm_medium=Plugin&utm_campaign=magento1_en"" target=""_blank"">eFlyerMaker's</a> account or create your <a href=""https://campaign.eflyermaker.com/?signup&utm_source=Magento_1.9.x&utm_medium=Plugin&utm_campaign=magento1_en"" target=""_blank"">free account now</a>","Connectez-vous à votre compte <a href=""https://campagne.eflyermaker.com/?utm_source=Magento_1.9.x&utm_medium=Plugin&utm_campaign=magento1_fr"" target=""_blank"">eFlyerMaker</a> ou créez-vous un <a href=""https://campagne.eflyermaker.com/?inscription&utm_source=Magento_1.9.x&utm_medium=Plugin&utm_campaign=magento1_fr"" target=""_blank"">compte gratuit</a>"
|
| 100 |
"Under Newsletter, click on ""Sign-Up HTML Code""", "À droite de la publication de votre choix, cliquez sur ""Code HTML pour le formulaire d'abonnement"""
|
| 101 |
-
"In the pop-over modal window, select
|
| 102 |
"Copy all the Json code", "Copiez tout le codage JSON"
|
| 103 |
-
"Back In
|
| 104 |
"Click on <a class=""createForm"" href=""javascript:void(0)"">Create a new form</a> button located in menu bar at your right", "Cliquez sur le bouton ""<a class=""createForm"" href=""javascript:void(0)"">Créer un nouveau formulaire</a>"" situé dans la barre de menu à votre droite"
|
| 105 |
"Past the code in the field ""eFlyerMaker Json code""", "Copiez le codage JSON dans le champ ""Le code JSON de eFlyerMaker"" puis cliquez sur ""Création de formulaire"", votre nouveau formulaire devrait apparaitre dans la zone blanche. "
|
| 106 |
"Create a new form", "Création de formulaire"
|
| 58 |
"Not Found", "Introuvable"
|
| 59 |
"On Load Dialog", "Boîte de dialogue"
|
| 60 |
"This section provides you a powerfull tool to use your form as a pop-up. If you want more information about this section", "Cette section fournit un outil puissant pour utiliser votre formulaire comme un pop-up. Si vous souhaitez plus d'informations sur cette section"
|
| 61 |
+
"http://kb.eflyermaker.com/magento-signup-form-plugin", "https://kb.eflyermaker.com/magento-signup-form-plugin-fr"
|
| 62 |
"click here","cliquez ici"
|
| 63 |
"<strong>P.S.</strong> some styles (colors, font size, ...) may change in public view due to your website style.", "<strong>Notez-bien : </strong>certains styles (couleurs, taille de la police, etc) peuvent être modifier en raison du thème de votre site."
|
| 64 |
"Box", "Boîte"
|
| 98 |
"From eFlyerMaker", "À partir de eFlyerMaker"
|
| 99 |
"Login to your <a href=""https://campaign.eflyermaker.com/?utm_source=Magento_1.9.x&utm_medium=Plugin&utm_campaign=magento1_en"" target=""_blank"">eFlyerMaker's</a> account or create your <a href=""https://campaign.eflyermaker.com/?signup&utm_source=Magento_1.9.x&utm_medium=Plugin&utm_campaign=magento1_en"" target=""_blank"">free account now</a>","Connectez-vous à votre compte <a href=""https://campagne.eflyermaker.com/?utm_source=Magento_1.9.x&utm_medium=Plugin&utm_campaign=magento1_fr"" target=""_blank"">eFlyerMaker</a> ou créez-vous un <a href=""https://campagne.eflyermaker.com/?inscription&utm_source=Magento_1.9.x&utm_medium=Plugin&utm_campaign=magento1_fr"" target=""_blank"">compte gratuit</a>"
|
| 100 |
"Under Newsletter, click on ""Sign-Up HTML Code""", "À droite de la publication de votre choix, cliquez sur ""Code HTML pour le formulaire d'abonnement"""
|
| 101 |
+
"In the pop-over modal window, select Plugins then Magento", "Dans la fenêtre qui vient d'apparaitre, cliquez Plugins puis Magento"
|
| 102 |
"Copy all the Json code", "Copiez tout le codage JSON"
|
| 103 |
+
"Back In Magento", "Retournez dans Magento"
|
| 104 |
"Click on <a class=""createForm"" href=""javascript:void(0)"">Create a new form</a> button located in menu bar at your right", "Cliquez sur le bouton ""<a class=""createForm"" href=""javascript:void(0)"">Créer un nouveau formulaire</a>"" situé dans la barre de menu à votre droite"
|
| 105 |
"Past the code in the field ""eFlyerMaker Json code""", "Copiez le codage JSON dans le champ ""Le code JSON de eFlyerMaker"" puis cliquez sur ""Création de formulaire"", votre nouveau formulaire devrait apparaitre dans la zone blanche. "
|
| 106 |
"Create a new form", "Création de formulaire"
|
package.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>eFlyerMaker</name>
|
| 4 |
-
<version>1.0.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://www.gnu.org/licenses/gpl-3.0.html">GPLv3</license>
|
| 7 |
<channel>community</channel>
|
|
@@ -9,12 +9,11 @@
|
|
| 9 |
<summary>Get the Magento eFlyerMaker's Newsletter Sign Up Forms Builder Plugin. Ready-to use, 100% customizable.</summary>
|
| 10 |
<description>Email marketing being in constant evolution, the game seems to have changed again. Enter the Magento eFlyerMaker Forms Builder Plugin.
|
| 11 |
Now you can fully customize the look or the content of your sign-up form. Ready-to use, 100% customizable, Including more than 75 specials effects.</description>
|
| 12 |
-
<notes>Tested for Magento 1.9
|
| 13 |
-
First version available to public</notes>
|
| 14 |
<authors><author><name>eflyermaker</name><user>eflyermaker</user><email>welcome@eflyermaker.com</email></author></authors>
|
| 15 |
-
<date>
|
| 16 |
-
<time>
|
| 17 |
-
<contents><target name="magelocale"><dir name="en_US"><file name="eflyermakerformbuilder.csv" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir><dir name="fr_CA"><file name="eflyermakerformbuilder.csv" hash="ec120bc43df1a26c5f06acf3a64c7b86"/></dir><dir name="fr_FR"><file name="eflyermakerformbuilder.csv" hash="ec120bc43df1a26c5f06acf3a64c7b86"/></dir></target><target name="magecommunity"><dir name="Eflyermaker"><dir name="Eflyermakerformbuilder"><dir name="Block"><dir name="Adminhtml"><file name="Eflyermakerformbuilder.php" hash="66b3bbbacf859136586899b81f63b74b"/><file name="Form.php" hash="af31ee6cfd4d047586b339ffb08a6ea1"/></dir></dir><dir name="Helper"><file name="Data.php" hash="163b3bcd66a897f6ff4fda1f90678ab9"/></dir><dir name="Model"><file name="Form.php" hash="97b812c53c98927b99a13832bb8b6a8c"/><dir name="Mysql4"><dir name="Form"><file name="Collection.php" hash="4e79d96299e0a2cada24700fa384a646"/></dir><file name="Form.php" hash="9ffef24f2d9ae46ee5c54abde54e66d9"/><dir name="Popup"><file name="Collection.php" hash="e0c38b250ae92565219de0e833f9d80a"/></dir><file name="Popup.php" hash="2fa121790676326e78e7baf2795dfd0a"/></dir><file name="Popup.php" hash="6a684833f5461619f7b00c5710a59303"/><dir name="Resource"><file name="Setup.php" hash="81278eaf093c25443bc712964f3a107d"/></dir><dir name="Template"><file name="Filter.php" hash="2787745496564703e771bd9988ae157d"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="EflyermakerformbuilderController.php" hash="22da72bf911d67dcff55cf7c9b5117dd"/></dir><file name="IndexController.php" hash="d2cdb00975221279ed31960892cd2272"/></dir><dir name="etc"><file name="config.xml" hash="696718253c502b4dd94e1914c0e9d910"/></dir><dir name="sql"><dir name="Eflyermaker_eflyermakerformbuilder_setup"><file name="mysql4-install-1.0.0.php" hash="efe675b4ccfe530410fd3ef3f906192e"/></dir></dir><file name=".DS_Store" hash="fdcb58b04793b85c1071409b14763847"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="eflyermakerformbuilder.xml" hash="7db056483f81b42f6987802cccc37b4e"/></dir><dir name="template"><dir name="eflyermakerformbuilder"><file name="about.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="eflyermakerformbuilder.phtml" hash="45bcf63e3bc1d661a7e3676b8c201950"/><file name="form.phtml" hash="dc310e5d5fbed58a63195ee34841b166"/><file name="forms_list.phtml" hash="3345760314f3d427d5f0d2a4126a87f9"/><file name="get_started.phtml" hash="cec8a3c082822e76d9dd2259151f20e0"/><file name="header.phtml" hash="33f4f15a16a9843faf6a25d4f387b6fd"/><file name="popup.phtml" hash="9df94b5235a4db34ee9670fd1004241b"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="eflyermakerformbuilder"><file name="eflyermakerformbuilder.xml" hash="4e9ae856335928f2a07ab2baea02c7c7"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Eflyermaker_Eflyermakerformbuilder.xml" hash="a34aeddc867fec13954493b98df52caa"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="eflyermakerformbuilder"><dir name="css"><file name="animate.css" hash="07f146141537e04ee282a965d8053198"/><file name="efmfb_admin.css" hash="8db91ec255a97021f5d0583f64e00ba4"/></dir><dir name="font-awesome-4.5.0"><file name="HELP-US-OUT.txt" hash="33f55dbe0672826c0d0b617b290ed742"/><dir name="css"><file name="font-awesome.css" hash="5343ee1a287a65ff20961476fd8a6188"/><file name="font-awesome.min.css" hash="4fbd15cb6047af93373f4f895639c8bf"/></dir><dir name="fonts"><file name="FontAwesome.otf" hash="87d8ca3ddc57e7d2da6226e480f90457"/><file name="fontawesome-webfont.eot" hash="32400f4e08932a94d8bfd2422702c446"/><file name="fontawesome-webfont.svg" hash="f775f9cca88e21d45bebe185b27c0e5b"/><file name="fontawesome-webfont.ttf" hash="a3de2170e4e9df77161ea5d3f31b2668"/><file name="fontawesome-webfont.woff" hash="a35720c2fed2c7f043bc7e4ffb45e073"/><file name="fontawesome-webfont.woff2" hash="db812d8a70a4e88e888744c1c9a27e89"/></dir><dir name="less"><file name="animated.less" hash="08baef05e05301cabc91599a54921081"/><file name="bordered-pulled.less" hash="898f90e40876883214bbd121b0c20e9f"/><file name="core.less" hash="fb4efe4ae63737706875bbbfc7b7e9af"/><file name="fixed-width.less" hash="5e07ec001f8d21bd279c12ee542813f7"/><file name="font-awesome.less" hash="468f606d3d79e0de653ad010c0e24c0d"/><file name="icons.less" hash="e307cef3a4e7ea676babf6150d0265a7"/><file name="larger.less" hash="8cb65280c0f889daf72626c21a7c8628"/><file name="list.less" hash="975571323cf880a4a30601998236b027"/><file name="mixins.less" hash="63afa4054431cd255dd522314d42fe01"/><file name="path.less" hash="3ae443e0386cc3a69ff47d641aefb74b"/><file name="rotated-flipped.less" hash="a8476cdc50c264abd11ff59d6a9dd025"/><file name="stacked.less" hash="518e2b2d263982d2caa1e6514b4b4eac"/><file name="variables.less" hash="49b82ead1bba3097f60dd1c8d4128a3c"/></dir><dir name="scss"><file name="_animated.scss" hash="39ff4f359a7b81d6585075715f41e5dc"/><file name="_bordered-pulled.scss" hash="4cad0df17bf40327feae33fa9a6c6ba2"/><file name="_core.scss" hash="ef059a98cf9de6ca5b77ee6850771cf0"/><file name="_fixed-width.scss" hash="9277ab6964a434d499873687b00be906"/><file name="_icons.scss" hash="2718c9b0b198345b31c19d3830c223df"/><file name="_larger.scss" hash="e95931566f6fc6ad5685c4fa9802e206"/><file name="_list.scss" hash="7107e80b053928271d5fcf422dc29490"/><file name="_mixins.scss" hash="2052155a929be2769df84be98617f310"/><file name="_path.scss" hash="ab5a9e8388563e097b5ce835601f01d2"/><file name="_rotated-flipped.scss" hash="9f5d4bc6fadea89328d2aac26574a9d8"/><file name="_stacked.scss" hash="5594237226aedfbca2fa1c7f4604c214"/><file name="_variables.scss" hash="8d253b1500cfc4214f23820d7d9a13c3"/><file name="font-awesome.scss" hash="507b6625f2be2b82b178a2658a338ade"/></dir></dir><dir name="images"><file name="eFlyerMaker_logo.png" hash="0f1f6613922a9109f41d8c8b7ee7cf3a"/><file name="efmfb_ajax.gif" hash="ccb3e73bf752de290588dc703301f71a"/><file name="help1.jpg" hash="d0de40004cc642bce3835f8bcdc3fc2a"/><file name="help2.jpg" hash="b66cebd699c99887f61ba3405ca83f8e"/><file name="help3.jpg" hash="d2c5073dc13a6b1a7a3f4daffe30a939"/><file name="help3.png" hash="545c44360694e3571cc84dcf5c9e290b"/><file name="help3_.jpg" hash="ccaaa58fb13f6d49bb7242d4cd402185"/><file name="logo-eflyermaker-en.png" hash="41d920af5608e2210903cb9079952d4c"/></dir><dir name="jquery-ui-1.11.4"><dir name="external"><dir name="jquery"><file name="jquery.js" hash="91515770ce8c55de23b306444d8ea998"/></dir></dir><dir name="images"><file name="ui-bg_diagonals-thick_18_b81900_40x40.png" hash="4d4e638960a1a29b0d6b693b445087da"/><file name="ui-bg_diagonals-thick_20_666666_40x40.png" hash="d0cc3ffc3dc84d3a7c48867c75e2485f"/><file name="ui-bg_flat_10_000000_40x100.png" hash="c31d5fc3eb7d82c628a82e3b87024cd1"/><file name="ui-bg_glass_100_f6f6f6_1x400.png" hash="c17f552e8f4697d7608c57653af36df0"/><file name="ui-bg_glass_100_fdf5ce_1x400.png" hash="fe58c3539111d3021776e6833169c5e1"/><file name="ui-bg_glass_65_ffffff_1x400.png" hash="b624f702075cd719a38f428e143025ea"/><file name="ui-bg_gloss-wave_35_f6a828_500x100.png" hash="23932de7c235b03187b8a5de3d024490"/><file name="ui-bg_highlight-soft_100_eeeeee_1x100.png" hash="0b708185ce8927f18c7b3b82a7e7c247"/><file name="ui-bg_highlight-soft_75_ffe45c_1x100.png" hash="53acc69aaee6e2cb73b2021317e24af3"/><file name="ui-icons_222222_256x240.png" hash="4c27b34156b7a3776f31cc456ca01c10"/><file name="ui-icons_228ef1_256x240.png" hash="2f257489d9600ddf56d195a179ebc9df"/><file name="ui-icons_ef8c08_256x240.png" hash="772a64d6df4b93d230e9b38e1ab7522a"/><file name="ui-icons_ffd27a_256x240.png" hash="6686d21b904e18b100210169bb1c04ad"/><file name="ui-icons_ffffff_256x240.png" hash="a19fe1b2d726e920c12e43a65df9039a"/></dir><file name="index.html" hash="0ad8102e6966928764aab2d547e7f88a"/><file name="jquery-ui.css" hash="f635c10273900261c5f52f8fbd574bd2"/><file name="jquery-ui.js" hash="04a4db2983450a2970c459ba87b4210a"/><file name="jquery-ui.min.css" hash="26812a28850395f8f865be4893fb20c7"/><file name="jquery-ui.min.js" hash="d935d506ae9c8dd9e0f96706fbb91f65"/><file name="jquery-ui.structure.css" hash="532bb3ac04f943c488d555d7f26e5c54"/><file name="jquery-ui.structure.min.css" hash="cff750de5357f68ee80724d24547cbdd"/><file name="jquery-ui.theme.css" hash="5588e19871bc8ef086ed20773e8a726f"/><file name="jquery-ui.theme.min.css" hash="96669c49283ce254e48624bedcd93afe"/></dir><dir name="jquery-ui-1.11.4.custom"><dir name="external"><dir name="jquery"><file name="jquery.js" hash="91515770ce8c55de23b306444d8ea998"/></dir></dir><dir name="images"><file name="ui-icons_444444_256x240.png" hash="d80747d34afb87753b51d45a36f8bd17"/><file name="ui-icons_555555_256x240.png" hash="1e70a2d46244ee4070fd47152bd71db1"/><file name="ui-icons_777620_256x240.png" hash="eb4a975c630f379279fe78c604d0b36c"/><file name="ui-icons_777777_256x240.png" hash="68855e6e3d288ab126a1f1dd82b64e26"/><file name="ui-icons_cc0000_256x240.png" hash="7c81a6253b77a9fdaf51bb1038f8c840"/><file name="ui-icons_ffffff_256x240.png" hash="41612b0f4a034424f8321c9f824a94da"/></dir><file name="index.html" hash="eec03c770559281e8f7e02f7b49da91f"/><file name="jquery-ui.css" hash="f438d26426e547a68290cdcf7684a58b"/><file name="jquery-ui.js" hash="3cb9c95e213b25ecdaee8db03dabe289"/><file name="jquery-ui.min.css" hash="686dbbb58c391c889556bb7172b13ac5"/><file name="jquery-ui.min.js" hash="f4efc50acc8ad4e23a48fc016a732ef9"/><file name="jquery-ui.structure.css" hash="d3c7e36562761d40eb1495fb448e7e0e"/><file name="jquery-ui.structure.min.css" hash="6d7c99f2356264158ca5b7fd5700ff5d"/><file name="jquery-ui.theme.css" hash="c92e67beb260dd2702736da71408b4d2"/><file name="jquery-ui.theme.min.css" hash="2626160b374ebb5dbc7a109d2edae079"/></dir><dir name="js"><file name="bootstrap-tooltip.js" hash="c4a6379c9f74d73e0e045be0fefdf95f"/><file name="efmfb_admin.js" hash="fba52e695b3d5f25a33bc8f2a188e98c"/><file name="efmfb_admin_welcome.js" hash="2228e977ebea8966e27929f43e39cb67"/><file name="efmfb_ajax.js" hash="46af6da522920b672e3df4c284f09763"/><file name="efmfb_globals.js" hash="3c35c578d351cd5b9531584badfb71e8"/><file name="efmfb_manage_forms.js" hash="c9e378430b58ddf39ddb6d96799cb966"/><file name="efmfb_popup_options.js" hash="797d36b65aa33aa8b11d31e80585a9ea"/><file name="efmfb_popup_setup.js" hash="fafa62ffd61f345c93bc811cda19ee0b"/><dir name="iris"><file name="iris-basic.js" hash="fe945d7d6664d27f09e529c7ed14e1f3"/><file name="iris-basic.min.js" hash="6c348923e1c49f1c870fac207fc81833"/><file name="iris.js" hash="770534d5334b5d7ad86c7d885af9d1e8"/><file name="iris.min.js" hash="75c63560c640c4a6c31f5565dfb0e8a9"/></dir><dir name="jquery"><file name="jquery-1.11.3.min.js" hash="b091a47f6b91e26c93a848092c6f3788"/><file name="jquery-1.12.1.js" hash="62f69d29b6f01c8d477a547cedd922f2"/><file name="jquery-1.12.1.min.js" hash="1d244cb043be8157f0050ce9e45c9ef2"/></dir><file name="jquery.bpopup.js" hash="295b0ca14f9fb335a84791e655a4d99d"/><file name="jquery.bpopup.min.js" hash="204ec5bd1f07bb6eb37b0da75badfc16"/><dir name="tinymce-plugins"><file name="efmfb-tinymce-button-plugin.js" hash="bfe92b50b1ad4826eb43e0952d55711a"/></dir></dir><dir name="noUiSlider.8.3.0"><file name="nouislider.css" hash="b48cdcefca16da759bcac342050e66c8"/><file name="nouislider.js" hash="813a80d3200f1b6737df56a6e2491380"/><file name="nouislider.min.css" hash="d2509b2c466924831bace0fb8dfce960"/><file name="nouislider.min.js" hash="dd19d897f5ee7cfca3543be98595fef1"/><file name="nouislider.pips.css" hash="46f3feefbfa932461d513348f530a2cd"/><file name="nouislider.tooltips.css" hash="a1aa715a5c5e7c319e271cebd090d128"/><file name="wNumb.js" hash="93a67b46225adb884fffc0593d7c4381"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="eflyermakerformbuilder"><file name="animate.css" hash="07f146141537e04ee282a965d8053198"/><file name="efmfb_public.css" hash="e40acd6922a7cab81902a504495674c4"/><file name="efmfb_public.js" hash="a68be77538499a7c70f535f288f2dff7"/><file name="jquery-noConflict.js" hash="3179f2255b046d5f2e9a71e365287bef"/><file name="jquery.bpopup.js" hash="295b0ca14f9fb335a84791e655a4d99d"/><file name="jquery.bpopup.min.js" hash="204ec5bd1f07bb6eb37b0da75badfc16"/></dir></dir></dir></dir></target></contents>
|
| 18 |
<compatible/>
|
| 19 |
-
<dependencies><required><php><min>5.
|
| 20 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>eFlyerMaker</name>
|
| 4 |
+
<version>1.0.2</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://www.gnu.org/licenses/gpl-3.0.html">GPLv3</license>
|
| 7 |
<channel>community</channel>
|
| 9 |
<summary>Get the Magento eFlyerMaker's Newsletter Sign Up Forms Builder Plugin. Ready-to use, 100% customizable.</summary>
|
| 10 |
<description>Email marketing being in constant evolution, the game seems to have changed again. Enter the Magento eFlyerMaker Forms Builder Plugin.
|
| 11 |
Now you can fully customize the look or the content of your sign-up form. Ready-to use, 100% customizable, Including more than 75 specials effects.</description>
|
| 12 |
+
<notes>Tested for Magento 1.9</notes>
|
|
|
|
| 13 |
<authors><author><name>eflyermaker</name><user>eflyermaker</user><email>welcome@eflyermaker.com</email></author></authors>
|
| 14 |
+
<date>2017-02-06</date>
|
| 15 |
+
<time>19:17:11</time>
|
| 16 |
+
<contents><target name="magelocale"><dir name="en_US"><file name="eflyermakerformbuilder.csv" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir><dir name="fr_CA"><file name="eflyermakerformbuilder.csv" hash="184c218b388c915b97ebb68b688c04eb"/></dir><dir name="fr_FR"><file name="eflyermakerformbuilder.csv" hash="184c218b388c915b97ebb68b688c04eb"/></dir></target><target name="magecommunity"><dir name="Eflyermaker"><dir name="Eflyermakerformbuilder"><dir name="Block"><dir name="Adminhtml"><file name="Eflyermakerformbuilder.php" hash="66b3bbbacf859136586899b81f63b74b"/><file name="Form.php" hash="af31ee6cfd4d047586b339ffb08a6ea1"/></dir></dir><dir name="Helper"><file name="Data.php" hash="163b3bcd66a897f6ff4fda1f90678ab9"/></dir><dir name="Model"><file name="Form.php" hash="97b812c53c98927b99a13832bb8b6a8c"/><dir name="Mysql4"><dir name="Form"><file name="Collection.php" hash="4e79d96299e0a2cada24700fa384a646"/></dir><file name="Form.php" hash="9ffef24f2d9ae46ee5c54abde54e66d9"/><dir name="Popup"><file name="Collection.php" hash="e0c38b250ae92565219de0e833f9d80a"/></dir><file name="Popup.php" hash="2fa121790676326e78e7baf2795dfd0a"/></dir><file name="Popup.php" hash="6a684833f5461619f7b00c5710a59303"/><dir name="Resource"><file name="Setup.php" hash="81278eaf093c25443bc712964f3a107d"/></dir><dir name="Template"><file name="Filter.php" hash="ff95d0d8597ae1313044c0544dee49b5"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="EflyermakerformbuilderController.php" hash="22da72bf911d67dcff55cf7c9b5117dd"/></dir><file name="IndexController.php" hash="d2cdb00975221279ed31960892cd2272"/></dir><dir name="etc"><file name="config.xml" hash="18c4d7d30319db7adabe946898e69fde"/></dir><dir name="sql"><dir name="Eflyermaker_eflyermakerformbuilder_setup"><file name="mysql4-install-1.0.0.php" hash="efe675b4ccfe530410fd3ef3f906192e"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="eflyermakerformbuilder.xml" hash="7db056483f81b42f6987802cccc37b4e"/></dir><dir name="template"><dir name="eflyermakerformbuilder"><file name="about.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="eflyermakerformbuilder.phtml" hash="45bcf63e3bc1d661a7e3676b8c201950"/><file name="form.phtml" hash="f32ea8ff706ce47a8557827ce34aa594"/><file name="forms_list.phtml" hash="7167b8bb53d49db98a0a251c41d49508"/><file name="get_started.phtml" hash="659cb3a46cab5b2dfbe05b858f3aa9af"/><file name="header.phtml" hash="33f4f15a16a9843faf6a25d4f387b6fd"/><file name="popup.phtml" hash="9df94b5235a4db34ee9670fd1004241b"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="eflyermakerformbuilder"><file name="eflyermakerformbuilder.xml" hash="4e9ae856335928f2a07ab2baea02c7c7"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Eflyermaker_Eflyermakerformbuilder.xml" hash="a34aeddc867fec13954493b98df52caa"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="eflyermakerformbuilder"><dir name="css"><file name="animate.css" hash="07f146141537e04ee282a965d8053198"/><file name="efmfb_admin.css" hash="8db91ec255a97021f5d0583f64e00ba4"/></dir><dir name="font-awesome-4.5.0"><file name="HELP-US-OUT.txt" hash="33f55dbe0672826c0d0b617b290ed742"/><dir name="css"><file name="font-awesome.css" hash="5343ee1a287a65ff20961476fd8a6188"/><file name="font-awesome.min.css" hash="4fbd15cb6047af93373f4f895639c8bf"/></dir><dir name="fonts"><file name="FontAwesome.otf" hash="87d8ca3ddc57e7d2da6226e480f90457"/><file name="fontawesome-webfont.eot" hash="32400f4e08932a94d8bfd2422702c446"/><file name="fontawesome-webfont.svg" hash="f775f9cca88e21d45bebe185b27c0e5b"/><file name="fontawesome-webfont.ttf" hash="a3de2170e4e9df77161ea5d3f31b2668"/><file name="fontawesome-webfont.woff" hash="a35720c2fed2c7f043bc7e4ffb45e073"/><file name="fontawesome-webfont.woff2" hash="db812d8a70a4e88e888744c1c9a27e89"/></dir><dir name="less"><file name="animated.less" hash="08baef05e05301cabc91599a54921081"/><file name="bordered-pulled.less" hash="898f90e40876883214bbd121b0c20e9f"/><file name="core.less" hash="fb4efe4ae63737706875bbbfc7b7e9af"/><file name="fixed-width.less" hash="5e07ec001f8d21bd279c12ee542813f7"/><file name="font-awesome.less" hash="468f606d3d79e0de653ad010c0e24c0d"/><file name="icons.less" hash="e307cef3a4e7ea676babf6150d0265a7"/><file name="larger.less" hash="8cb65280c0f889daf72626c21a7c8628"/><file name="list.less" hash="975571323cf880a4a30601998236b027"/><file name="mixins.less" hash="63afa4054431cd255dd522314d42fe01"/><file name="path.less" hash="3ae443e0386cc3a69ff47d641aefb74b"/><file name="rotated-flipped.less" hash="a8476cdc50c264abd11ff59d6a9dd025"/><file name="stacked.less" hash="518e2b2d263982d2caa1e6514b4b4eac"/><file name="variables.less" hash="49b82ead1bba3097f60dd1c8d4128a3c"/></dir><dir name="scss"><file name="_animated.scss" hash="39ff4f359a7b81d6585075715f41e5dc"/><file name="_bordered-pulled.scss" hash="4cad0df17bf40327feae33fa9a6c6ba2"/><file name="_core.scss" hash="ef059a98cf9de6ca5b77ee6850771cf0"/><file name="_fixed-width.scss" hash="9277ab6964a434d499873687b00be906"/><file name="_icons.scss" hash="2718c9b0b198345b31c19d3830c223df"/><file name="_larger.scss" hash="e95931566f6fc6ad5685c4fa9802e206"/><file name="_list.scss" hash="7107e80b053928271d5fcf422dc29490"/><file name="_mixins.scss" hash="2052155a929be2769df84be98617f310"/><file name="_path.scss" hash="ab5a9e8388563e097b5ce835601f01d2"/><file name="_rotated-flipped.scss" hash="9f5d4bc6fadea89328d2aac26574a9d8"/><file name="_stacked.scss" hash="5594237226aedfbca2fa1c7f4604c214"/><file name="_variables.scss" hash="8d253b1500cfc4214f23820d7d9a13c3"/><file name="font-awesome.scss" hash="507b6625f2be2b82b178a2658a338ade"/></dir></dir><dir name="images"><file name="eFlyerMaker_logo.png" hash="0f1f6613922a9109f41d8c8b7ee7cf3a"/><file name="efmfb_ajax.gif" hash="ccb3e73bf752de290588dc703301f71a"/><file name="help1.jpg" hash="d0de40004cc642bce3835f8bcdc3fc2a"/><file name="help2.jpg" hash="b66cebd699c99887f61ba3405ca83f8e"/><file name="help3.jpg" hash="d2c5073dc13a6b1a7a3f4daffe30a939"/><file name="help3.png" hash="955b8b55d33b5355811cc821868718bd"/><file name="help3_.jpg" hash="ccaaa58fb13f6d49bb7242d4cd402185"/><file name="help4.png" hash="23034b3dcf5a9e1ff135784bf5e57c54"/><file name="logo-eflyermaker-en.png" hash="41d920af5608e2210903cb9079952d4c"/></dir><dir name="jquery-ui-1.11.4"><dir name="external"><dir name="jquery"><file name="jquery.js" hash="91515770ce8c55de23b306444d8ea998"/></dir></dir><dir name="images"><file name="ui-bg_diagonals-thick_18_b81900_40x40.png" hash="4d4e638960a1a29b0d6b693b445087da"/><file name="ui-bg_diagonals-thick_20_666666_40x40.png" hash="d0cc3ffc3dc84d3a7c48867c75e2485f"/><file name="ui-bg_flat_10_000000_40x100.png" hash="c31d5fc3eb7d82c628a82e3b87024cd1"/><file name="ui-bg_glass_100_f6f6f6_1x400.png" hash="c17f552e8f4697d7608c57653af36df0"/><file name="ui-bg_glass_100_fdf5ce_1x400.png" hash="fe58c3539111d3021776e6833169c5e1"/><file name="ui-bg_glass_65_ffffff_1x400.png" hash="b624f702075cd719a38f428e143025ea"/><file name="ui-bg_gloss-wave_35_f6a828_500x100.png" hash="23932de7c235b03187b8a5de3d024490"/><file name="ui-bg_highlight-soft_100_eeeeee_1x100.png" hash="0b708185ce8927f18c7b3b82a7e7c247"/><file name="ui-bg_highlight-soft_75_ffe45c_1x100.png" hash="53acc69aaee6e2cb73b2021317e24af3"/><file name="ui-icons_222222_256x240.png" hash="4c27b34156b7a3776f31cc456ca01c10"/><file name="ui-icons_228ef1_256x240.png" hash="2f257489d9600ddf56d195a179ebc9df"/><file name="ui-icons_ef8c08_256x240.png" hash="772a64d6df4b93d230e9b38e1ab7522a"/><file name="ui-icons_ffd27a_256x240.png" hash="6686d21b904e18b100210169bb1c04ad"/><file name="ui-icons_ffffff_256x240.png" hash="a19fe1b2d726e920c12e43a65df9039a"/></dir><file name="index.html" hash="0ad8102e6966928764aab2d547e7f88a"/><file name="jquery-ui.css" hash="f635c10273900261c5f52f8fbd574bd2"/><file name="jquery-ui.js" hash="04a4db2983450a2970c459ba87b4210a"/><file name="jquery-ui.min.css" hash="26812a28850395f8f865be4893fb20c7"/><file name="jquery-ui.min.js" hash="d935d506ae9c8dd9e0f96706fbb91f65"/><file name="jquery-ui.structure.css" hash="532bb3ac04f943c488d555d7f26e5c54"/><file name="jquery-ui.structure.min.css" hash="cff750de5357f68ee80724d24547cbdd"/><file name="jquery-ui.theme.css" hash="5588e19871bc8ef086ed20773e8a726f"/><file name="jquery-ui.theme.min.css" hash="96669c49283ce254e48624bedcd93afe"/></dir><dir name="jquery-ui-1.11.4.custom"><dir name="external"><dir name="jquery"><file name="jquery.js" hash="91515770ce8c55de23b306444d8ea998"/></dir></dir><dir name="images"><file name="ui-icons_444444_256x240.png" hash="d80747d34afb87753b51d45a36f8bd17"/><file name="ui-icons_555555_256x240.png" hash="1e70a2d46244ee4070fd47152bd71db1"/><file name="ui-icons_777620_256x240.png" hash="eb4a975c630f379279fe78c604d0b36c"/><file name="ui-icons_777777_256x240.png" hash="68855e6e3d288ab126a1f1dd82b64e26"/><file name="ui-icons_cc0000_256x240.png" hash="7c81a6253b77a9fdaf51bb1038f8c840"/><file name="ui-icons_ffffff_256x240.png" hash="41612b0f4a034424f8321c9f824a94da"/></dir><file name="index.html" hash="eec03c770559281e8f7e02f7b49da91f"/><file name="jquery-ui.css" hash="f438d26426e547a68290cdcf7684a58b"/><file name="jquery-ui.js" hash="3cb9c95e213b25ecdaee8db03dabe289"/><file name="jquery-ui.min.css" hash="686dbbb58c391c889556bb7172b13ac5"/><file name="jquery-ui.min.js" hash="f4efc50acc8ad4e23a48fc016a732ef9"/><file name="jquery-ui.structure.css" hash="d3c7e36562761d40eb1495fb448e7e0e"/><file name="jquery-ui.structure.min.css" hash="6d7c99f2356264158ca5b7fd5700ff5d"/><file name="jquery-ui.theme.css" hash="c92e67beb260dd2702736da71408b4d2"/><file name="jquery-ui.theme.min.css" hash="2626160b374ebb5dbc7a109d2edae079"/></dir><dir name="js"><file name="bootstrap-tooltip.js" hash="c4a6379c9f74d73e0e045be0fefdf95f"/><file name="efmfb_admin.js" hash="2b18c5eed190c08ce1d8fd5020004b43"/><file name="efmfb_admin_welcome.js" hash="2228e977ebea8966e27929f43e39cb67"/><file name="efmfb_ajax.js" hash="46af6da522920b672e3df4c284f09763"/><file name="efmfb_globals.js" hash="3c35c578d351cd5b9531584badfb71e8"/><file name="efmfb_manage_forms.js" hash="c9e378430b58ddf39ddb6d96799cb966"/><file name="efmfb_popup_options.js" hash="57bd84432e77503d1c749ff447f71fd3"/><file name="efmfb_popup_setup.js" hash="9080f4a2d6585e68ff4329838d96d1ae"/><dir name="iris"><file name="iris-basic.js" hash="fe945d7d6664d27f09e529c7ed14e1f3"/><file name="iris-basic.min.js" hash="6c348923e1c49f1c870fac207fc81833"/><file name="iris.js" hash="770534d5334b5d7ad86c7d885af9d1e8"/><file name="iris.min.js" hash="75c63560c640c4a6c31f5565dfb0e8a9"/></dir><dir name="jquery"><file name="jquery-1.11.3.min.js" hash="b091a47f6b91e26c93a848092c6f3788"/><file name="jquery-1.12.1.js" hash="62f69d29b6f01c8d477a547cedd922f2"/><file name="jquery-1.12.1.min.js" hash="1d244cb043be8157f0050ce9e45c9ef2"/></dir><file name="jquery.bpopup.js" hash="295b0ca14f9fb335a84791e655a4d99d"/><file name="jquery.bpopup.min.js" hash="204ec5bd1f07bb6eb37b0da75badfc16"/><dir name="tinymce-plugins"><file name="efmfb-tinymce-button-plugin.js" hash="bfe92b50b1ad4826eb43e0952d55711a"/></dir></dir><dir name="noUiSlider.8.3.0"><file name="nouislider.css" hash="b48cdcefca16da759bcac342050e66c8"/><file name="nouislider.js" hash="813a80d3200f1b6737df56a6e2491380"/><file name="nouislider.min.css" hash="d2509b2c466924831bace0fb8dfce960"/><file name="nouislider.min.js" hash="dd19d897f5ee7cfca3543be98595fef1"/><file name="nouislider.pips.css" hash="46f3feefbfa932461d513348f530a2cd"/><file name="nouislider.tooltips.css" hash="a1aa715a5c5e7c319e271cebd090d128"/><file name="wNumb.js" hash="93a67b46225adb884fffc0593d7c4381"/></dir><file name=".DS_Store" hash="8ba6721102add60c36fb20ff212e0d71"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="eflyermakerformbuilder"><file name="animate.css" hash="07f146141537e04ee282a965d8053198"/><file name="efmfb_public.css" hash="e40acd6922a7cab81902a504495674c4"/><file name="efmfb_public.js" hash="7753ec381a42153609d9e5ad29bfebfe"/><file name="jquery-noConflict.js" hash="3179f2255b046d5f2e9a71e365287bef"/><file name="jquery.bpopup.js" hash="295b0ca14f9fb335a84791e655a4d99d"/><file name="jquery.bpopup.min.js" hash="204ec5bd1f07bb6eb37b0da75badfc16"/></dir></dir></dir></dir></target></contents>
|
| 17 |
<compatible/>
|
| 18 |
+
<dependencies><required><php><min>5.3.0</min><max>7.0.0</max></php></required></dependencies>
|
| 19 |
</package>
|
skin/adminhtml/default/default/eflyermakerformbuilder/.DS_Store
ADDED
|
Binary file
|
skin/adminhtml/default/default/eflyermakerformbuilder/images/help3.png
CHANGED
|
Binary file
|
skin/adminhtml/default/default/eflyermakerformbuilder/images/help4.png
ADDED
|
Binary file
|
skin/adminhtml/default/default/eflyermakerformbuilder/js/efmfb_admin.js
CHANGED
|
@@ -1160,20 +1160,20 @@ jQuery(".efmfb-shortcode-container").remove();
|
|
| 1160 |
|
| 1161 |
var self = jQuery(this);
|
| 1162 |
var id = self.closest("tr").attr("efmfb-formid");
|
| 1163 |
-
text = '{{efmfb form_id="'+id+'" is_popup="1"}}';
|
| 1164 |
|
| 1165 |
var offset = self.offset();
|
| 1166 |
|
| 1167 |
-
var div_width =
|
| 1168 |
|
| 1169 |
|
| 1170 |
-
var style='position:absolute; top:'+(offset.top+15)+'px; left:'+(offset.left-div_width)+'px; background:#FFFFFF; padding:0px 5px 5px 10px; border-radius:5px; border:1px solid #f0f0f0; width:'+div_width+'px;';
|
| 1171 |
var div = '';
|
| 1172 |
|
| 1173 |
div += '<div class="efmfb-shortcode-container" style="'+style+'">'
|
| 1174 |
div += '<div style=""><span class="efmfb-close-shortcode" style="float:right; cursor:pointer;" >x</span></div><br>';
|
| 1175 |
div += '';
|
| 1176 |
-
div += '<div class="" style="padding
|
| 1177 |
div += '</div>';
|
| 1178 |
jQuery('body').append(div);
|
| 1179 |
|
| 1160 |
|
| 1161 |
var self = jQuery(this);
|
| 1162 |
var id = self.closest("tr").attr("efmfb-formid");
|
| 1163 |
+
text = '{{efmfb form_id="'+id+'" is_popup="1" popup_onclick=""}}';
|
| 1164 |
|
| 1165 |
var offset = self.offset();
|
| 1166 |
|
| 1167 |
+
var div_width = 300;
|
| 1168 |
|
| 1169 |
|
| 1170 |
+
var style='position:absolute; top:'+(offset.top+15)+'px; left:'+(offset.left-div_width)+'px; background:#FFFFFF; padding:0px 5px 5px 10px; border-radius:5px; border:1px solid #f0f0f0; text-align:center; width:'+div_width+'px;';
|
| 1171 |
var div = '';
|
| 1172 |
|
| 1173 |
div += '<div class="efmfb-shortcode-container" style="'+style+'">'
|
| 1174 |
div += '<div style=""><span class="efmfb-close-shortcode" style="float:right; cursor:pointer;" >x</span></div><br>';
|
| 1175 |
div += '';
|
| 1176 |
+
div += '<div class="" style="padding:10px 0 20px 0; width:290px; margin:0 auto;"><input type="text" class="efmfb-shortcode-selection" style="border:0; width:100%;" value=\'{{efmfb form_id="'+id+'" is_popup="1" popup_onclick=""}}\'</div>';
|
| 1177 |
div += '</div>';
|
| 1178 |
jQuery('body').append(div);
|
| 1179 |
|
skin/adminhtml/default/default/eflyermakerformbuilder/js/efmfb_popup_options.js
CHANGED
|
@@ -17,6 +17,7 @@ function efmfbSetPopupOptions(efmfb_popup_obj) {
|
|
| 17 |
var efmb_form_demo_container = jQuery('#efmb_form_demo_container').html();
|
| 18 |
jQuery('#efmfb_poup_form_content').html(efmb_form_demo_container);
|
| 19 |
// BOX
|
|
|
|
| 20 |
var efmfb_popup_classes = efmfb_popup_obj.efmfb_popup_classes;
|
| 21 |
var efmfb_popup_background_color = efmfb_popup_obj.efmfb_popup_background_color;
|
| 22 |
var efmfb_popup_width = efmfb_popup_obj.efmfb_popup_width;
|
|
@@ -53,8 +54,13 @@ function efmfbSetPopupOptions(efmfb_popup_obj) {
|
|
| 53 |
jQuery('#efmfb_poup_footer_text').html(efmfb_popup_footer_text);
|
| 54 |
|
| 55 |
|
| 56 |
-
console.log("efmfb_popup_bg_img : "+efmfb_popup_bg_img);
|
| 57 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
//****** DELAY **********
|
| 59 |
setTimeout(function() {
|
| 60 |
// efmfb_popup(options);
|
|
@@ -255,14 +261,14 @@ jQuery(document).on('click', '.efmfb-close-ui-dialog, .efmfb-b-modal', function(
|
|
| 255 |
|
| 256 |
|
| 257 |
|
| 258 |
-
console.log('rgba : '+hexToRgba(efmfb_popup_body_bg_color, efmfb_popup_body_bg_opacity));
|
| 259 |
var box_body_styles = {
|
| 260 |
background:hexToRgba(efmfb_popup_body_bg_color, efmfb_popup_body_bg_opacity)
|
| 261 |
|
| 262 |
}
|
| 263 |
efmfb_popup_body.css(box_body_styles);
|
| 264 |
|
| 265 |
-
console.log('efmfb_popup_title_has_body_bgcolor : '+efmfb_popup_title_has_body_bgcolor);
|
| 266 |
if ( efmfb_popup_title_has_body_bgcolor === '1') efmfb_title.css(box_body_styles);
|
| 267 |
//****** BOX CLOSE ICON STYLES **********
|
| 268 |
efmfb_close_icon_styles = {
|
| 17 |
var efmb_form_demo_container = jQuery('#efmb_form_demo_container').html();
|
| 18 |
jQuery('#efmfb_poup_form_content').html(efmb_form_demo_container);
|
| 19 |
// BOX
|
| 20 |
+
var efmfb_popup_on_click = efmfb_popup_obj.efmfb_popup_on_click;
|
| 21 |
var efmfb_popup_classes = efmfb_popup_obj.efmfb_popup_classes;
|
| 22 |
var efmfb_popup_background_color = efmfb_popup_obj.efmfb_popup_background_color;
|
| 23 |
var efmfb_popup_width = efmfb_popup_obj.efmfb_popup_width;
|
| 54 |
jQuery('#efmfb_poup_footer_text').html(efmfb_popup_footer_text);
|
| 55 |
|
| 56 |
|
| 57 |
+
// console.log("efmfb_popup_bg_img : "+efmfb_popup_bg_img);
|
| 58 |
|
| 59 |
+
console.log('efmfb_popup_on_click : '+efmfb_popup_on_click);
|
| 60 |
+
|
| 61 |
+
if(efmfb_popup_on_click !== '') efmfb_popup_delay = 0;
|
| 62 |
+
|
| 63 |
+
|
| 64 |
//****** DELAY **********
|
| 65 |
setTimeout(function() {
|
| 66 |
// efmfb_popup(options);
|
| 261 |
|
| 262 |
|
| 263 |
|
| 264 |
+
// console.log('rgba : '+hexToRgba(efmfb_popup_body_bg_color, efmfb_popup_body_bg_opacity));
|
| 265 |
var box_body_styles = {
|
| 266 |
background:hexToRgba(efmfb_popup_body_bg_color, efmfb_popup_body_bg_opacity)
|
| 267 |
|
| 268 |
}
|
| 269 |
efmfb_popup_body.css(box_body_styles);
|
| 270 |
|
| 271 |
+
// console.log('efmfb_popup_title_has_body_bgcolor : '+efmfb_popup_title_has_body_bgcolor);
|
| 272 |
if ( efmfb_popup_title_has_body_bgcolor === '1') efmfb_title.css(box_body_styles);
|
| 273 |
//****** BOX CLOSE ICON STYLES **********
|
| 274 |
efmfb_close_icon_styles = {
|
skin/adminhtml/default/default/eflyermakerformbuilder/js/efmfb_popup_setup.js
CHANGED
|
@@ -19,7 +19,8 @@ var efmfb_popup_form_data = jQuery('#efmfb_popup_options_form');
|
|
| 19 |
|
| 20 |
function efmfbGetPopupOptions()
|
| 21 |
{
|
| 22 |
-
|
|
|
|
| 23 |
efmfb_popup_obj.efmfb_popup_background_color = efmfb_popup_form_data.find('#efmfb_popup_bg_color').val();
|
| 24 |
efmfb_popup_obj.efmfb_popup_width = efmfb_popup_form_data.find('#efmfb_popup_width').val();
|
| 25 |
efmfb_popup_obj.efmfb_popup_height = efmfb_popup_form_data.find('#efmfb_popup_height').val();
|
| 19 |
|
| 20 |
function efmfbGetPopupOptions()
|
| 21 |
{
|
| 22 |
+
efmfb_popup_obj.efmfb_popup_on_click = "";
|
| 23 |
+
efmfb_popup_obj.efmfb_popup_classes = efmfb_popup_form_data.find('#efmfb_popup_classes').val();
|
| 24 |
efmfb_popup_obj.efmfb_popup_background_color = efmfb_popup_form_data.find('#efmfb_popup_bg_color').val();
|
| 25 |
efmfb_popup_obj.efmfb_popup_width = efmfb_popup_form_data.find('#efmfb_popup_width').val();
|
| 26 |
efmfb_popup_obj.efmfb_popup_height = efmfb_popup_form_data.find('#efmfb_popup_height').val();
|
skin/frontend/base/default/eflyermakerformbuilder/efmfb_public.js
CHANGED
|
@@ -106,7 +106,7 @@ jQuery(document).ready(function($) {
|
|
| 106 |
|
| 107 |
|
| 108 |
|
| 109 |
-
|
| 110 |
|
| 111 |
|
| 112 |
|
|
@@ -114,48 +114,120 @@ var efmfb_popup_container = jQuery("#efmfb_popup_container").html();
|
|
| 114 |
jQuery("#efmfb_popup_container").empty();
|
| 115 |
jQuery('body').append(efmfb_popup_container);
|
| 116 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 117 |
|
| 118 |
|
| 119 |
var delay = jQuery("#efmfb_popup_form_data").find('#efmfb_popup_delay').val();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 120 |
|
| 121 |
-
|
|
|
|
| 122 |
|
| 123 |
|
| 124 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 125 |
{
|
| 126 |
-
opacity: jQuery("#efmfb_popup_overlay_opacity").val(),
|
| 127 |
-
positionStyle: 'fixed', //'fixed' or 'absolute'
|
| 128 |
-
modalClose: false,
|
| 129 |
-
// follow: [false, false], //x, y
|
| 130 |
-
fadeSpeed: 'slow', //can be a string ('slow'/'fast') or int
|
| 131 |
-
followSpeed: 1500, //can be a string ('slow'/'fast') or int
|
| 132 |
-
modalColor: jQuery("#efmfb_popup_overlay_color").val(),
|
| 133 |
-
speed: 450,
|
| 134 |
-
onOpen: function() {
|
| 135 |
-
jQuery('body').addClass('stop-scrolling');
|
| 136 |
-
jQuery('#efmfb_popup_form').addClass('animated ' + jQuery("#efmfb_popup_animatecss_show").val());
|
| 137 |
-
},
|
| 138 |
-
onClose: function() {
|
| 139 |
-
jQuery('body').removeClass('stop-scrolling');
|
| 140 |
-
}
|
| 141 |
-
}, function(){
|
| 142 |
-
// callback
|
| 143 |
-
} );
|
| 144 |
|
| 145 |
-
|
|
|
|
|
|
|
| 146 |
|
|
|
|
|
|
|
|
|
|
| 147 |
|
| 148 |
|
| 149 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 150 |
|
| 151 |
jQuery(document).on('click', '.efmfb-close-ui-dialog, .efmfb-b-modal', function(){
|
| 152 |
-
jQuery('#efmfb_popup_form').removeClass('animated ' + jQuery("#efmfb_popup_animatecss_show").val()).addClass('animated ' + jQuery("#efmfb_popup_animatecss_hide").val());
|
| 153 |
efmfb_bPopup.close();
|
| 154 |
});
|
| 155 |
|
| 156 |
|
| 157 |
|
| 158 |
|
|
|
|
|
|
|
| 159 |
//===============================================================================
|
| 160 |
|
| 161 |
|
|
@@ -322,11 +394,13 @@ var efmfb_popup_rotate_in_success = efmfb_popup_form_data.find('#efmfb_popup_rot
|
|
| 322 |
efmfb_popup_form.addClass('animated flipInY');
|
| 323 |
}
|
| 324 |
|
| 325 |
-
jQuery('.efmfb-popup-body
|
|
|
|
|
|
|
| 326 |
|
| 327 |
-
var el = jQuery(".efmfb-popup");
|
| 328 |
-
var h = parseInt( jQuery('.efmfb-popup-body-container').outerHeight() )+50;
|
| 329 |
-
el.animate({ height: h+"px" }, 400 );
|
| 330 |
}
|
| 331 |
else
|
| 332 |
{
|
|
@@ -453,6 +527,9 @@ if( efmfb_popup_form_data.length > 0 )
|
|
| 453 |
var efmfb_popup_obj = new Object();
|
| 454 |
|
| 455 |
|
|
|
|
|
|
|
|
|
|
| 456 |
efmfb_popup_obj.efmfb_popup_background_color = efmfb_popup_form_data.find('#efmfb_popup_bg_color').val();
|
| 457 |
|
| 458 |
efmfb_popup_obj.efmfb_popup_overlay_color = efmfb_popup_form_data.find('#efmfb_popup_overlay_color').val();
|
| 106 |
|
| 107 |
|
| 108 |
|
| 109 |
+
var efmfb_popup_form = jQuery('#efmfb_popup_form');
|
| 110 |
|
| 111 |
|
| 112 |
|
| 114 |
jQuery("#efmfb_popup_container").empty();
|
| 115 |
jQuery('body').append(efmfb_popup_container);
|
| 116 |
|
| 117 |
+
jQuery('#efmfb_popup_form').hide();
|
| 118 |
+
|
| 119 |
+
|
| 120 |
+
|
| 121 |
+
|
| 122 |
+
|
| 123 |
+
|
| 124 |
|
| 125 |
|
| 126 |
var delay = jQuery("#efmfb_popup_form_data").find('#efmfb_popup_delay').val();
|
| 127 |
+
var trigger = jQuery("#efmfb_popup_form_data").find('#efmfb_popup_on_click').val();
|
| 128 |
+
var efmfb_popup_animatecss_show = jQuery("#efmfb_popup_form_data").find('#efmfb_popup_animatecss_show').val();
|
| 129 |
+
var efmfb_popup_animatecss_hide = jQuery("#efmfb_popup_form_data").find('#efmfb_popup_animatecss_hide').val();
|
| 130 |
+
|
| 131 |
+
if(trigger !== '')
|
| 132 |
+
{
|
| 133 |
+
|
| 134 |
|
| 135 |
+
delay = 0;
|
| 136 |
+
jQuery(trigger).on('click', function(){
|
| 137 |
|
| 138 |
|
| 139 |
+
|
| 140 |
+
if( jQuery('#efmfb_popup_animatecss_show').val() !== '')
|
| 141 |
+
{
|
| 142 |
+
jQuery('#efmfb_popup_form').addClass('animated ' + efmfb_popup_animatecss_show).one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function() {
|
| 143 |
+
jQuery(this).removeClass('animated ' + efmfb_popup_animatecss_show);
|
| 144 |
+
});
|
| 145 |
+
}
|
| 146 |
+
|
| 147 |
+
|
| 148 |
+
displayForm();
|
| 149 |
+
});
|
| 150 |
+
|
| 151 |
+
}
|
| 152 |
+
else
|
| 153 |
+
{
|
| 154 |
+
displayForm();
|
| 155 |
+
}
|
| 156 |
+
|
| 157 |
+
|
| 158 |
+
function displayForm()
|
| 159 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 160 |
|
| 161 |
+
jQuery('.efmfb-popup-body').show();
|
| 162 |
+
jQuery('.efmfb_response_msg').remove();
|
| 163 |
+
jQuery('#sub_form').trigger('reset');
|
| 164 |
|
| 165 |
+
// var el = jQuery(".efmfb-popup");
|
| 166 |
+
// var h = parseInt( jQuery('.efmfb-popup-body-container').outerHeight() )+50;
|
| 167 |
+
// el.animate({ height: h+"px" }, 400 );
|
| 168 |
|
| 169 |
|
| 170 |
|
| 171 |
+
if(trigger !== '')
|
| 172 |
+
{
|
| 173 |
+
jQuery('#efmfb_popup_form').find('[name="email"]').val('');
|
| 174 |
+
var btn_email = '';
|
| 175 |
+
|
| 176 |
+
if( jQuery(trigger).attr('efmfb-email') )
|
| 177 |
+
{
|
| 178 |
+
btn_email = jQuery(trigger).attr('efmfb-email');
|
| 179 |
+
}
|
| 180 |
+
else if( jQuery(trigger).attr('data-efmfb-email') )
|
| 181 |
+
{
|
| 182 |
+
btn_email = jQuery(trigger).attr('data-efmfb-email');
|
| 183 |
+
}
|
| 184 |
+
|
| 185 |
+
if( btn_email && jQuery('#'+btn_email).length )
|
| 186 |
+
{
|
| 187 |
+
var user_email = jQuery('#'+btn_email).val() || '';
|
| 188 |
+
if( user_email ) jQuery('#efmfb_popup_form').find('[name="email"]').val( user_email );
|
| 189 |
+
}
|
| 190 |
+
}
|
| 191 |
+
|
| 192 |
+
setTimeout(function(){
|
| 193 |
+
efmfb_bPopup = jQuery('#efmfb_popup_form').bPopup(
|
| 194 |
+
{
|
| 195 |
+
opacity: jQuery("#efmfb_popup_overlay_opacity").val(),
|
| 196 |
+
positionStyle: 'fixed', //'fixed' or 'absolute'
|
| 197 |
+
modalClose: false,
|
| 198 |
+
// follow: [false, false], //x, y
|
| 199 |
+
fadeSpeed: 'slow', //can be a string ('slow'/'fast') or int
|
| 200 |
+
followSpeed: 1500, //can be a string ('slow'/'fast') or int
|
| 201 |
+
modalColor: jQuery("#efmfb_popup_overlay_color").val(),
|
| 202 |
+
speed: 450,
|
| 203 |
+
onOpen: function() {
|
| 204 |
+
jQuery('body').addClass('stop-scrolling');
|
| 205 |
+
jQuery('#efmfb_popup_form').addClass('animated ' + jQuery("#efmfb_popup_animatecss_show").val());
|
| 206 |
+
},
|
| 207 |
+
onClose: function() {
|
| 208 |
+
jQuery('body').removeClass('stop-scrolling');
|
| 209 |
+
jQuery('#efmfb_popup_form').removeClass('animated ' + jQuery("#efmfb_popup_animatecss_hide").val());
|
| 210 |
+
}
|
| 211 |
+
}, function(){
|
| 212 |
+
// callback
|
| 213 |
+
} );
|
| 214 |
+
|
| 215 |
+
}, delay);
|
| 216 |
+
|
| 217 |
+
|
| 218 |
+
}
|
| 219 |
+
|
| 220 |
|
| 221 |
jQuery(document).on('click', '.efmfb-close-ui-dialog, .efmfb-b-modal', function(){
|
| 222 |
+
jQuery('#efmfb_popup_form').removeClass('animated ' + jQuery("#efmfb_popup_animatecss_show").val()+' flipInY').addClass('animated ' + jQuery("#efmfb_popup_animatecss_hide").val());
|
| 223 |
efmfb_bPopup.close();
|
| 224 |
});
|
| 225 |
|
| 226 |
|
| 227 |
|
| 228 |
|
| 229 |
+
|
| 230 |
+
|
| 231 |
//===============================================================================
|
| 232 |
|
| 233 |
|
| 394 |
efmfb_popup_form.addClass('animated flipInY');
|
| 395 |
}
|
| 396 |
|
| 397 |
+
jQuery('.efmfb-popup-body').hide();
|
| 398 |
+
jQuery('.efmfb-popup-body-container').append('<div class="efmfb_response_msg">'+response_msg+'</div>');
|
| 399 |
+
|
| 400 |
|
| 401 |
+
// var el = jQuery(".efmfb-popup");
|
| 402 |
+
// var h = parseInt( jQuery('.efmfb-popup-body-container').outerHeight() )+50;
|
| 403 |
+
// el.animate({ height: h+"px" }, 400 );
|
| 404 |
}
|
| 405 |
else
|
| 406 |
{
|
| 527 |
var efmfb_popup_obj = new Object();
|
| 528 |
|
| 529 |
|
| 530 |
+
efmfb_popup_obj.efmfb_popup_on_click = efmfb_popup_form_data.find('#efmfb_popup_on_click').val();
|
| 531 |
+
|
| 532 |
+
|
| 533 |
efmfb_popup_obj.efmfb_popup_background_color = efmfb_popup_form_data.find('#efmfb_popup_bg_color').val();
|
| 534 |
|
| 535 |
efmfb_popup_obj.efmfb_popup_overlay_color = efmfb_popup_form_data.find('#efmfb_popup_overlay_color').val();
|
