PluginProbe
User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor / 4.0.3
User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor v4.0.3
4.0.3 4.0.2 4.0.1 4.0.0 3.16.6 3.16.5 3.16.4 3.16.3 3.16.2 3.16.1 3.16.0 3.15.9 3.9.9 3.9.5 3.9.6 3.9.7 3.9.8 1.1.7 1.1.8 1.1.9 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 All 341 releases
profile-builder / form-builder / blocks / src / lib / null-save.js

null-save.js in User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor 4.0.3, at form-builder/blocks/src/lib/null-save.js

13 lines 448 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Shared null save() for PB field blocks.
3 *
4 * `post_content` is blanked on save and the block tree is rebuilt from legacy
5 * meta on REST read, so dynamic blocks never emit anything from save(). Field
6 * and structural blocks import this rather than shipping an identical 3-line
7 * save.js. Container blocks needing `<InnerBlocks.Content />` (Repeater, FFC)
8 * keep their own save.js.
9 */
10 export default function save() {
11 return null;
12 }
13