PluginProbe
SchedulePress – Auto Post & Publish, Auto Social Share, Schedule Posts with Editorial Calendar & Missed Schedule Post Publisher / trunk
SchedulePress – Auto Post & Publish, Auto Social Share, Schedule Posts with Editorial Calendar & Missed Schedule Post Publisher vtrunk
5.3.3 5.3.2 5.3.1 5.3.0 5.1.3 5.1.4 5.1.5 5.1.6 5.1.7 5.1.8 5.1.9 5.2.0 5.2.1 5.2.10 5.2.11 5.2.12 5.2.13 5.2.14 5.2.15 5.2.16 5.2.17 5.2.18 5.2.2 5.2.3 5.2.4 All 117 releases
wp-scheduled-posts / src / context / initialState.js

initialState.js in SchedulePress – Auto Post & Publish, Auto Social Share, Schedule Posts with Editorial Calendar & Missed Schedule Post Publisher trunk, at src/context/initialState.js

24 lines 613 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 const initialState = {
2 isOpenCustomSocialMessageModal: false,
3 // When true, the social-message modal opens straight to the AI Caption drawer
4 // (set by the panel header's "Write With AI" button).
5 autoOpenAICaption: false,
6 isOpenProPopup: false,
7 publishImmediately: false,
8 isScheduled: false,
9 scheduleType: '',
10 scheduleDate: '',
11 scheduleDateSource: '',
12 unpublishOn: '',
13 republishOn: '',
14 advancedSchedule: false,
15 advancedScheduleDate: '',
16 socialShareSettings: {
17 isSocialShareDisabled: false,
18 socialBannerId: null,
19 socialBannerUrl: '',
20 },
21 };
22
23 export default initialState;
24