Changeset 3020401
- Timestamp:
- 01/11/2024 02:17:27 PM (2 years ago)
- Location:
- fluentform-block
- Files:
-
- 57 added
- 4 edited
-
tags/1.0.1 (added)
-
tags/1.0.1/app (added)
-
tags/1.0.1/app/Block (added)
-
tags/1.0.1/app/Block/BlockBase.php (added)
-
tags/1.0.1/app/Block/Fluentform.php (added)
-
tags/1.0.1/app/Block/fluentform (added)
-
tags/1.0.1/app/Block/fluentform/block.json (added)
-
tags/1.0.1/app/Ctrl (added)
-
tags/1.0.1/app/Ctrl/Asset (added)
-
tags/1.0.1/app/Ctrl/Asset/AssetCtrl.php (added)
-
tags/1.0.1/app/Ctrl/BlockCtrl.php (added)
-
tags/1.0.1/app/Ctrl/Dependencies.php (added)
-
tags/1.0.1/app/Ctrl/FontLoader.php (added)
-
tags/1.0.1/app/Ctrl/Hook (added)
-
tags/1.0.1/app/Ctrl/Hook/HookCtrl.php (added)
-
tags/1.0.1/app/Ctrl/Hook/Type (added)
-
tags/1.0.1/app/Ctrl/Hook/Type/Action.php (added)
-
tags/1.0.1/app/Ctrl/Hook/Type/Filter.php (added)
-
tags/1.0.1/app/Ctrl/Installation.php (added)
-
tags/1.0.1/app/Ctrl/MainCtrl.php (added)
-
tags/1.0.1/app/Ctrl/StyleGenerator.php (added)
-
tags/1.0.1/app/FFBlock.php (added)
-
tags/1.0.1/app/Helper (added)
-
tags/1.0.1/app/Helper/Constant.php (added)
-
tags/1.0.1/app/Helper/Fns.php (added)
-
tags/1.0.1/app/Helper/Installation.php (added)
-
tags/1.0.1/app/Traits (added)
-
tags/1.0.1/app/Traits/Singleton.php (added)
-
tags/1.0.1/assets (added)
-
tags/1.0.1/assets/blocks (added)
-
tags/1.0.1/assets/blocks/index.asset.php (added)
-
tags/1.0.1/assets/blocks/index.css (added)
-
tags/1.0.1/assets/blocks/index.js (added)
-
tags/1.0.1/assets/blocks/style-index.css (added)
-
tags/1.0.1/fluentform-block.php (added)
-
tags/1.0.1/index.php (added)
-
tags/1.0.1/languages (added)
-
tags/1.0.1/languages/fluentform-block.pot (added)
-
tags/1.0.1/package.json (added)
-
tags/1.0.1/readme.txt (added)
-
tags/1.0.1/uninstall.php (added)
-
tags/1.0.1/vendor (added)
-
tags/1.0.1/vendor/autoload.php (added)
-
tags/1.0.1/vendor/composer (added)
-
tags/1.0.1/vendor/composer/ClassLoader.php (added)
-
tags/1.0.1/vendor/composer/InstalledVersions.php (added)
-
tags/1.0.1/vendor/composer/LICENSE (added)
-
tags/1.0.1/vendor/composer/autoload_classmap.php (added)
-
tags/1.0.1/vendor/composer/autoload_namespaces.php (added)
-
tags/1.0.1/vendor/composer/autoload_psr4.php (added)
-
tags/1.0.1/vendor/composer/autoload_real.php (added)
-
tags/1.0.1/vendor/composer/autoload_static.php (added)
-
tags/1.0.1/vendor/composer/installed.json (added)
-
tags/1.0.1/vendor/composer/installed.php (added)
-
tags/1.0.1/views (added)
-
tags/1.0.1/views/fluentform.php (added)
-
trunk/app/Block/BlockBase.php (modified) (2 diffs)
-
trunk/app/Block/Fluentform.php (modified) (1 diff)
-
trunk/fluentform-block.php (modified) (1 diff)
-
trunk/package.json (added)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fluentform-block/trunk/app/Block/BlockBase.php
r3018264 r3020401 3 3 namespace FFBlock\Block; 4 4 5 abstract class BlockBase 6 { 7 public function __construct() 8 { 5 abstract class BlockBase { 6 public function __construct() { 9 7 add_action('init', [$this, 'register_block']); 10 8 } … … 12 10 abstract public function register_block(); 13 11 14 public function common_attributes() 15 { 12 public function common_attributes() { 16 13 $attributes = [ 17 14 'blockId' => array( -
fluentform-block/trunk/app/Block/Fluentform.php
r3018264 r3020401 10 10 use FFBlock\Helper\Fns; 11 11 12 class Fluentform extends BlockBase 13 { 14 public function block_attributes() 15 { 12 class Fluentform extends BlockBase { 13 public function block_attributes() { 16 14 $attributes = [ 17 15 -
fluentform-block/trunk/fluentform-block.php
r3018264 r3020401 2 2 3 3 /** 4 * Plugin Name: Fluent Forms Block - Exten tion Of Fluent Forms4 * Plugin Name: Fluent Forms Block - Extension Of Fluent Forms 5 5 * Plugin URI: https://wordpress.org/plugins/fluentform-block 6 * Description: Fluent forms block is the exten tion of Fluent forms plugin.You can build advanced Contact form by Fluent form block.7 * Version: 1.0. 06 * Description: Fluent forms block is the extension of Fluent forms plugin.You can build advanced Contact form by Fluent form block. 7 * Version: 1.0.1 8 8 * Requires at least: 5.5 9 9 * Requires PHP: 7.4 -
fluentform-block/trunk/readme.txt
r3019980 r3020401 1 === Fluent Forms Block - Exten tion Of Fluent Forms ===1 === Fluent Forms Block - Extension Of Fluent Forms === 2 2 Contributors: wpmetablock 3 3 Donate link: … … 5 5 Requires at least: 5.0 6 6 Tested up to: 6.4 7 Stable tag: 1.0. 07 Stable tag: 1.0.1 8 8 Requires PHP: 7.4 9 9 License: GPLv3 … … 62 62 63 63 == Changelog == 64 = 1.0.1 = 65 Fixed: CSS issues solve. 66 Fixed: code improving. 64 67 65 68 = 1.0.0 =
Note: See TracChangeset
for help on using the changeset viewer.