Plugin Directory

Changeset 2646035


Ignore:
Timestamp:
12/17/2021 11:02:41 PM (4 years ago)
Author:
babo2015
Message:

V1.5

Location:
eveeno
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • eveeno/tags/1.4/eveeno.php

    r2461590 r2646035  
    154154                'show' => '',
    155155                'eventid' => '',
     156                'permalink' => '',
    156157                'userid' => '',
    157158                'width' => '98%',
     
    168169            $show = sanitize_text_field($args['show']);
    169170            $eventid = sanitize_text_field($args['eventid']);
     171            $permalink = sanitize_text_field($args['permalink']);
     172            $eventid = $permalink != '' ? $permalink : $eventid;
    170173            $userid = sanitize_text_field($args['userid']);
    171174            $width = sanitize_text_field($args['width']);
  • eveeno/tags/1.4/readme.txt

    r2461590 r2646035  
    4343
    4444= 1.4 =
    45 * New Shortcode parameters: period, term, notter, lang, sort, scope, apikey
     45* New Shortcode parameters: period, term, notterm, lang, sort, scope, apikey
    4646* tested with WordPress 5.6
    4747
  • eveeno/trunk/eveeno.php

    r2461590 r2646035  
    33  Plugin Name: Eveeno
    44  Plugin URI: https://github.com/cassandre/eveeno-wp
    5   Version: 1.4
     5  Version: 1.5
    66  Description: Erstellt Shortcode, der Anmeldeformulare und Veranstaltungslisten von Eveeno in die eigene Seite integriert
    77  Author: Barbara Bothe
     
    158158                'width' => '98%',
    159159                'height' => '800px',
    160                 'period' => 'all', // all (default) | past | future
     160                'period' => '', // all (default) | past | future
    161161                'term' => '',
    162162                'notterm' => '',
    163163                'lang' => '', // de | en | fr
    164164                'sort' => '', // date (default) | name
    165                 'scope' => 'all', // all (default) | private | public
     165                'scope' => '', // all (default) | private | public
    166166                'apikey' => ''
    167167                ];
  • eveeno/trunk/readme.txt

    r2461682 r2646035  
    33Tags: event, registration, form, conference,
    44Requires at least: 4.1
    5 Tested up to: 5.6
    6 Stable tag: 1.4
     5Tested up to: 5.8.2
     6Stable tag: 1.5
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3333[eveeno show="list" userid="1234" width="95%" height="400px"]
    3434`
     35= Additional Shortcode Parameters =
     36`
     37period="" [all | past | future (default)]
     38term=""
     39notterm=""
     40lang="" [de (default) | en | fr]
     41sort="" [date (default) | name]
     42scope="" [all | private | public (default)]
     43apikey=""
     44`
    3545
    3646== Installation ==
     
    4151
    4252== Changelog ==
     53
     54= 1.5 =
     55* Removed shortcode parameter defaults
     56* tested with WordPress 5.8.2
    4357
    4458= 1.4 =
Note: See TracChangeset for help on using the changeset viewer.