Changeset 2278559
- Timestamp:
- 04/07/2020 03:23:28 PM (6 years ago)
- Location:
- promissa/trunk
- Files:
-
- 3 edited
-
promissa.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
shortcodes/calendar.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
promissa/trunk/promissa.php
r2212820 r2278559 4 4 Plugin URI: https://www.promissa.nl/plugins/wordpress 5 5 Description: This plugin will give you shortcodes and widgets with the latest masses and events of Pro Missa. 6 Version: 1.2. 76 Version: 1.2.8 7 7 Author: Kerk en IT 8 8 Author URI: https://www.kerkenit.nl -
promissa/trunk/readme.txt
r2212821 r2278559 8 8 Tags: kerk, vieringen, mistijden, kerkgebouwen, ledenadministratie, roosters 9 9 Requires at least: 5.2.1 10 Tested up to: 5. 3.111 Stable tag: 1.2. 710 Tested up to: 5.4 11 Stable tag: 1.2.8 12 12 Requires PHP: 5.2.4 13 13 Requires at least: 4.6 … … 81 81 == Changelog == 82 82 83 = 1.2.8 = 84 85 * Minor change 86 83 87 = 1.2.7 = 84 88 -
promissa/trunk/shortcodes/calendar.php
r2207376 r2278559 63 63 ); 64 64 65 65 66 foreach($masses as $mass) 66 67 { … … 72 73 $ProMissaEvents[] = array( 73 74 'id' => $mass['ID'], 74 'title' => (!empty($mass['note']) ? $mass['note'] : $mass['massType']) . ' (' . (strlen($mass['short']) > 2 ? substr($mass['short'], 0, 2) : $mass['short']) . ')',75 'title' => (!empty($mass['note']) ? $mass['note'] : $mass['massType']) . (!$single_church ? ' (' . (strlen($mass['short']) > 2 ? substr($mass['short'], 0, 2) : $mass['short']) . ')' : ''), 75 76 //'tooltip' => "<span><strong>" . (!empty($mass['note']) ? $mass['massType'] : (!empty($mass['memo']) ? Trim($mass['memo']) : Trim($mass['massType']))) . "</strong></span><br />Locatie: <strong>" . $mass['church'] . "</strong><br />Datum: <strong>" . $dateFormatter->format($date) . "</strong><br />Aanvang: <strong>" .$date->format('H.i\\u') . "</strong>", 76 77 'tooltip' => "<table><tr><th colspan=\"2\">" . (!empty($mass['note']) ? $mass['note'] : (!empty($mass['memo']) ? Trim($mass['memo']) : Trim($mass['massType']))) . "</th></tr><tr><td>" . __('Location', 'promissa') . ": </td><td>" . $mass['church'] . "</td></tr><tr><td>" . __('Date', 'promissa') . ": </td><td>" . $dateFormatter->format($date) . "</td></tr><tr><td>" . __('Time', 'promissa') . ": </td><td>" .$date->format('H.i\\u') . "</td></tr>" .
Note: See TracChangeset
for help on using the changeset viewer.