whoami7 - Manager
:
/
home
/
analuakl
/
somethingsmushy.com
/
wp-content
/
plugins
/
user-registration
/
src
/
blocks
/
blocks
/
Upload File:
files >> /home/analuakl/somethingsmushy.com/wp-content/plugins/user-registration/src/blocks/blocks/index.js
import { registerBlockType } from "@wordpress/blocks"; import { applyFilters } from "@wordpress/hooks"; import * as registrationForm from "./registration-form"; import * as loginForm from "./login-form"; import * as myaccount from "./myaccount"; import * as editProfile from "./edit-profile"; import * as editPassword from "./edit-password"; import * as loginLogoutMenu from "./login-logout-menu"; import * as contentRestrictionEnhanced from "./content-restriction-enhanced"; import * as membershipListing from "./membership-listing"; import * as thankYou from "./thank-you"; import * as membershipBuyNow from "./membership-buy-now"; /* global _UR_BLOCKS_ */ const { iscRestrictionActive, isProActive } = typeof _UR_BLOCKS_ !== "undefined" && _UR_BLOCKS_; let blocks = [ registrationForm, loginForm, myaccount, editProfile, editPassword, loginLogoutMenu, membershipListing, thankYou, membershipBuyNow ]; if (iscRestrictionActive) { blocks.push(contentRestrictionEnhanced); } /** * The function "registerBlocks" iterates over an array of blocks and calls the * "register" method on each block. */ export const registerBlocks = () => { for (const block of blocks) { const settings = applyFilters( "user-registration.blocks.metadata", block.settings ); settings.edit = applyFilters( "user-registration.blocks.edit", settings.edit, settings ); //Register the blocks. registerBlockType(block.name, settings); } }; export default registerBlocks;
Copyright ©2021 || Defacer Indonesia