Plugin Directory

Changeset 1645807


Ignore:
Timestamp:
04/26/2017 01:34:03 PM (9 years ago)
Author:
nexuslink
Message:

Updated Version 1.1

Location:
cf7records
Files:
16 added
2 edited

Legend:

Unmodified
Added
Removed
  • cf7records/trunk/readme.txt

    r1644969 r1645807  
    55Tags: 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
    66Requires at least: 3.0.1
    7 
    87Tested up to: 4.7.3
    9 Version: 3.3
     8Version: 1.1
    109Stable tag: 3.3
    1110License: GPLv2 or later
     
    4443= 1.0 =
    4544* 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  
    44 * Plugin URI: http://myplugin.nexuslinkservices.com
    55 * 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.0
     6 * Version: 1.1.0
    77 * Author: NexusLink Services
    88 * Author URI: http://nexuslinkservices.com
     
    5555
    5656    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');
    5858    }
    5959
     
    225225                        <input type="hidden" name="pxcf7_form_id" value="<?php echo $_GET['pxcf7_form_id'] ?>">
    226226                        <input type="hidden" value="true" name="export_csv">
    227                         <button type="submit" class="button button-default button-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>
    228228                    </form>
    229229
     
    272272                                        $queryD2 = 'SELECT value FROM ' . $wpdb->prefix . 'savedata WHERE id="' . $item2->id . '"';
    273273                                        $dataD = $wpdb->get_results($queryD2);
    274                                         echo '<td>'.$item2->value.'</td>';
     274                                        echo '<td>'. wp_trim_words( stripslashes($item2->value), 30, '...' ).'</td>';
    275275                                            $cntH++;
    276276                                            if($cntH>3){
Note: See TracChangeset for help on using the changeset viewer.