Changeset 3022517
- Timestamp:
- 01/16/2024 04:10:31 PM (2 years ago)
- Location:
- fluentform-block
- Files:
-
- 59 added
- 4 edited
-
tags/1.0.2 (added)
-
tags/1.0.2/app (added)
-
tags/1.0.2/app/Block (added)
-
tags/1.0.2/app/Block/BlockBase.php (added)
-
tags/1.0.2/app/Block/Fluentform.php (added)
-
tags/1.0.2/app/Block/fluentform (added)
-
tags/1.0.2/app/Block/fluentform/block.json (added)
-
tags/1.0.2/app/Ctrl (added)
-
tags/1.0.2/app/Ctrl/Asset (added)
-
tags/1.0.2/app/Ctrl/Asset/AssetCtrl.php (added)
-
tags/1.0.2/app/Ctrl/BlockCtrl.php (added)
-
tags/1.0.2/app/Ctrl/Dependencies.php (added)
-
tags/1.0.2/app/Ctrl/FontLoader.php (added)
-
tags/1.0.2/app/Ctrl/Hook (added)
-
tags/1.0.2/app/Ctrl/Hook/HookCtrl.php (added)
-
tags/1.0.2/app/Ctrl/Hook/Type (added)
-
tags/1.0.2/app/Ctrl/Hook/Type/Action.php (added)
-
tags/1.0.2/app/Ctrl/Hook/Type/Filter.php (added)
-
tags/1.0.2/app/Ctrl/Installation.php (added)
-
tags/1.0.2/app/Ctrl/MainCtrl.php (added)
-
tags/1.0.2/app/Ctrl/StyleGenerator.php (added)
-
tags/1.0.2/app/FFBlock.php (added)
-
tags/1.0.2/app/Helper (added)
-
tags/1.0.2/app/Helper/Constant.php (added)
-
tags/1.0.2/app/Helper/Fns.php (added)
-
tags/1.0.2/app/Helper/Installation.php (added)
-
tags/1.0.2/app/Traits (added)
-
tags/1.0.2/app/Traits/Singleton.php (added)
-
tags/1.0.2/assets (added)
-
tags/1.0.2/assets/blocks (added)
-
tags/1.0.2/assets/blocks/index.asset.php (added)
-
tags/1.0.2/assets/blocks/index.css (added)
-
tags/1.0.2/assets/blocks/index.css.map (added)
-
tags/1.0.2/assets/blocks/index.js (added)
-
tags/1.0.2/assets/blocks/index.js.map (added)
-
tags/1.0.2/assets/blocks/style-index.css (added)
-
tags/1.0.2/assets/blocks/style-index.css.map (added)
-
tags/1.0.2/fluentform-block.php (added)
-
tags/1.0.2/index.php (added)
-
tags/1.0.2/languages (added)
-
tags/1.0.2/languages/fluentform-block.pot (added)
-
tags/1.0.2/package.json (added)
-
tags/1.0.2/readme.txt (added)
-
tags/1.0.2/uninstall.php (added)
-
tags/1.0.2/vendor (added)
-
tags/1.0.2/vendor/autoload.php (added)
-
tags/1.0.2/vendor/composer (added)
-
tags/1.0.2/vendor/composer/ClassLoader.php (added)
-
tags/1.0.2/vendor/composer/InstalledVersions.php (added)
-
tags/1.0.2/vendor/composer/LICENSE (added)
-
tags/1.0.2/vendor/composer/autoload_classmap.php (added)
-
tags/1.0.2/vendor/composer/autoload_namespaces.php (added)
-
tags/1.0.2/vendor/composer/autoload_psr4.php (added)
-
tags/1.0.2/vendor/composer/autoload_real.php (added)
-
tags/1.0.2/vendor/composer/autoload_static.php (added)
-
tags/1.0.2/vendor/composer/installed.json (added)
-
tags/1.0.2/vendor/composer/installed.php (added)
-
tags/1.0.2/views (added)
-
tags/1.0.2/views/fluentform.php (added)
-
trunk/app/Block/BlockBase.php (modified) (2 diffs)
-
trunk/app/Block/Fluentform.php (modified) (2 diffs)
-
trunk/app/FFBlock.php (modified) (10 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fluentform-block/trunk/app/Block/BlockBase.php
r3020401 r3022517 30 30 'default' => false, 31 31 ), 32 33 32 //advanced 34 33 "mainWrapMargin" => array( … … 52 51 ) 53 52 ), 54 55 53 'mainWrapBGType' => array( 56 54 'type' => 'string', -
fluentform-block/trunk/app/Block/Fluentform.php
r3020401 r3022517 13 13 public function block_attributes() { 14 14 $attributes = [ 15 16 15 'layout' => array( 17 16 'type' => 'string', … … 28 27 'default' => false 29 28 ), 30 31 29 'formJson' => array( 32 30 'type' => 'object', -
fluentform-block/trunk/app/FFBlock.php
r3018264 r3022517 15 15 * Class FFBlock 16 16 */ 17 final class FFBlock 18 { 17 final class FFBlock { 19 18 20 19 use Singleton; … … 25 24 * FFB Project Constructor. 26 25 */ 27 public function __construct() 28 { 26 public function __construct() { 29 27 new Constant(); 30 28 add_action('init', [$this, 'language']); … … 36 34 } 37 35 38 public function init() 39 { 36 public function init() { 40 37 if (!Dependencies::getInstance()->check()) { 41 38 return; … … 51 48 * Load Text Domain 52 49 */ 53 public function language() 54 { 50 public function language() { 55 51 load_plugin_textdomain('fluentform-block', false, FFBLOCK_ABSPATH . '/languages/'); 56 52 } … … 63 59 * @return bool 64 60 */ 65 public function is_request($type) 66 { 61 public function is_request($type) { 67 62 switch ($type) { 68 63 case 'admin': … … 82 77 * @return string 83 78 */ 84 public function plugin_path() 85 { 79 public function plugin_path() { 86 80 return untrailingslashit(plugin_dir_path(FFBLOCK_FILE)); 87 81 } … … 90 84 * @return mixed 91 85 */ 92 public function version() 93 { 86 public function version() { 94 87 return FFBLOCK_VERSION; 95 88 } … … 102 95 * @return string 103 96 */ 104 public function get_asset_uri($file) 105 { 97 public function get_asset_uri($file) { 106 98 $file = ltrim($file, '/'); 107 99 … … 114 106 * @return string 115 107 */ 116 public function render($viewName, $args = array(), $return = false) 117 { 108 public function render($viewName, $args = array(), $return = false) { 118 109 $path = str_replace(".", "/", $viewName); 119 110 $viewPath = FFBLOCK_PATH . 'view/' . $path . '.php'; … … 140 131 * @return bool|Singleton|FFBlock 141 132 */ 142 function ffblock() 143 { 133 function ffblock() { 144 134 return FFBlock::getInstance(); 145 135 } -
fluentform-block/trunk/readme.txt
r3020401 r3022517 2 2 Contributors: wpmetablock 3 3 Donate link: 4 Tags: gutenberg form, block form, fluent form s block, forms, fluent forms, custom form, order form, contact forms, quiz, wp forms4 Tags: gutenberg form, block form, fluent form block, forms, fluent forms, custom form, order form, contact form block, quiz, wp forms 5 5 Requires at least: 5.0 6 6 Tested up to: 6.4 … … 62 62 63 63 == Changelog == 64 = 1.0.2 = 65 Fixed: control selector issues solve 66 Fixed: CSS issues solve. 67 Fixed: code refactoring. 68 64 69 = 1.0.1 = 65 70 Fixed: CSS issues solve.
Note: See TracChangeset
for help on using the changeset viewer.