Changeset 1645807
- Timestamp:
- 04/26/2017 01:34:03 PM (9 years ago)
- Location:
- cf7records
- Files:
-
- 16 added
- 2 edited
-
tags/1.0 (added)
-
tags/1.0/images (added)
-
tags/1.0/images/Thumbs.db (added)
-
tags/1.0/images/sort_asc.png (added)
-
tags/1.0/images/sort_asc_disabled.png (added)
-
tags/1.0/images/sort_both.png (added)
-
tags/1.0/images/sort_desc.png (added)
-
tags/1.0/images/sort_desc_disabled.png (added)
-
tags/1.0/libs (added)
-
tags/1.0/libs/datatables.min.css (added)
-
tags/1.0/libs/datatables.min.js (added)
-
tags/1.0/libs/savedatascripts-ajax.js (added)
-
tags/1.0/libs/savedatascripts.js (added)
-
tags/1.0/libs/savedatastyles.css (added)
-
tags/1.0/readme.txt (added)
-
tags/1.0/save-contact-details.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/save-contact-details.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cf7records/trunk/readme.txt
r1644969 r1645807 5 5 Tags: contact form 7,contact form, records, submissions, save records,record listing,contact form db, cf7, wpcf7, contact form storage, contact form seven, contact form 7 db, export contact form 6 6 Requires at least: 3.0.1 7 8 7 Tested up to: 4.7.3 9 Version: 3.38 Version: 1.1 10 9 Stable tag: 3.3 11 10 License: GPLv2 or later … … 44 43 = 1.0 = 45 44 * Initial release 45 = 1.1 = 46 * Implemented Export to CSV functionality. 47 * Implemented Delete functionality. 48 * Made changes in design for listing and detail view. -
cf7records/trunk/save-contact-details.php
r1644964 r1645807 4 4 * Plugin URI: http://myplugin.nexuslinkservices.com 5 5 * Description: This Plugins Saves Contact form 7 Form submission into Database so you can Preview. You must install contact form 7 in order to use this plugin 6 * Version: 1. 0.06 * Version: 1.1.0 7 7 * Author: NexusLink Services 8 8 * Author URI: http://nexuslinkservices.com … … 55 55 56 56 function savedata_px_register_admin_menu() { 57 add_menu_page( 'Submitted Forms', 'CF7 Records', 'manage_options', basename(__FILE__), array($this, 'px_options_page') );57 add_menu_page( 'Submitted Forms', 'CF7 Records', 'manage_options', basename(__FILE__), array($this, 'px_options_page'),'dashicons-list-view'); 58 58 } 59 59 … … 225 225 <input type="hidden" name="pxcf7_form_id" value="<?php echo $_GET['pxcf7_form_id'] ?>"> 226 226 <input type="hidden" value="true" name="export_csv"> 227 <button type="submit" class="button button- defaultbutton-large export_to_csv" style="float: right;margin-bottom: 10px;">Export to CSV</button>227 <button type="submit" class="button button-primary button-large export_to_csv" style="float: right;margin-bottom: 10px;">Export to CSV</button> 228 228 </form> 229 229 … … 272 272 $queryD2 = 'SELECT value FROM ' . $wpdb->prefix . 'savedata WHERE id="' . $item2->id . '"'; 273 273 $dataD = $wpdb->get_results($queryD2); 274 echo '<td>'. $item2->value.'</td>';274 echo '<td>'. wp_trim_words( stripslashes($item2->value), 30, '...' ).'</td>'; 275 275 $cntH++; 276 276 if($cntH>3){
Note: See TracChangeset
for help on using the changeset viewer.