File: /datos/www/expodubai/wp-content/plugins/redux-framework/redux-templates/src/editor.js
/**
* This is the file that Webpack is compiling into editor_blocks.js
*/
/**
* Internal dependencies
*/
import './fontawesome'
/**
* External dependencies
*/
import registerBlock from '~redux-templates/register-compnant'
// Import all index.js and register all (if name & settings are exported by the script)
const importAllAndRegister = r => {
r.keys().forEach( key => {
const { name, settings } = r( key )
try {
return name && settings && registerBlock( name, settings )
} catch ( error ) {
console.error( `Could not register ${ name } block` ) // eslint-disable-line
}
} )
}
importAllAndRegister( require.context( './block', true, /index\.js$/ ) )