芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/optimyar/wp-content/plugins/ithemes-security-pro/core/admin-pages/entries/profile.js
/** * WordPress dependencies */ import { render } from '@wordpress/element'; import domReady from '@wordpress/dom-ready'; import { setLocaleData } from '@wordpress/i18n'; import { getPlugins } from '@wordpress/plugins'; /** * Internal dependencies */ import App, { UserProfileFill } from './profile/app.js'; export { App, UserProfileFill }; // Silence warnings until JS i18n is stable. setLocaleData( { '': {} }, 'ithemes-security-pro' ); domReady( () => { const el = document.getElementById( 'itsec-profile-root' ); const plugins = getPlugins( 'solid-security-user-profile' ); if ( el ) { render(
, document.getElementById( 'itsec-profile-root' ) ); } } );