Changeset 3279408
- Timestamp:
- 04/22/2025 07:57:42 PM (10 months ago)
- Location:
- wp-connectr/trunk
- Files:
-
- 44 edited
-
changelog.txt (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
src/PowerResource/User/Controller.php (modified) (2 diffs)
-
vendor/composer/installed.php (modified) (2 diffs)
-
vendor_prefixed/league/container/src/Argument/ArgumentInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/ArgumentResolverInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/ArgumentResolverTrait.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/DefaultValueArgument.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/DefaultValueInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/Literal/ArrayArgument.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/Literal/BooleanArgument.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/Literal/CallableArgument.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/Literal/FloatArgument.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/Literal/IntegerArgument.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/Literal/ObjectArgument.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/Literal/StringArgument.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/LiteralArgument.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/LiteralArgumentInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/ResolvableArgument.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/ResolvableArgumentInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Container.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/ContainerAwareInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/ContainerAwareTrait.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Definition/Definition.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Definition/DefinitionAggregate.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Definition/DefinitionAggregateInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Definition/DefinitionInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/DefinitionContainerInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Exception/ContainerException.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Exception/NotFoundException.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Inflector/Inflector.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Inflector/InflectorAggregate.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Inflector/InflectorAggregateInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Inflector/InflectorInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/ReflectionContainer.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/ServiceProvider/AbstractServiceProvider.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/ServiceProvider/BootableServiceProviderInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/ServiceProvider/ServiceProviderAggregate.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/ServiceProvider/ServiceProviderAggregateInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/ServiceProvider/ServiceProviderInterface.php (modified) (1 diff)
-
vendor_prefixed/psr/container/src/ContainerExceptionInterface.php (modified) (1 diff)
-
vendor_prefixed/psr/container/src/ContainerInterface.php (modified) (1 diff)
-
vendor_prefixed/psr/container/src/NotFoundExceptionInterface.php (modified) (1 diff)
-
wp-connectr.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-connectr/trunk/changelog.txt
r3242190 r3279408 1 1 *** Changelog *** 2 3 2025-04-22 - version 1.4 4 * Adds password generation and email notification for new user creation 5 6 2025-03-27 - version 1.3.2 7 * Additional updates to support the upcoming WP Connectr Pro. Make sure you have the latest version if you are using the pro version. 8 9 2025-03-06 - version 1.3.1 10 * Just a small fix for upcoming pro version support. Adds ability to use any action hook as trigger. 11 12 2025-02-28 - version 1.3.0 13 * Added dynamic schema support for trigger topics 14 * Added dynamic fetch endpoint for upcoming new action in connector (GetItemV2) 15 16 2025-02-24 - version 1.2.0 17 * User responses now contain much more data 2 18 3 19 2025-02-17 - version 1.1.1 -
wp-connectr/trunk/readme.txt
r3263023 r3279408 40 40 Triggers will be supported through an upcoming paid plugin that will extend this plugin. Please watch reenhanced.com for details. 41 41 42 = Why can't I see my custom post types? = 43 Custom post types must be configured to be shown in the rest api in order to be used with this plugin. You can do this by adding the following to your custom post type registration: 44 ```php 45 'show_in_rest' => true, 46 ``` 47 48 There may also be a setting in your custom post type registration admin page to enable this. Either one will work, but until you do this, these custom post types will not be available in the plugin. 49 42 50 = How can I get support? = 43 51 … … 45 53 46 54 == Changelog == 55 56 2025-04-22 - version 1.4 57 * Adds password generation and email notification for new user creation 47 58 48 59 2025-03-27 - version 1.3.2 -
wp-connectr/trunk/src/PowerResource/User/Controller.php
r3246049 r3279408 47 47 } 48 48 49 public function rest_after_insert_user( $user, $request ) { 50 // Only send if this is a create (not update) 51 if ( empty( $request['send_user_notification'] ) || ! $request['send_user_notification'] ) { 52 return; 53 } 54 55 $user_obj = get_userdata( $user->ID ); 56 if ( ! $user_obj ) { 57 return; 58 } 59 60 // Try to get the password from the request 61 $password = isset( $request['password'] ) ? $request['password'] : ''; 62 63 $site_name = get_bloginfo( 'name' ); 64 $site_url = home_url(); 65 $login_url = wp_login_url(); 66 67 $to = $user_obj->user_email; 68 $subject = sprintf( __( '[%s] Your account details', 'wp-connectr' ), $site_name ); 69 70 $message = sprintf( 71 __( "Welcome to %s!\n\nYour account has been created for %s.\n\nUsername: %s\nPassword: %s\nLogin URL: %s\n\nFor your security, please change your password after logging in.\n", 'wp-connectr' ), 72 $site_name, 73 $site_url, 74 $user_obj->user_login, 75 $password, 76 $login_url 77 ); 78 79 $this->logger->debug( 'Sending user notification email:' . var_export( array( 'to' => $to, 'subject' => $subject, 'message' => $message ), true ) ); 80 81 wp_mail( $to, $subject, $message ); 82 } 83 84 public function create_item( $request ) { 85 // If password is not set, generate a random one 86 if ( empty( $request['password'] ) ) { 87 $request['password'] = wp_generate_password( 20, false ); 88 } 89 90 // If the user is set to be notified, add_filter to rest_after_insert_user 91 if ( ! empty( $request['send_user_notification'] ) && $request['send_user_notification'] ) { 92 add_action( 'rest_after_insert_user', array( $this, 'rest_after_insert_user' ), 10, 2 ); 93 } 94 95 return parent::create_item( $request ); 96 } 97 49 98 public function get_collection_params() { 50 99 $query_params = parent::get_collection_params(); … … 69 118 $args['roles']['items']['enum'] = array_keys( $all_wp_roles ); 70 119 120 if ( WP_REST_Server::CREATABLE === $method ) { 121 $args['password'] = array_merge( 122 $args['password'], 123 array( 124 'description' => __( 'The password for the user. Leave blank to generate', 'wp-connectr' ), 125 'required' => false, 126 ), 127 ); 128 129 // Add send_user_notification 130 $args['send_user_notification'] = array( 131 'description' => __( 'Whether to send the user a notification about their new account.', 'wp-connectr' ), 132 'type' => 'boolean', 133 'default' => true, 134 ); 135 } 136 137 71 138 return $args; 72 139 } -
wp-connectr/trunk/vendor/composer/installed.php
r3263023 r3279408 4 4 'pretty_version' => 'dev-main', 5 5 'version' => 'dev-main', 6 'reference' => ' 90fbcf5c8978fdf471e73a0137612c7cc9622915',6 'reference' => '74d5530ee4bafdba0bb89e5d29ce7538870125eb', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 44 44 'pretty_version' => 'dev-main', 45 45 'version' => 'dev-main', 46 'reference' => ' 90fbcf5c8978fdf471e73a0137612c7cc9622915',46 'reference' => '74d5530ee4bafdba0bb89e5d29ce7538870125eb', 47 47 'type' => 'wordpress-plugin', 48 48 'install_path' => __DIR__ . '/../../', -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/ArgumentInterface.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/ArgumentResolverInterface.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/ArgumentResolverTrait.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/DefaultValueArgument.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/DefaultValueInterface.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/Literal/ArrayArgument.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/Literal/BooleanArgument.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/Literal/CallableArgument.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/Literal/FloatArgument.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/Literal/IntegerArgument.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/Literal/ObjectArgument.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/Literal/StringArgument.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/LiteralArgument.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/LiteralArgumentInterface.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/ResolvableArgument.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/ResolvableArgumentInterface.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Container.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/ContainerAwareInterface.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/ContainerAwareTrait.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Definition/Definition.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Definition/DefinitionAggregate.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Definition/DefinitionAggregateInterface.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Definition/DefinitionInterface.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/DefinitionContainerInterface.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Exception/ContainerException.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Exception/NotFoundException.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Inflector/Inflector.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Inflector/InflectorAggregate.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Inflector/InflectorAggregateInterface.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Inflector/InflectorInterface.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/ReflectionContainer.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/ServiceProvider/AbstractServiceProvider.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/ServiceProvider/BootableServiceProviderInterface.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/ServiceProvider/ServiceProviderAggregate.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/ServiceProvider/ServiceProviderAggregateInterface.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/ServiceProvider/ServiceProviderInterface.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/psr/container/src/ContainerExceptionInterface.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/psr/container/src/ContainerInterface.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/psr/container/src/NotFoundExceptionInterface.php
r3263023 r3279408 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 2 7-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/wp-connectr.php
r3263023 r3279408 27 27 * Plugin URI: https://www.reenhanced.com/products/wordpress-connector/ 28 28 * Description: Deeply integrates WordPress with Microsoft Power Automate. Microsoft Certified. Easily connect your site to Microsoft SharePoint, Dynamics, Teams or over 1000 other services. 29 * Version: 1. 3.229 * Version: 1.4.0 30 30 * Author: Reenhanced LLC 31 31 * License: GPL-2.0+ … … 34 34 * 35 35 */ 36 define( 'WP_CONNECTR_VERSION', '1. 3.2' );36 define( 'WP_CONNECTR_VERSION', '1.4.0' ); 37 37 38 38 /*
Note: See TracChangeset
for help on using the changeset viewer.