Plugin Directory

Changeset 2197470


Ignore:
Timestamp:
11/20/2019 02:49:40 PM (6 years ago)
Author:
madeit
Message:

v1.7.0

Location:
forms-by-made-it/trunk
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • forms-by-made-it/trunk/madeit-form.php

    r2190181 r2197470  
    66 * Author: Made I.T.
    77 * Author URI: https://www.madeit.be
    8  * Version: 1.6.3
     8 * Version: 1.7.0
    99 * Text Domain: forms-by-made-it
    1010 * Domain Path: /languages
     
    7676$wp_NBD_front = new WP_Form_front($wp_madeit_form_settings);
    7777$wp_NBD_front->addHooks();
     78
     79require_once MADEIT_FORM_DIR.'/api/WP_Form_Api.php';
     80$wp_NBD_api = new WP_Form_Api($wp_madeit_form_settings);
     81$wp_NBD_api->addHooks();
     82
     83function wp_form_api_save_input($id, $data)
     84{
     85    global $wp_NBD_api;
     86
     87    return $wp_NBD_api->save($id, $data);
     88}
  • forms-by-made-it/trunk/readme.txt

    r2190181 r2197470  
    55Requires at least: 4.4
    66Tested up to: 5.3
    7 Stable tag: 1.6.3
     7Stable tag: 1.7.0
    88License: GNU GPL v3.0
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    4747
    4848== Changelog ==
     49= 1.7.0 =
     50* Add API function wp_form_api_save_input($id, $data);
     51
    4952= 1.6.3 =
    5053* Bug fixes
Note: See TracChangeset for help on using the changeset viewer.