Plugin Directory

Changeset 1909395


Ignore:
Timestamp:
07/15/2018 10:34:46 AM (8 years ago)
Author:
zaus
Message:

v1.7.7 destination mapping is textarea to make other plugins easier, hooks to add more columns

Location:
forms-3rdparty-integration/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • forms-3rdparty-integration/trunk/README.md

    r1897488 r1909395  
    241241
    242242## Changelog ##
     243
     244### 1.7.7 ###
     245* destination mapping is textarea to make other plugins easier (e.g. newlines in xpost formatting), hooks `..._service_mappings_headers` and `..._service_mappings_values` to add more columns
    243246
    244247### 1.7.6 ###
  • forms-3rdparty-integration/trunk/forms-3rdparty-integration.php

    r1897488 r1909395  
    66Description: Send plugin Forms Submissions (Gravity, CF7, Ninja Forms, etc) to a 3rd-party URL
    77Author: zaus, atlanticbt, spkane
    8 Version: 1.7.6
     8Version: 1.7.7
    99Author URI: http://drzaus.com
    1010Changelog:
     
    3636    1.7.5 - late-bind GF confirmation for script tags
    3737    1.7.6 - exposing http method (get/post); result redirection
     38    1.7.7 - destination mapping is textarea to make other plugins easier, hooks to add more columns
    3839*/
    3940
     
    6566     * @var string
    6667     */
    67     const pluginVersion = '1.7.3';
     68    const pluginVersion = '1.7.7';
    6869
    6970   
  • forms-3rdparty-integration/trunk/plugin-ui.php

    r1897488 r1909395  
    200200                            <p class="descr"><?php _e('The input name/id from the external service', $P);?></p>
    201201                        </th>
     202                        <?php
     203                        do_action($this->N('service_mappings_headers'), $eid, $pairNum, $P, $entity);
     204                        ?>
    202205                        <th id="th-<?php echo $eid?>-action" class="thin"><?php _e('Drag', $P);?></th>
    203206                    </tr>
     
    236239                        <td headers="th-<?php echo $eid?>-3rd">
    237240                            <label for="mapping-<?php echo $eid?>-<?php echo $pairNum?>b" class="invisible">3rd-party Field:</label>
    238                             <input id="mapping-<?php echo $eid?>-<?php echo $pairNum?>b" type="text" class="text b" name="<?php echo $P?>[<?php echo $eid?>][mapping][<?php echo $pairNum?>][<?php echo self::PARAM_3RD ?>]" value="<?php echo esc_attr($pair[self::PARAM_3RD])?>" />
    239                         </td>
     241                            <textarea id="mapping-<?php echo $eid?>-<?php echo $pairNum?>b" class="text b" rows=1 name="<?php echo $P?>[<?php echo $eid?>][mapping][<?php echo $pairNum?>][<?php echo self::PARAM_3RD ?>]"><?php echo esc_html($pair[self::PARAM_3RD])?></textarea>
     242                        </td>
     243                        <?php
     244                        do_action($this->N('service_mappings_values'), $eid, $pairNum, $P, $entity);
     245                        ?>
    240246                        <td headers="th-<?php echo $eid?>-action" class="thin drag-handle icon row-actns">
    241247                            <a href="#" title="<?php _e('Delete'); ?>" class="minus actn" data-actn="remove" data-after="row" data-rel="tr.fields"><?php _e('Delete', $P);?></a>
  • forms-3rdparty-integration/trunk/plugin.admin.css

    r875741 r1909395  
    2323    table.mappings th .descr { font-weight:normal; font-size:75%; }
    2424table.mappings caption { font-style:italic; color:#888; margin-bottom:0.2em; }
    25 table.mappings input { width:100%; }
     25table.mappings input, table.mappings textarea, table.mappings select { width:100%; }
    2626table.mappings .thin { width:4em; }
    2727table.mappings .drag-handle { padding:0.5em;}
  • forms-3rdparty-integration/trunk/readme.txt

    r1897488 r1909395  
    234234
    235235== Changelog ==
     236
     237= 1.7.7 =
     238* destination mapping is textarea to make other plugins easier (e.g. newlines in xpost formatting), hooks `..._service_mappings_headers` and `..._service_mappings_values` to add more columns
    236239
    237240= 1.7.6 =
Note: See TracChangeset for help on using the changeset viewer.