Changeset 2212820
- Timestamp:
- 12/16/2019 11:01:49 AM (6 years ago)
- Location:
- promissa/trunk
- Files:
-
- 4 edited
-
functions.php (modified) (1 diff)
-
promissa.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
shortcodes/upcoming_mass.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
promissa/trunk/functions.php
r2212778 r2212820 39 39 $response = wp_remote_get( $url, $args ); 40 40 $body = wp_remote_retrieve_body( $response ); 41 //var_dump($body); 41 42 42 43 $manage = json_decode($body, true); -
promissa/trunk/promissa.php
r2212778 r2212820 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. 66 Version: 1.2.7 7 7 Author: Kerk en IT 8 8 Author URI: https://www.kerkenit.nl -
promissa/trunk/readme.txt
r2212778 r2212820 81 81 == Changelog == 82 82 83 = 1.2.7 = 84 85 * Added support for advanced filtering 86 * Bugfixes 87 83 88 = 1.2.6 = 84 89 85 * Added paging in upcom ming masses widget90 * Added paging in upcoming masses widget 86 91 * Bugfixes 87 92 -
promissa/trunk/shortcodes/upcoming_mass.php
r2212778 r2212820 21 21 endif; 22 22 if($single_church) : 23 $masses = ProMissaREST('Schedule', '?size=' . $limit . $offset . '&filter=church_ID,eq,' . $church_id); 23 $masses = ProMissaREST('Schedule', '?size=' . $limit . $offset . '&filter=church_ID,eq,' . html_entity_decode($church_id)); 24 if(strpos($church_id, '&') !== -1) : 25 $church_id = explode('&', $church_id)[0]; 26 endif; 24 27 else : 25 28 $masses = ProMissaREST('Schedule', '?size=' . $limit . $offset); 26 29 endif; 30 27 31 $output = ''; 28 32 if(!$single_church && $content != null && !empty($content)) :
Note: See TracChangeset
for help on using the changeset viewer.