partials
8 months ago
ads.php
7 months ago
bnr-img.png
11 months ago
calendly.php
9 months ago
custom-logo.php
9 months ago
dailymotion.php
2 years ago
elements.php
7 months ago
general.php
6 months ago
go-premium.php
7 months ago
google-calendar.php
2 years ago
hub.php
7 months ago
instagram.php
6 months ago
license.php
5 years ago
main-template.php
8 months ago
opensea.php
2 years ago
premium.php
2 years ago
settings.php
6 months ago
shortcode.php
7 months ago
soundcloud.php
2 years ago
sources.php
9 months ago
spotify.php
2 years ago
twitch.php
2 years ago
vimeo.php
2 years ago
wistia.php
2 years ago
youtube.php
1 year ago
google-calendar.php
89 lines
| 1 | <?php |
| 2 | /* |
| 3 | * Google Calendar Settings page |
| 4 | * All undefined vars comes from 'render_settings_page' method |
| 5 | * */ |
| 6 | |
| 7 | $epgc_client_secret = get_option('epgc_client_secret', ''); |
| 8 | $epgc_cache_time = get_option('epgc_cache_time', 0); |
| 9 | $calendarList = Embedpress_Google_Helper::getDecoded( 'epgc_calendarlist' ); //settings_selected_calendar_ids_json_cb |
| 10 | |
| 11 | ?> |
| 12 | |
| 13 | <div class="embedpress__settings background__white radius-25 p40"> |
| 14 | <h3><?php esc_html_e( "Google Calendar Settings", "embedpress" ); ?></h3> |
| 15 | <div class="embedpress__settings__form"> |
| 16 | <form action="" method="post" class="embedpress-settings-form"> |
| 17 | <?php |
| 18 | do_action( 'embedpress_before_gcalendar_settings_fields'); |
| 19 | echo $nonce_field ; ?> |
| 20 | <div class="form__group"> |
| 21 | <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> |
| 22 | |
| 23 | <div class="form__control__wrap <?php echo $pro_active ? '': 'isPro'; ?>"> |
| 24 | <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> |
| 25 | <p> |
| 26 | <?php esc_html_e( 'Enter the JSON string downloaded from the Google Console.', 'embedpress'); ?> |
| 27 | <br> |
| 28 | </p> |
| 29 | <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> |
| 30 | |
| 31 | </div> |
| 32 | <?php if ( !$pro_active ) { include EMBEDPRESS_SETTINGS_PATH . 'templates/partials/alert-pro.php'; } ?> |
| 33 | |
| 34 | </div> |
| 35 | |
| 36 | <div class="form__group"> |
| 37 | <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> |
| 38 | <div class="form__control__wrap <?php echo $pro_active ? '': 'isPro'; ?>"> |
| 39 | <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); ?>" > |
| 40 | <p><?php esc_html_e( 'How long do you want to cache the data? Set it 0 to disable caching', 'embedpress'); ?></p> |
| 41 | |
| 42 | </div> |
| 43 | <?php if ( !$pro_active ) { include EMBEDPRESS_SETTINGS_PATH . 'templates/partials/alert-pro.php'; } ?> |
| 44 | |
| 45 | </div> |
| 46 | <h2>Calendars</h2> |
| 47 | <div class="form__group"> |
| 48 | <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> |
| 49 | <div class="form__control__wrap <?php echo $pro_active ? '': 'isPro'; ?>"> |
| 50 | <?php if ( !empty( $calendarList) ) { |
| 51 | Embedpress_Google_Helper::print_calendar_list($calendarList); ?> |
| 52 | <p><?php esc_html_e( 'Select which calendars you want to show', 'embedpress'); ?></p> |
| 53 | <?php }else{ ?> |
| 54 | <p><?php esc_html_e( 'No calendar was found', 'embedpress'); ?></p> |
| 55 | <?php } ?> |
| 56 | </div> |
| 57 | <?php if ( !$pro_active ) { include EMBEDPRESS_SETTINGS_PATH . 'templates/partials/alert-pro.php'; } ?> |
| 58 | |
| 59 | </div> |
| 60 | |
| 61 | |
| 62 | <?php do_action( 'embedpress_after_gcalendar_settings_fields'); ?> |
| 63 | |
| 64 | <button class="button button__themeColor radius-10 embedpress-submit-btn" name="submit" value="gcalendar"><?php esc_html_e( 'Save Changes', 'embedpress'); ?></button> |
| 65 | </form> |
| 66 | <br><br> |
| 67 | <?php if ( !empty( $epgc_client_secret) ) { ?> |
| 68 | <h2><?php esc_html_e( 'Authorization', 'embedpress'); ?></h2> |
| 69 | <p><?php esc_html_e( 'You need to authorize before fetching new calendars', 'embedpress'); ?></p> |
| 70 | |
| 71 | <br> |
| 72 | <form style="display:inline" method="post" action="<?php echo admin_url('admin-post.php'); ?>"> |
| 73 | <?php wp_nonce_field( 'epgc_authorize', 'epgc_authorize_data' ); ?> |
| 74 | <input type="hidden" name="action" value="epgc_authorize"> |
| 75 | <?php submit_button(__('Authorize', 'embedpress'), 'primary', 'epgc_authorize', false); ?> |
| 76 | </form> |
| 77 | |
| 78 | <form style="display:inline" method="post" action="<?php echo admin_url('admin-post.php'); ?>"> |
| 79 | <?php wp_nonce_field( 'epgc_remove_private', 'epgc_remove_private_data' ); ?> |
| 80 | <input type="hidden" name="action" value="epgc_remove_private"> |
| 81 | <?php submit_button(__('Stop', 'embedpress'), '', 'epgc_remove_private', false); ?> |
| 82 | </form> |
| 83 | <?php } ?> |
| 84 | |
| 85 | |
| 86 | |
| 87 | </div> |
| 88 | </div> |
| 89 |