Changeset 2675664
- Timestamp:
- 02/09/2022 12:09:12 PM (4 years ago)
- Location:
- beyondconnect/trunk
- Files:
-
- 5 edited
-
assets/beyondconnect_backend.js (modified) (1 diff)
-
beyondConnect.php (modified) (1 diff)
-
inc/Api/Widgets/TeachersWidget.php (modified) (1 diff)
-
inc/Base/AuthenticationController.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
beyondconnect/trunk/assets/beyondconnect_backend.js
r2315249 r2675664 22 22 window.onload = function () { 23 23 // Get the element with id="defaultOpen" and click on it 24 document.getElementById("defaultOpen").click(); 24 const button = document.getElementById("defaultOpen"); 25 if (button !== null) 26 button.click(); 25 27 }; -
beyondconnect/trunk/beyondConnect.php
r2619484 r2675664 7 7 Plugin URI: https://support.beyond-sw.com/hc/de/categories/360002442180 8 8 Description: beyondConnect connects WordPress with the beyond software services. 9 Version: 2.2. 99 Version: 2.2.10 10 10 Author: Felix Stadelmann, beyond software 11 11 Author URI: https://beyond-sw.com -
beyondconnect/trunk/inc/Api/Widgets/TeachersWidget.php
r2339795 r2675664 64 64 echo '<ul>'; 65 65 66 $querystring = Beyond::getODataQueryString('Lehrer', ('lehrerId,' . $instance['field']), '', empty($instance['filter']) ? '' : $instance['filter'], empty($instance['top']) ? '' : $instance['top'], empty($instance['skip']) ? '' : $instance['skip'], empty($instance['orderby']) ? '' : $instance['orderby']); 66 $querystring = Beyond::getODataQueryString( 67 'Lehrer', 68 '', 69 ('lehrerId,' . $instance['field']), 70 '', 71 (empty($instance['filter']) ? '' : $instance['filter']), 72 (empty($instance['top']) ? '' : $instance['top']), 73 (empty($instance['skip']) ? '' : $instance['skip']), 74 (empty($instance['orderby']) ? '' : $instance['orderby'])); 67 75 $json_lehrer = Beyond::getValues($querystring, 'value', false); 68 76 -
beyondconnect/trunk/inc/Base/AuthenticationController.php
r2367443 r2675664 64 64 } 65 65 66 public function authenticate($user = null, $username , $password)66 public function authenticate($user = null, $username = null, $password = null) 67 67 { 68 68 $option = get_option('beyondconnect_option'); -
beyondconnect/trunk/readme.txt
r2619484 r2675664 4 4 Donate link: https:/beyond-sw.com 5 5 Requires at least: 5.0 6 Tested up to: 5. 8.16 Tested up to: 5.9 7 7 Requires PHP: 7.1 8 Stable tag: 2.2. 98 Stable tag: 2.2.10 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 29 29 30 30 == Changelog == 31 = 2.2.10 = 32 * Bug fixes 31 33 = 2.2.9 = 32 34 * Bug fixes
Note: See TracChangeset
for help on using the changeset viewer.