Changeset 1903483
- Timestamp:
- 07/03/2018 04:14:50 PM (8 years ago)
- Location:
- google-calendar-events/trunk
- Files:
-
- 10 edited
-
assets/css/admin-add-calendar.min.css (modified) (1 diff)
-
assets/css/admin.min.css (modified) (1 diff)
-
assets/css/default-calendar-grid.min.css (modified) (1 diff)
-
assets/css/default-calendar-list.min.css (modified) (1 diff)
-
assets/js/admin-add-calendar.min.js (modified) (1 diff)
-
assets/js/admin.min.js (modified) (1 diff)
-
assets/js/default-calendar.min.js (modified) (1 diff)
-
google-calendar-events.php (modified) (2 diffs)
-
includes/events/event-builder.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
google-calendar-events/trunk/assets/css/admin-add-calendar.min.css
r1888419 r1903483 1 /*! Simple Calendar - 3.1.1 71 /*! Simple Calendar - 3.1.18 2 2 * https://simplecalendar.io 3 3 * Copyright (c) Moonstone Media 2018 -
google-calendar-events/trunk/assets/css/admin.min.css
r1888419 r1903483 1 /*! Simple Calendar - 3.1.1 71 /*! Simple Calendar - 3.1.18 2 2 * https://simplecalendar.io 3 3 * Copyright (c) Moonstone Media 2018 -
google-calendar-events/trunk/assets/css/default-calendar-grid.min.css
r1888419 r1903483 1 /*! Simple Calendar - 3.1.1 71 /*! Simple Calendar - 3.1.18 2 2 * https://simplecalendar.io 3 3 * Copyright (c) Moonstone Media 2018 -
google-calendar-events/trunk/assets/css/default-calendar-list.min.css
r1888419 r1903483 1 /*! Simple Calendar - 3.1.1 71 /*! Simple Calendar - 3.1.18 2 2 * https://simplecalendar.io 3 3 * Copyright (c) Moonstone Media 2018 -
google-calendar-events/trunk/assets/js/admin-add-calendar.min.js
r1888419 r1903483 1 /*! Simple Calendar - 3.1.1 71 /*! Simple Calendar - 3.1.18 2 2 * https://simplecalendar.io 3 3 * Copyright (c) Moonstone Media 2018 -
google-calendar-events/trunk/assets/js/admin.min.js
r1888419 r1903483 1 /*! Simple Calendar - 3.1.1 71 /*! Simple Calendar - 3.1.18 2 2 * https://simplecalendar.io 3 3 * Copyright (c) Moonstone Media 2018 -
google-calendar-events/trunk/assets/js/default-calendar.min.js
r1888419 r1903483 1 /*! Simple Calendar - 3.1.1 71 /*! Simple Calendar - 3.1.18 2 2 * https://simplecalendar.io 3 3 * Copyright (c) Moonstone Media 2018 -
google-calendar-events/trunk/google-calendar-events.php
r1888419 r1903483 6 6 * Author: Simple Calendar 7 7 * Author URI: https://simplecalendar.io 8 * Version: 3.1.1 78 * Version: 3.1.18 9 9 * Text Domain: google-calendar-events 10 10 * Domain Path: /i18n … … 22 22 $this_plugin_dir = plugin_dir_url( __FILE__ ); 23 23 $this_plugin_constants = array( 24 'SIMPLE_CALENDAR_VERSION' => '3.1.1 7',24 'SIMPLE_CALENDAR_VERSION' => '3.1.18', 25 25 'SIMPLE_CALENDAR_MAIN_FILE' => __FILE__, 26 26 'SIMPLE_CALENDAR_URL' => $this_plugin_dir, -
google-calendar-events/trunk/includes/events/event-builder.php
r1793822 r1903483 827 827 828 828 $anchor = $tag != 'url' ? 'yes' : $attr['autolink']; 829 $target = $attr['newwindow'] !== false ? 'target="_blank"' : ''; 830 831 return $anchor !== false ? ' <a href="' . esc_url( $url ) . '" ' . $target . '>' . $text . '</a>' : ' ' . $text; 829 $target = false !== $attr['newwindow'] ? 'target="_blank"' : ''; 830 831 /** 832 * Add additional event link attributes. 833 * 834 * @since 3.1.18 835 * 836 * @param string The additional link attributes. 837 * @param array $attr The current shortcode attributes. 838 * 839 * @return string The modified additional link attributes. 840 */ 841 $additional_link_atts = apply_filters( 'simcal_additional_event_link_attributes', '', $attr ); 842 843 return false !== $anchor ? ' <a href="' . esc_url( $url ) . '" ' . wp_kses_post( $target ) . ' ' . wp_kses_post( $additional_link_atts ) . '>' . $text . '</a>' : ' ' . $text; 832 844 } 833 845 -
google-calendar-events/trunk/readme.txt
r1888419 r1903483 5 5 Requires PHP: 5.3+ 6 6 Tested up to: 4.9 7 Stable tag: 3.1.1 77 Stable tag: 3.1.18 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 97 97 98 98 == Changelog == 99 100 = 3.1.18 - July 3, 2018 = 101 * Dev: Add filter "simcal_additional_link_attributes" to facilitate additional event link attributes. 99 102 100 103 = 3.1.17 - June 6, 2018 =
Note: See TracChangeset
for help on using the changeset viewer.