Changeset 2646035
- Timestamp:
- 12/17/2021 11:02:41 PM (4 years ago)
- Location:
- eveeno
- Files:
-
- 4 edited
-
tags/1.4/eveeno.php (modified) (2 diffs)
-
tags/1.4/readme.txt (modified) (1 diff)
-
trunk/eveeno.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
eveeno/tags/1.4/eveeno.php
r2461590 r2646035 154 154 'show' => '', 155 155 'eventid' => '', 156 'permalink' => '', 156 157 'userid' => '', 157 158 'width' => '98%', … … 168 169 $show = sanitize_text_field($args['show']); 169 170 $eventid = sanitize_text_field($args['eventid']); 171 $permalink = sanitize_text_field($args['permalink']); 172 $eventid = $permalink != '' ? $permalink : $eventid; 170 173 $userid = sanitize_text_field($args['userid']); 171 174 $width = sanitize_text_field($args['width']); -
eveeno/tags/1.4/readme.txt
r2461590 r2646035 43 43 44 44 = 1.4 = 45 * New Shortcode parameters: period, term, notter , lang, sort, scope, apikey45 * New Shortcode parameters: period, term, notterm, lang, sort, scope, apikey 46 46 * tested with WordPress 5.6 47 47 -
eveeno/trunk/eveeno.php
r2461590 r2646035 3 3 Plugin Name: Eveeno 4 4 Plugin URI: https://github.com/cassandre/eveeno-wp 5 Version: 1. 45 Version: 1.5 6 6 Description: Erstellt Shortcode, der Anmeldeformulare und Veranstaltungslisten von Eveeno in die eigene Seite integriert 7 7 Author: Barbara Bothe … … 158 158 'width' => '98%', 159 159 'height' => '800px', 160 'period' => ' all', // all (default) | past | future160 'period' => '', // all (default) | past | future 161 161 'term' => '', 162 162 'notterm' => '', 163 163 'lang' => '', // de | en | fr 164 164 'sort' => '', // date (default) | name 165 'scope' => ' all', // all (default) | private | public165 'scope' => '', // all (default) | private | public 166 166 'apikey' => '' 167 167 ]; -
eveeno/trunk/readme.txt
r2461682 r2646035 3 3 Tags: event, registration, form, conference, 4 4 Requires at least: 4.1 5 Tested up to: 5. 66 Stable tag: 1. 45 Tested up to: 5.8.2 6 Stable tag: 1.5 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 33 33 [eveeno show="list" userid="1234" width="95%" height="400px"] 34 34 ` 35 = Additional Shortcode Parameters = 36 ` 37 period="" [all | past | future (default)] 38 term="" 39 notterm="" 40 lang="" [de (default) | en | fr] 41 sort="" [date (default) | name] 42 scope="" [all | private | public (default)] 43 apikey="" 44 ` 35 45 36 46 == Installation == … … 41 51 42 52 == Changelog == 53 54 = 1.5 = 55 * Removed shortcode parameter defaults 56 * tested with WordPress 5.8.2 43 57 44 58 = 1.4 =
Note: See TracChangeset
for help on using the changeset viewer.