Plugin Directory

Changeset 3110576


Ignore:
Timestamp:
07/01/2024 03:08:14 PM (20 months ago)
Author:
wpmetablock
Message:

sdssd

Location:
fluentform-block
Files:
41 added
4 edited

Legend:

Unmodified
Added
Removed
  • fluentform-block/trunk/app/FFBlock.php

    r3099979 r3110576  
    6363    }
    6464
    65     /**
    66      * Get build uri
    67      *
    68      * @param string $file .
    69      *
    70      * @return string
    71      */
    72     public function get_asset_uri( $file ) {
    73         $file = ltrim( $file, '/' );
    74 
    75         return trailingslashit( FFBLOCK_URL . '/build' ) . $file;
    76     }
    7765
    7866    /**
  • fluentform-block/trunk/app/Traits/Singleton.php

    r3099490 r3110576  
    1414
    1515    /**
    16      * Store the singleton object.
     16     * @var bool
    1717     */
    1818    private static $singleton = false;
     
    2222     */
    2323    public static function getInstance() {
    24         if ( self::$singleton === false ) {
     24        if ( false === self::$singleton ) {
    2525            self::$singleton = new self();
    2626        }
  • fluentform-block/trunk/fluentform-block.php

    r3099979 r3110576  
    44 * Plugin URI:        https://wordpress.org/plugins/fluentform-block
    55 * Description:       Fluent forms block is the extension of Fluent forms plugin.You can build advanced Contact form by Fluent form  block.
    6  * Version:           2.0.2
     6 * Version:           2.0.3
    77 * Requires at least: 5.5
    88 * Requires PHP:      7.4
     
    2020define( 'FFBLOCK_ABSPATH', dirname( FFBLOCK_FILE ) );
    2121define( 'FFBLOCK_URL', plugins_url( '', FFBLOCK_FILE ) );
    22 define( 'FFBLOCK_VERSION', '2.0.2' );
     22define( 'FFBLOCK_VERSION', '2.0.3' );
    2323
    2424if ( ! class_exists( 'FFBlock' ) ) {
  • fluentform-block/trunk/readme.txt

    r3099979 r3110576  
    55Requires at least: 5.0
    66Tested up to: 6.5
    7 Stable tag: 2.0.2
     7Stable tag: 2.0.3
    88Requires PHP: 7.4
    99License: GPLv3
     
    6262
    6363== Changelog ==
     64= 2.0.3 ( July 1, 2024 ) =
     65* Fixed: code refactoring
     66* Fixed: css issues
     67* Fixed: JS issues
     68
    6469= 2.0.2 ( June 9, 2024 ) =
    6570* Fixed: google fonts loads issue
Note: See TracChangeset for help on using the changeset viewer.