: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
* Google Calendar Settings page
* All undefined vars comes from 'render_settings_page' method
$epgc_client_secret = get_option('epgc_client_secret', '');
$epgc_cache_time = get_option('epgc_cache_time', 0);
$calendarList = Embedpress_Google_Helper::getDecoded( 'epgc_calendarlist' ); //settings_selected_calendar_ids_json_cb
<div class="embedpress__settings background__white radius-25 p40">
<h3><?php esc_html_e( "Google Calendar Settings", "embedpress" ); ?></h3>
<div class="embedpress__settings__form">
<form action="" method="post" class="embedpress-settings-form">
do_action( 'embedpress_before_gcalendar_settings_fields');
<div class="form__group">
<label for="epgc_client_secret" class="form__label" ><?php esc_html_e( "Google Auth JSON (Refresh after saving)", "embedpress" ); echo !$pro_active ? ' <span class="isPro">PRO</span>': ''; ?> </label>
<div class="form__control__wrap <?php echo $pro_active ? '': 'isPro'; ?>">
<textarea name="epgc_client_secret" id="epgc_client_secret" class="form__control" data-default="<?php echo esc_attr( $epgc_client_secret); ?>" value="<?php echo esc_attr( $epgc_client_secret); ?>" rows="5" ><?php echo esc_html( $epgc_client_secret) ?></textarea>
<?php esc_html_e( 'Enter the JSON string downloaded from the Google Console.', 'embedpress'); ?>
<p class="ep-note"> <?php printf(__('Note: Create a new project in the Google developer console and make sure you set <code>%s</code> as the authorized redirect URI.', 'embedpress'), $ep_page . '&page_type=google-calendar'); ?></p>
<?php if ( !$pro_active ) { include EMBEDPRESS_SETTINGS_PATH . 'templates/partials/alert-pro.php'; } ?>
<div class="form__group">
<label for="epgc_cache_time" class="form__label" ><?php esc_html_e( "Caching time (in Minutes)", "embedpress" ); echo $pro_active ? '': ' <span class="isPro">PRO</span>'; ?> </label>
<div class="form__control__wrap <?php echo $pro_active ? '': 'isPro'; ?>">
<input name="epgc_cache_time" type="number" id="epgc_cache_time" class="form__control" data-default="<?php echo esc_attr( $epgc_cache_time); ?>" value="<?php echo esc_attr( $epgc_cache_time); ?>" >
<p><?php esc_html_e( 'How long do you want to cache the data? Set it 0 to disable caching', 'embedpress'); ?></p>
<?php if ( !$pro_active ) { include EMBEDPRESS_SETTINGS_PATH . 'templates/partials/alert-pro.php'; } ?>
<div class="form__group">
<label for="epgc_cache_time" class="form__label" ><?php esc_html_e( "Select calendars to show", "embedpress" ); echo $pro_active ? '': ' <span class="isPro">PRO</span>'; ?> </label>
<div class="form__control__wrap <?php echo $pro_active ? '': 'isPro'; ?>">
<?php if ( !empty( $calendarList) ) {
Embedpress_Google_Helper::print_calendar_list($calendarList); ?>
<p><?php esc_html_e( 'Select which calendars you want to show', 'embedpress'); ?></p>
<p><?php esc_html_e( 'No calendar was found', 'embedpress'); ?></p>
<?php if ( !$pro_active ) { include EMBEDPRESS_SETTINGS_PATH . 'templates/partials/alert-pro.php'; } ?>
<?php do_action( 'embedpress_after_gcalendar_settings_fields'); ?>
<button class="button button__themeColor radius-10 embedpress-submit-btn" name="submit" value="gcalendar"><?php esc_html_e( 'Save Changes', 'embedpress'); ?></button>
<?php if ( !empty( $epgc_client_secret) ) { ?>
<h2><?php esc_html_e( 'Authorization', 'embedpress'); ?></h2>
<p><?php esc_html_e( 'You need to authorize before fetching new calendars', 'embedpress'); ?></p>
<form style="display:inline" method="post" action="<?php echo admin_url('admin-post.php'); ?>">
<?php wp_nonce_field( 'epgc_authorize', 'epgc_authorize_data' ); ?>
<input type="hidden" name="action" value="epgc_authorize">
<?php submit_button(__('Authorize', 'embedpress'), 'primary', 'epgc_authorize', false); ?>
<form style="display:inline" method="post" action="<?php echo admin_url('admin-post.php'); ?>">
<?php wp_nonce_field( 'epgc_remove_private', 'epgc_remove_private_data' ); ?>
<input type="hidden" name="action" value="epgc_remove_private">
<?php submit_button(__('Stop', 'embedpress'), '', 'epgc_remove_private', false); ?>