Plugin Directory

Changeset 1178958


Ignore:
Timestamp:
06/11/2015 01:20:14 PM (11 years ago)
Author:
fegasLs
Message:

tagging version 1.0.1

Location:
leadsius
Files:
4 edited
3 copied

Legend:

Unmodified
Added
Removed
  • leadsius/tags/1.0.1/leadsius-module.php

    r1170181 r1178958  
    44Description: WP-Leadsius is a WordPress plugin which integrates Leadsius and WordPress.
    55With WP-Leadsius you can add Leadsius tracking script to your Wordpress site as well as creating web forms and call-to-actions.
    6 Version: 1.0
     6Version: 1.0.1
    77Author: Leadsius AB
    88*/
  • leadsius/tags/1.0.1/lib/LeadsiusAPIGateway.php

    r1170150 r1178958  
    4141        if ( isset($this->allForms->webforms) && is_array($this->allForms->webforms) )
    4242        {
     43
     44
    4345            foreach( $this->allForms->webforms as $webform )
    4446            {
     
    5052
    5153                    $formData = isset($webform->form_data) ? $webform->form_data : $this->getForm($formId);
    52                     //var_dump($formData);die();
     54                    //var_dump($formData->json_customization);die();
    5355                    $trackingPixel=$formData->tracking_pixel;
    5456
     
    5658
    5759
    58                     if(isset($webform->customization)){
     60                    if(isset($webform->customization) && strlen($formData->json_customization)==0){
    5961
    6062                        $customization = json_decode($webform->customization);
     
    9092
    9193                        $new_custom = json_decode($formData->json_customization);
    92 
     94                        //var_dump($new_custom);die();
    9395                        if($new_custom->button_name == "")
    9496                            $buttonText='Submit';
     
    99101                    }
    100102
    101 
     103                    //var_dump($buttonText);die();
    102104                    //$buttonText = 'submit';
    103105
     
    113115
    114116                    $formulario = '';
    115                     if (isset($webform->html_content)){
     117                    if (isset($webform->html_content) && strlen($webform->json_content)==0){
    116118
    117119                        $formulario = $webform->html_content;
     
    256258
    257259
     260
    258261                    }
    259262
  • leadsius/tags/1.0.1/readme.txt

    r1177520 r1178958  
    44Requires at least: 4.1.1
    55Tested up to: 4.1.1
    6 Stable tag: 1.0
     6Stable tag: 1.0.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8787== Changelog ==
    8888
     89= 1.0.1 =
     90* Security update.
    8991
    9092= 1.0 =
  • leadsius/trunk/leadsius-module.php

    r1170181 r1178958  
    44Description: WP-Leadsius is a WordPress plugin which integrates Leadsius and WordPress.
    55With WP-Leadsius you can add Leadsius tracking script to your Wordpress site as well as creating web forms and call-to-actions.
    6 Version: 1.0
     6Version: 1.0.1
    77Author: Leadsius AB
    88*/
  • leadsius/trunk/lib/LeadsiusAPIGateway.php

    r1170150 r1178958  
    4141        if ( isset($this->allForms->webforms) && is_array($this->allForms->webforms) )
    4242        {
     43
     44
    4345            foreach( $this->allForms->webforms as $webform )
    4446            {
     
    5052
    5153                    $formData = isset($webform->form_data) ? $webform->form_data : $this->getForm($formId);
    52                     //var_dump($formData);die();
     54                    //var_dump($formData->json_customization);die();
    5355                    $trackingPixel=$formData->tracking_pixel;
    5456
     
    5658
    5759
    58                     if(isset($webform->customization)){
     60                    if(isset($webform->customization) && strlen($formData->json_customization)==0){
    5961
    6062                        $customization = json_decode($webform->customization);
     
    9092
    9193                        $new_custom = json_decode($formData->json_customization);
    92 
     94                        //var_dump($new_custom);die();
    9395                        if($new_custom->button_name == "")
    9496                            $buttonText='Submit';
     
    99101                    }
    100102
    101 
     103                    //var_dump($buttonText);die();
    102104                    //$buttonText = 'submit';
    103105
     
    113115
    114116                    $formulario = '';
    115                     if (isset($webform->html_content)){
     117                    if (isset($webform->html_content) && strlen($webform->json_content)==0){
    116118
    117119                        $formulario = $webform->html_content;
     
    256258
    257259
     260
    258261                    }
    259262
  • leadsius/trunk/readme.txt

    r1177520 r1178958  
    44Requires at least: 4.1.1
    55Tested up to: 4.1.1
    6 Stable tag: 1.0
     6Stable tag: 1.0.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8787== Changelog ==
    8888
     89= 1.0.1 =
     90* Security update.
    8991
    9092= 1.0 =
Note: See TracChangeset for help on using the changeset viewer.