Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update release #4

Open
wants to merge 1 commit into
base: latest
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion class-gravity-forms-signature.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function gform_save_field_value($value, $lead, $field, $form, $input_id)
}

$filesystem = new \WP_Filesystem_Direct( false );
$res = $filesystem->move($old_path, $file_path, true);
$filesystem->move($old_path, $file_path, true);
}

$name = self::GF_SIGNATURE_PATH . $value;
Expand Down
6 changes: 3 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
=== WP-Stateless - Gravity Forms Signature Addon ===
Contributors: usability_dynamics, andypotanin, ideric, maxim.peshkov, planvova, obolgun
Contributors: usability_dynamics, andypotanin, ideric, planvova, obolgun
Donate link: https://udx.io
Tags: gravity forms signature, gravity forms signature addon extension, google cloud storage, stateless, wp-stateless
License: GPLv2 or later
Requires PHP: 8.0
Requires at least: 5.0
Tested up to: 6.5.3
Stable tag: 0.0.1
Tested up to: 6.7.1
Stable tag: 0.0.2

Provides compatibility between the Gravity Forms Signature and the WP-Stateless plugins.

Expand Down
8 changes: 4 additions & 4 deletions wp-stateless-gravity-forms-signature-addon.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
* Plugin URI: https://stateless.udx.io/addons/gravity-forms-signature/
* Description: Provides compatibility between the Gravity Forms Signature and the WP-Stateless plugins.
* Author: UDX
* Version: 0.0.1
* Text Domain: slcagfs
* Version: 0.0.2
* Text Domain: wp-stateless-gravity-forms-signature-addon
* Author URI: https://udx.io
* License: GPLv2 or later
*
* Copyright 2024 UDX (email: [email protected])
* Copyright 2024-2025 UDX (email: [email protected])
*/

namespace SLCA\GravityFormSignature;
Expand All @@ -24,7 +24,7 @@

add_filter('plugin_row_meta', function ($plugin_meta, $plugin_file, $_, $__) {
if ($plugin_file !== join(DIRECTORY_SEPARATOR, [basename(__DIR__), basename(__FILE__)])) return $plugin_meta;
$plugin_meta[] = sprintf('<span style="color:red;">%s</span>', __('This plugin requires WP-Stateless plugin version 3.4.0 or greater to be installed and active.', 'slcagfs'));
$plugin_meta[] = sprintf('<span style="color:red;">%s</span>', __('This plugin requires WP-Stateless plugin version 3.4.0 or greater to be installed and active.', 'wp-stateless-gravity-forms-signature-addon'));
return $plugin_meta;
}, 10, 4);
});
Loading