PATH:
home
/
letacommog
/
aperobusiness
/
wp-content
/
plugins
/
modern-events-calendar
/
app
/
features
/
ix
<?php /** no direct access **/ defined('MECEXEC') or die(); $events = $this->main->get_events('-1'); $ix_options = $this->main->get_ix_options(); // Start the export process if token is exists if(isset( $ix_options['google_export_token'] ) && $ix_options['google_export_token']) $this->action = 'google-calendar-export-start'; ?> <div class="wrap" id="mec-wrap"> <h1><?php _e('MEC Import / Export', 'mec'); ?></h1> <h2 class="nav-tab-wrapper"> <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" class="nav-tab"><?php echo __('Google Cal. Import', 'mec'); ?></a> <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-g-calendar-export'); ?>" class="nav-tab nav-tab-active"><?php echo __('Google Cal. Export', 'mec'); ?></a> <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-f-calendar-import'); ?>" class="nav-tab"><?php echo __('Facebook Cal. Import', 'mec'); ?></a> <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-meetup-import'); ?>" class="nav-tab"><?php echo __('Meetup Import', 'mec'); ?></a> <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-sync'); ?>" class="nav-tab"><?php echo __('Synchronization', 'mec'); ?></a> <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-export'); ?>" class="nav-tab"><?php echo __('Export', 'mec'); ?></a> <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-import'); ?>" class="nav-tab"><?php echo __('Import', 'mec'); ?></a> <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-thirdparty'); ?>" class="nav-tab"><?php echo __('Third Party Plugins', 'mec'); ?></a> </h2> <div class="mec-container"> <div class="export-content w-clearfix extra"> <div class="mec-export-events-g-calendar"> <h3><?php _e('Add events to Google Calendar', 'mec'); ?></h3> <p class="description"><?php _e("Add your desired website events to your Google Calendar.", 'mec'); ?> <?php echo sprintf(__('You should set %s as redirect page in Google App Console.', 'mec'), '<code>'.$this->main->add_qs_vars(array('mec-ix-action'=>'google-calendar-export-get-token'), $this->main->URL('backend').'admin.php?page=MEC-ix&tab=MEC-g-calendar-export').'</code>'); ?></p> <form id="mec_g_calendar_export_form_authenticate" action="<?php echo $this->main->get_full_url(); ?>" method="POST"> <div class="mec-form-row"> <label class="mec-col-3" for="mec_ix_google_export_client_id"><?php _e('App Client ID', 'mec'); ?></label> <div class="mec-col-4"> <input type="text" id="mec_ix_google_export_client_id" name="ix[google_export_client_id]" value="<?php echo (isset($ix_options['google_export_client_id']) ? $ix_options['google_export_client_id'] : ''); ?>" /> </div> </div> <div class="mec-form-row"> <label class="mec-col-3" for="mec_ix_google_export_client_secret"><?php _e('App Client Secret', 'mec'); ?></label> <div class="mec-col-4"> <input type="text" id="mec_ix_google_export_client_secret" name="ix[google_export_client_secret]" value="<?php echo (isset($ix_options['google_export_client_secret']) ? $ix_options['google_export_client_secret'] : ''); ?>" /> </div> </div> <div class="mec-form-row"> <label class="mec-col-3" for="mec_ix_google_export_calendar_id"><?php _e('Calendar ID', 'mec'); ?></label> <div class="mec-col-4"> <input type="text" id="mec_ix_google_export_calendar_id" name="ix[google_export_calendar_id]" value="<?php echo (isset($ix_options['google_export_calendar_id']) ? $ix_options['google_export_calendar_id'] : ''); ?>" /> </div> </div> <div class="mec-options-fields"> <button id="mec_ix_google_export_authenticate_form_button" class="button button-primary mec-button-primary" type="submit"><?php _e('Authenticate', 'mec'); ?></button> </div> <p class="mec-col-6" id="mec_ix_google_export_authenticate_message" class="mec-util-hidden"></p> </form> </div> <?php if($this->action == 'google-calendar-export-start'): ?> <div> <form id="mec_g_calendar_export_form_do"> <ul class="mec-select-deselect-actions" data-for="#mec_export_g_calendar_events"> <li data-action="select-all"><?php _e('Select All', 'mec'); ?></li> <li data-action="deselect-all"><?php _e('Deselect All', 'mec'); ?></li> <li data-action="toggle"><?php _e('Toggle', 'mec'); ?></li> </ul> <ul id="mec_export_g_calendar_events"> <?php foreach($events as $event): ?> <li> <label> <input type="checkbox" name="mec-events[]" value="<?php echo $event->ID; ?>" checked="checked" /> <strong><?php echo $event->post_title; ?></strong> </label> </li> <?php endforeach; ?> </ul> <div class="mec-options-fields"> <button id="mec_ix_google_export_do_form_button" class="button button-primary mec-button-primary" type="submit"><?php _e('Add to Google Calendar', 'mec'); ?></button> </div> <p class="mec-col-6" id="mec_ix_google_export_do_message" class="mec-util-hidden"></p> </form> </div> <?php endif; ?> </div> </div> </div> <script type="text/javascript"> jQuery("#mec_g_calendar_export_form_authenticate").on('submit', function(e) { e.preventDefault(); // Hide the Message jQuery('#mec_ix_google_export_authenticate_message').hide(); // Add loading Class to the button jQuery("#mec_ix_google_export_authenticate_form_button").addClass('loading').text("<?php esc_attr_e('Checking ...', 'mec'); ?>"); var options = jQuery("#mec_g_calendar_export_form_authenticate").serialize(); jQuery.ajax( { type: "POST", url: ajaxurl, data: "action=mec_ix_g_calendar_authenticate&"+options, dataType: "json", success: function(data) { // Remove the loading Class to the button setTimeout(function(){ jQuery("#mec_ix_google_export_authenticate_form_button").removeClass('loading').text("<?php esc_attr_e('Authenticate', 'mec'); ?>"); }, 1000); // Remove the classes jQuery('#mec_ix_google_export_authenticate_message').removeClass('mec-error'); jQuery('#mec_ix_google_export_authenticate_message').removeClass('mec-success'); if(data.success) jQuery('#mec_ix_google_export_authenticate_message').addClass('mec-success'); else jQuery('#mec_ix_google_export_authenticate_message').addClass('mec-error'); jQuery('#mec_ix_google_export_authenticate_message').html(data.message); jQuery('#mec_ix_google_export_authenticate_message').show(); }, error: function(jqXHR, textStatus, errorThrown) { // Remove the loading Class to the button setTimeout(function(){ jQuery("#mec_ix_google_export_authenticate_form_button").removeClass('loading').text("<?php esc_attr_e('Authenticate', 'mec'); ?>"); }, 1000); } }); }); jQuery("#mec_g_calendar_export_form_do").on('submit', function(e) { e.preventDefault(); // Hide the Message jQuery('#mec_ix_google_export_do_message').hide(); // Add loading Class to the button jQuery("#mec_ix_google_export_do_form_button").addClass('loading').text("<?php esc_attr_e('Exporting ...', 'mec'); ?>"); var options = jQuery("#mec_g_calendar_export_form_do").serialize(); jQuery.ajax( { type: "POST", url: ajaxurl, data: "action=mec_ix_add_to_g_calendar&"+options, dataType: "json", success: function(data) { // Remove the loading Class to the button setTimeout(function(){ jQuery("#mec_ix_google_export_do_form_button").removeClass('loading').text("<?php esc_attr_e('Add to Google Calendar', 'mec'); ?>"); }, 1000); // Remove the classes jQuery('#mec_ix_google_export_do_message').removeClass('mec-error'); jQuery('#mec_ix_google_export_do_message').removeClass('mec-success'); if(data.success) jQuery('#mec_ix_google_export_do_message').addClass('mec-success'); else jQuery('#mec_ix_google_export_do_message').addClass('mec-error'); jQuery('#mec_ix_google_export_do_message').html(data.message); jQuery('#mec_ix_google_export_do_message').show(); }, error: function(jqXHR, textStatus, errorThrown) { // Remove the loading Class to the button setTimeout(function(){ jQuery("#mec_ix_google_export_do_form_button").removeClass('loading').text("<?php esc_attr_e('Add to Google Calendar', 'mec'); ?>"); }, 1000); } }); }); </script>
[+]
..
[-] import_meetup.php
[edit]
[-] thirdparty.php
[edit]
[-] export.php
[edit]
[-] sync.php
[edit]
[-] index.html
[edit]
[-] export_g_calendar.php
[edit]
[-] import_f_calendar.php
[edit]
[-] import_g_calendar.php
[edit]
[-] import.php
[edit]