Sid Gifari File Manager
🏠 Root
/
home
/
nradmin
/
public_html
/
wp-content
/
plugins
/
custom-fonts
/
admin
/
dashboard
/
assets
/
src
/
store
/
📝 Editing: globalDataStore.js
import { createStore } from 'redux'; import globalDataReducer from './globalDataReducer'; const initialState = wp.hooks.applyFilters( 'custom_fonts_dashboard/datastore', { initialStateSetFlag : false, settingsSavedNotification : '', fonts: null, googleFont: null, localFont: null, editFont: null, fonts_pagination : {}, found_posts : '', active_fonts_count : '', trash_fonts_count : '', draft_fonts_count : '', fonts_count : '', fonts_limit_over : false, optionPreload: false, } ); const globalDataStore = createStore( globalDataReducer, initialState, window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__() ); export default globalDataStore;
💾 Save
❌ Cancel
Sid Gifari File Manager v1.0 | Terminal Auto-Sync Enabled | Current Path: /home/nradmin/public_html/wp-content/plugins/custom-fonts/admin/dashboard/assets/src/store