Changeset 1909395
- Timestamp:
- 07/15/2018 10:34:46 AM (8 years ago)
- Location:
- forms-3rdparty-integration/trunk
- Files:
-
- 5 edited
-
README.md (modified) (1 diff)
-
forms-3rdparty-integration.php (modified) (3 diffs)
-
plugin-ui.php (modified) (2 diffs)
-
plugin.admin.css (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
forms-3rdparty-integration/trunk/README.md
r1897488 r1909395 241 241 242 242 ## 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 243 246 244 247 ### 1.7.6 ### -
forms-3rdparty-integration/trunk/forms-3rdparty-integration.php
r1897488 r1909395 6 6 Description: Send plugin Forms Submissions (Gravity, CF7, Ninja Forms, etc) to a 3rd-party URL 7 7 Author: zaus, atlanticbt, spkane 8 Version: 1.7. 68 Version: 1.7.7 9 9 Author URI: http://drzaus.com 10 10 Changelog: … … 36 36 1.7.5 - late-bind GF confirmation for script tags 37 37 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 38 39 */ 39 40 … … 65 66 * @var string 66 67 */ 67 const pluginVersion = '1.7. 3';68 const pluginVersion = '1.7.7'; 68 69 69 70 -
forms-3rdparty-integration/trunk/plugin-ui.php
r1897488 r1909395 200 200 <p class="descr"><?php _e('The input name/id from the external service', $P);?></p> 201 201 </th> 202 <?php 203 do_action($this->N('service_mappings_headers'), $eid, $pairNum, $P, $entity); 204 ?> 202 205 <th id="th-<?php echo $eid?>-action" class="thin"><?php _e('Drag', $P);?></th> 203 206 </tr> … … 236 239 <td headers="th-<?php echo $eid?>-3rd"> 237 240 <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 ?> 240 246 <td headers="th-<?php echo $eid?>-action" class="thin drag-handle icon row-actns"> 241 247 <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 23 23 table.mappings th .descr { font-weight:normal; font-size:75%; } 24 24 table.mappings caption { font-style:italic; color:#888; margin-bottom:0.2em; } 25 table.mappings input { width:100%; }25 table.mappings input, table.mappings textarea, table.mappings select { width:100%; } 26 26 table.mappings .thin { width:4em; } 27 27 table.mappings .drag-handle { padding:0.5em;} -
forms-3rdparty-integration/trunk/readme.txt
r1897488 r1909395 234 234 235 235 == 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 236 239 237 240 = 1.7.6 =
Note: See TracChangeset
for help on using the changeset viewer.