You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-10
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Apigee Edge Drupal module
2
2
3
-
The Apigee Edge module enables you to integrate Drupal 8 with Apigee Edge:
3
+
The Apigee Edge module enables you to integrate Drupal 8 with Apigee Edge:
4
4
5
5
* Users that register or are added to the Drupal site will be added as developers in Apigee Edge.
6
6
* Click on "Apps" in user menu to get keys for the APIs exposed in Apigee Edge.
@@ -10,17 +10,17 @@ This module includes the following submodules:
10
10
*__Debug:__ enables administrators to configure and manage Apigee debug logs.
11
11
*__Teams (Experimental):__ enables developers to be organized into teams.
12
12
13
-
For more details read the [Apigee Edge module documentation](https://www.drupal.org/docs/8/modules/apigee-edge).
13
+
For more details read the [Apigee Edge module documentation](https://www.drupal.org/docs/8/modules/apigee-edge).
14
14
15
-
Following the same concept of [Drupal 8 Experimental modules](https://www.drupal.org/core/experimental),
16
-
some submodules are marked as "Experimental". They are provided for evaluation and testing purposes but are still
15
+
Following the same concept of [Drupal 8 Experimental modules](https://www.drupal.org/core/experimental),
16
+
some submodules are marked as "Experimental". They are provided for evaluation and testing purposes but are still
17
17
considered to be in development. Experimental modules are included in the "Apigee (Experimental)" package
18
18
on the "Extend" page of a Drupal site (/admin/modules).
19
19
20
-
## Support for Apigee Hybrid Cloud: Alpha Release
20
+
## Support for Apigee Hybrid Cloud: Beta Release
21
21
22
22
Support for [Apigee hybrid API](https://docs.apigee.com/hybrid/reference-overview) has been added but is considered to
23
-
be an alpha. If you run into any problems, add an issue to our [GitHub issue queue](https://github.com/apigee/apigee-edge-drupal/issues).
23
+
be an beta. If you run into any problems, add an issue to our [GitHub issue queue](https://github.com/apigee/apigee-edge-drupal/issues).
24
24
Please note that Team APIs and Monetization APIs are not currently supported on Apigee hybrid.
25
25
26
26
## Requirements
@@ -50,16 +50,16 @@ Please note that Team APIs and Monetization APIs are not currently supported on
50
50
## Notes
51
51
52
52
* If you do not configure the connection between Drupal and Apigee Edge, you will not be able to register developers on
53
-
the site and may cause other issues with Drupal core functions. If you do not plan to configure the connection between
53
+
the site and may cause other issues with Drupal core functions. If you do not plan to configure the connection between
54
54
Drupal and Apigee Edge, you should uninstall the Apigee Edge module.
55
55
* When you first install the module, existing users in the Drupal site may not have a developer account in Apigee Edge.
56
56
You can run [developer synchronization](https://www.drupal.org/docs/8/modules/apigee-edge/synchronize-developers-with-apigee-edge)
57
57
to make sure Drupal users and Apigee Edge developers are synchronized.
58
-
58
+
59
59
## Applying Patches
60
60
61
61
The Apigee Edge module may require Drupal core or contributed module patches to be able to work properly. These patches
62
-
can be applied automatically when Apigee Edge module gets installed but for that your Drupal installation must fulfill
62
+
can be applied automatically when Apigee Edge module gets installed but for that your Drupal installation must fulfill
63
63
the following requirements:
64
64
65
65
1.[cweagans/composer-patches](https://packagist.org/packages/cweagans/composer-patches) >= 1.6.5 has to be installed.
@@ -72,7 +72,7 @@ for drupal/core has to be set in Drupal's composer.json.
72
72
You can find the currently required patches, if any, in the Apigee Edge module's [composer.json](https://github.com/apigee/apigee-edge-drupal/blob/8.x-1.x/composer.json)
73
73
and in the Apigee Edge PHP API Client's [composer.json](https://github.com/apigee/apigee-client-php/blob/2.x/composer.json).
74
74
75
-
**If you do not have all required patches applied in your Drupal installation you may experience some problems with the
75
+
**If you do not have all required patches applied in your Drupal installation you may experience some problems with the
Copy file name to clipboardExpand all lines: apigee_edge.install
+1-1
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ use Drupal\user\RoleInterface;
33
33
*/
34
34
function apigee_edge_requirements($phase) {
35
35
$requirements = [];
36
-
$hybrid_support_message = t('Support for Apigee hybrid in the Apigee modules is in Alpha. Connecting to a hybrid organization is appropriate for evaluation and testing purposes during this pre-production stage.');
36
+
$hybrid_support_message = t('Support for Apigee hybrid in the Apigee modules is in Beta. Connecting to a hybrid organization is appropriate for evaluation and testing purposes during this pre-production stage.');
37
37
38
38
if ($phase === 'install') {
39
39
// This should be checked only if Drupal is installed.
Copy file name to clipboardExpand all lines: src/Plugin/KeyInput/ApigeeAuthKeyInput.php
+1-1
Original file line number
Diff line number
Diff line change
@@ -91,7 +91,7 @@ public function buildConfigurationForm(array $form, FormStateInterface $form_sta
91
91
$form['hybrid_support_info'] = [
92
92
'#type' => 'fieldset',
93
93
'#title' => $this->t('Support for Apigee hybrid'),
94
-
'#description' => $this->t('Support for Apigee hybrid in the Apigee modules is in Alpha. Connecting to a hybrid organization is appropriate for evaluation and testing purposes during this pre-production stage.'),
94
+
'#description' => $this->t('Support for Apigee hybrid in the Apigee modules is in Beta. Connecting to a hybrid organization is appropriate for evaluation and testing purposes during this pre-production stage.'),
0 commit comments