Plugin Directory

Changeset 2888298


Ignore:
Timestamp:
03/28/2023 11:08:04 AM (3 years ago)
Author:
rebrandpress
Message:

wordpress version update

Location:
rebrand-fluent-forms/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • rebrand-fluent-forms/trunk/fluentforms-settings.php

    r2690501 r2888298  
    44define('BZFLUENT_BASE_DIR',     dirname(__FILE__) . '/');
    55define('BZFLUENT_PRODUCT_ID',   'BZFF');
    6 define('BZFLUENT_VERSION',      '1.0');
     6define('BZFLUENT_VERSION',      '1.5');
    77define('BZFLUENT_DIR_PATH', plugin_dir_path( __DIR__ ));
    88define('BZFLUENT_PLUGIN_FILE', 'rebrand-fluentforms/rebrand-fluentforms.php');   //Main base file
     
    223223        */
    224224        public function bzfluent_render() {
     225           
     226            /*update admin ui menu show/hide*/ 
     227            if (isset($_REQUEST['rebrandfluent_screen_option'])) {
     228                $this->bzfluent_updateOption('rebrand_fluent_screen_option', $_REQUEST['rebrandfluent_screen_option']);
     229                $redirectUrl=$_REQUEST['redirectUrl'];
     230                echo '<script>window.location = "'.$redirectUrl.'";</script>';
     231                die;
     232            }
     233           
    225234            $this->bzfluent_render_fields();
    226235        }
     
    291300                'plugin_author'     => isset( $_POST['fluent_wl_plugin_author'] ) ? sanitize_text_field( $_POST['fluent_wl_plugin_author'] ) : '',
    292301               
    293                 'plugin_uri'        => isset( $_POST['fluent_wl_plugin_uri'] ) ? sanitize_text_field( $_POST['fluent_wl_plugin_uri'] ) : '',
     302                'plugin_uri'        => isset( $_POST['fluent_wl_plugin_uri'] ) ? esc_url( $_POST['fluent_wl_plugin_uri'] ) : '',
    294303               
    295304            );
  • rebrand-fluent-forms/trunk/readme.txt

    r2805594 r2888298  
    22Author: RebrandPress
    33Author URI:  https://rebrandpress.com/
    4 Tags: Rebrand, Fluent Forms, Fluent Forms Addons
     4Tags: Blitzmore,  Rebrand, Fluent Forms, Fluent Forms Addons
    55Requires at least: 4.5
    6 Tested up to: 6.1
     6Tested up to: 5.9
    77Requires PHP: 5.5
    8 Stable tag: 1.0
    9 License: GPLv2 or later
    10 License URI: http://www.gnu.org/licenses/gpl-2.0.html
     8License: GPL2 etc
    119
    1210The Fluent Forms WordPress form builder lets you create sales and marketing forms without coding. Rebrand Fluent Forms removes all mention of Fluent Forms, allowing you to replace it with your own brand name and colors. Furthermore, you can change the description on both the navigation menu and the site’s plugin page and replace the developer’s link with a custom one of your own.
     11
     12
     131.0 [ 04 feb 2022 ]
    1314
    1415== Installation ==
     
    2728
    2829== Changelog ==
    29 = 1.0 - 2022-03-08 =
     30= 1.0 - 2021-12-23 =
    3031* Initial Release
    3132
  • rebrand-fluent-forms/trunk/rebrand-fluentforms.php

    r2690502 r2888298  
    22/**
    33 * Plugin Name:     Rebrand Fluent Forms
    4  * Plugin URI:      https://rebrandpress.com/rebrand-fluentforms/
     4 * Plugin URI:      https://rebrandpress.com/
    55 * Description:     The Fluent Forms WordPress form builder lets you create sales and marketing forms without coding. Rebrand Fluent Forms removes all mention of Fluent Forms, allowing you to replace it with your own brand name and colors. Furthermore, you can change the description on both the navigation menu and the site’s plugin page and replace the developer’s link with a custom one of your own.
    66
Note: See TracChangeset for help on using the changeset viewer.