Plugin Directory

Changeset 3326707


Ignore:
Timestamp:
07/12/2025 10:57:35 AM (9 months ago)
Author:
wpmonks
Message:

updated to v1.2

Location:
iban-for-wpforms
Files:
131 added
3 edited

Legend:

Unmodified
Added
Removed
  • iban-for-wpforms/trunk/iban-for-wpforms.php

    r3326657 r3326707  
    55 * Description: IBAN field in WPForms
    66 * Author: Sushil Kumar
    7  * Version: 1.1
     7 * Version: 1.2
    88 * License: GPLv2
    99 * Requires at least: 5.5
     
    1515
    1616// Set constants for plugin directory and plugin URL.
    17 define( 'IBANWPF_VERSION', '1.1' );
     17define( 'IBANWPF_VERSION', '1.2' );
    1818define( 'IBANWPF_FILE', __FILE__ );
    1919define( 'IBANWPF_DIR', plugin_dir_path( __FILE__ ) );
  • iban-for-wpforms/trunk/includes/admin/admin-menu/Ibanwpf_EDD_SL_Plugin_Updater.php

    r3326657 r3326707  
    1212 * @version 1.9.4
    1313 */
    14 class EDD_SL_Plugin_Updater {
     14class Ibanwpf_EDD_SL_Plugin_Updater {
    1515
    1616    private $api_url     = '';
     
    3030     * @uses hook()
    3131     *
    32      * @param string  $_api_url     The URL pointing to the custom API endpoint.
    33      * @param string  $_plugin_file Path to the plugin file.
    34      * @param array   $_api_data    Optional data to send with API calls.
     32     * @param string $_api_url     The URL pointing to the custom API endpoint.
     33     * @param string $_plugin_file Path to the plugin file.
     34     * @param array  $_api_data    Optional data to send with API calls.
    3535     */
    3636    public function __construct( $_api_url, $_plugin_file, $_api_data = null ) {
     
    8888     * @uses api_request()
    8989     *
    90      * @param array   $_transient_data Update array build by WordPress.
     90     * @param array $_transient_data Update array build by WordPress.
    9191     * @return array Modified update array with custom plugin data.
    9292     */
     
    218218     * Show the update notification on multisite subsites.
    219219     *
    220      * @param string  $file
    221      * @param array   $plugin
     220     * @param string $file
     221     * @param array  $plugin
    222222     */
    223223    public function show_update_notification( $file, $plugin ) {
     
    343343     * @uses api_request()
    344344     *
    345      * @param mixed   $_data
    346      * @param string  $_action
    347      * @param object  $_args
     345     * @param mixed  $_data
     346     * @param string $_action
     347     * @param object $_args
    348348     * @return object $_data
    349349     */
     
    375375        $edd_api_request_transient = $this->get_cached_version_info();
    376376
    377         //If we have no transient-saved value, run the API, set a fresh transient with the API value, and return that value too right now.
     377        // If we have no transient-saved value, run the API, set a fresh transient with the API value, and return that value too right now.
    378378        if ( empty( $edd_api_request_transient ) ) {
    379379
     
    448448     * Disable SSL verification in order to prevent download update failures
    449449     *
    450      * @param array   $args
    451      * @param string  $url
     450     * @param array  $args
     451     * @param string $url
    452452     * @return object $array
    453453     */
     
    467467     * @uses is_wp_error()
    468468     *
    469      * @param string  $_action The requested action.
    470      * @param array   $_data   Parameters for the API action.
     469     * @param string $_action The requested action.
     470     * @param array  $_data   Parameters for the API action.
    471471     * @return false|object|void
    472472     */
  • iban-for-wpforms/trunk/readme.txt

    r3326663 r3326707  
    55Requires at least: 5.5
    66Tested up to: 6.8
    7 Stable tag: 1.1
     7Stable tag: 1.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4444
    4545== Changelog ==
     46= 1.2 (12/07/2025) =
     47* Fixed updater class name
     48
    4649= 1.1 (12/07/2025) =
    4750* Code updates
Note: See TracChangeset for help on using the changeset viewer.