Changeset 3180902
- Timestamp:
- 11/04/2024 01:19:22 AM (16 months ago)
- Location:
- memberpress-addon-for-wp-courseware
- Files:
-
- 12 added
- 3 edited
-
tags/2.1 (added)
-
tags/2.1/includes (added)
-
tags/2.1/includes/class-wpcw-mp-addon.php (added)
-
tags/2.1/includes/class-wpcw-mp-members.php (added)
-
tags/2.1/includes/class-wpcw-mp-membership.php (added)
-
tags/2.1/includes/class-wpcw-mp-menu-courses.php (added)
-
tags/2.1/includes/deprecated.php (added)
-
tags/2.1/includes/functions.php (added)
-
tags/2.1/languages (added)
-
tags/2.1/languages/wpcw-mp-addon.pot (added)
-
tags/2.1/readme.txt (added)
-
tags/2.1/wp-courseware-memberpress.php (added)
-
trunk/includes/class-wpcw-mp-members.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-courseware-memberpress.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
memberpress-addon-for-wp-courseware/trunk/includes/class-wpcw-mp-members.php
r3000299 r3180902 474 474 * @param array $levelList The level list. 475 475 */ 476 public function handle_courseSync( $userID, $levelList ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName, WordPress.NamingConventions.ValidVariableName476 public function handle_courseSync( $userID, $levelList, $syncMode = 'sync' ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName, WordPress.NamingConventions.ValidVariableName 477 477 global $wpdb, $wpcwdb; 478 478 $wpdb->show_errors(); … … 497 497 } // end if ($levelList && count($levelList) > 0) 498 498 499 $syncMode = apply_filters( 'wpcw_mp_addon_can_load', $syncMode ); 500 499 501 // By this point, $courseIDList may or may not contain a list of courses. 500 WPCW_courses_syncUserAccess( $userID, array_keys( $courseIDList ), 'sync'); // phpcs:ignore WordPress.NamingConventions.ValidVariableName502 WPCW_courses_syncUserAccess( $userID, array_keys( $courseIDList ), $syncMode ); // phpcs:ignore WordPress.NamingConventions.ValidVariableName 501 503 } 502 504 -
memberpress-addon-for-wp-courseware/trunk/readme.txt
r3000299 r3180902 4 4 Tags: learning management system, selling online courses 5 5 Requires at least: 4.9 6 Tested up to: 6. 4.17 Stable tag: 2. 06 Tested up to: 6.6.2 7 Stable tag: 2.1 8 8 Requires PHP: 5.2.4 9 9 License: GPLv3 … … 77 77 == Changelog == 78 78 79 = 2.1 = 80 * Fix: fixed minor bug with wpcw_mp_addon_can_load filter 81 79 82 = 2.0 = 80 83 * New: Added ability to retoactively enroll a large quantity of students. -
memberpress-addon-for-wp-courseware/trunk/wp-courseware-memberpress.php
r3000299 r3180902 2 2 /** 3 3 * Plugin Name: WP Courseware - MemberPress Add On 4 * Version: 2. 04 * Version: 2.1 5 5 * Plugin URI: http://flyplugins.com 6 6 * Description: The official extension for WP Courseware to add support for the MemberPress membership plugin for WordPress. … … 19 19 20 20 // Constants. 21 define( 'WPCW_MP_ADDON_VERSION', ' 1.5.0' );21 define( 'WPCW_MP_ADDON_VERSION', '2.1.0' ); 22 22 23 23 /**
Note: See TracChangeset
for help on using the changeset viewer.