Changeset 3295247
- Timestamp:
- 05/17/2025 01:06:34 PM (10 months ago)
- Location:
- spiffy-calendar/trunk
- Files:
-
- 4 edited
-
includes/admin/custom-posts.php (modified) (2 diffs)
-
includes/views.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
spiffy-calendar.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
spiffy-calendar/trunk/includes/admin/custom-posts.php
r3255613 r3295247 299 299 global $post_type_object, $spiffy_calendar; 300 300 301 ob_start(); 301 302 if ( !$spiffy_calendar->bonus_addons_active() ) { 302 $disabled = 'disabled="disabled"'; 303 echo __( 'Export CSV','spiffy-calendar' ) . ' | ' . __('Import CSV','spiffy-calendar'); 304 echo " <small><em>* "; 305 echo __ ('CSV import/export is a bonus feature', 'spiffy-calendar'); 306 echo "</em></small>"; 303 307 } else { 304 $disabled = '';305 }306 307 ob_start();308 308 ?> 309 <a href='<?php echo esc_url($_SERVER['REQUEST_URI']); ?>&spiffy_csv_export=true&nonce=<?php echo wp_create_nonce( 'spiffy_export_nonce' ); ?>' <?php echo $disabled; ?>>309 <a href='<?php echo esc_url($_SERVER['REQUEST_URI']); ?>&spiffy_csv_export=true&nonce=<?php echo wp_create_nonce( 'spiffy_export_nonce' ); ?>'> 310 310 <?php _e( 'Export CSV','spiffy-calendar' ); ?> 311 </a> | <a href="#" onclick='jQuery("#div_import").css("display", "inline"); return false;' <?php echo $disabled; ?>>311 </a> | <a href="#" onclick='jQuery("#div_import").css("display", "inline"); return false;'> 312 312 <?php _e('Import CSV','spiffy-calendar'); ?> 313 313 </a> 314 314 <form id='div_import' class="spiffy-form" name='div_import' style="display: none; margin-left: 5px;" action="" method="POST" enctype='multipart/form-data'> 315 <input type="file" name="spiffy_csv" multiple="false" <?php echo $disabled; ?>/>316 <input type="submit" <?php echo $disabled; ?>value="<?php _e ( 'Import','spiffy-calendar'); ?>" name="import_events" id="import_events" class="button-primary spiffy-submit action" />315 <input type="file" name="spiffy_csv" multiple="false" /> 316 <input type="submit" value="<?php _e ( 'Import','spiffy-calendar'); ?>" name="import_events" id="import_events" class="button-primary spiffy-submit action" /> 317 317 <input type="hidden" value="true" name="save_spiffycal"> 318 318 <?php _e('Import events from CSV', 'spiffy-calendar'); ?> … … 321 321 322 322 <?php 323 if ( !$spiffy_calendar->bonus_addons_active() ) { 324 echo " <small><em>* "; 325 _e ('CSV import/export is a bonus feature', 'spiffy-calendar'); 326 echo "</em></small>"; 327 } 328 ?> 329 330 <?php 323 } 331 324 $views['csv'] = ob_get_clean( ); 332 325 -
spiffy-calendar/trunk/includes/views.php
r3255613 r3295247 1466 1466 $the_time = __('all day', 'spiffy-calendar'); 1467 1467 } else if ($event->meta['_spiffy_event_end_time'][0] == '') { 1468 $the_time = __('at ', 'spiffy-calendar') . date(get_option('time_format'), strtotime($event->meta['_spiffy_event_ end'][0]));1468 $the_time = __('at ', 'spiffy-calendar') . date(get_option('time_format'), strtotime($event->meta['_spiffy_event_time'][0])); 1469 1469 } else if ($event->meta['_spiffy_event_time'][0] == '') { 1470 1470 $the_time = __('until ', 'spiffy-calendar') . date(get_option('time_format'), strtotime($event->meta['_spiffy_event_end_time'][0])); -
spiffy-calendar/trunk/readme.txt
r3255613 r3295247 4 4 Requires at least: 5.3 5 5 Tested up to: 6.8 6 Stable tag: 5.0. 56 Stable tag: 5.0.6 7 7 License: GPLv2 8 8 Tags: calendar,event,responsive,recurring,block … … 172 172 **Before updating from version 4 to version 5 it is strongly recommended to remove old events** 173 173 174 = 5.0.6 (May 17, 2025) = 175 176 * Fix: mini calendar display for events with a start time but no end time 177 * Tweak: CSV import/export display when bonus add-ons not present 178 174 179 = 5.0.5 (March 13, 2025) = 175 180 -
spiffy-calendar/trunk/spiffy-calendar.php
r3255613 r3295247 4 4 Plugin URI: http://www.spiffyplugins.ca/spiffycalendar 5 5 Description: A full featured, simple to use Spiffy Calendar plugin for WordPress that allows you to manage and display your events and appointments. 6 Version: 5.0. 56 Version: 5.0.6 7 7 Author: Spiffy Plugins 8 8 Author URI: http://spiffyplugins.ca
Note: See TracChangeset
for help on using the changeset viewer.