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: apigee_edge.install
+18-14
Original file line number
Diff line number
Diff line change
@@ -23,18 +23,17 @@
23
23
* Install, update and uninstall functions for Apigee Edge.
24
24
*/
25
25
26
-
use Drupal\apigee_edge\Plugin\KeyType\ApigeeAuthKeyType;
26
+
use Apigee\Edge\Utility\OrganizationFeatures;
27
27
use Drupal\apigee_edge\OauthTokenFileStorage;
28
-
use Drupal\Component\Serialization\Json;
29
28
use Drupal\Core\Url;
30
-
use Drupal\key\Plugin\KeyProviderSettableValueInterface;
31
29
use Drupal\user\RoleInterface;
32
30
33
31
/**
34
32
* Implements hook_requirements().
35
33
*/
36
34
function apigee_edge_requirements($phase) {
37
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.');
38
37
39
38
if ($phase === 'install') {
40
39
// This should be checked only if Drupal is installed.
@@ -51,12 +50,26 @@ function apigee_edge_requirements($phase) {
t("The Apigee Edge Teams module functionality is not available for your org and should be uninstalled, because <a href=':url' target='_blank'>Edge company APIs are not supported in Apigee hybrid orgs</a>.", $url) :
47
+
t("The Apigee Edge Teams module functionality is not available for your org because <a href=':url' target='_blank'>Edge company APIs are not supported in Apigee hybrid orgs</a>.", $url);
0 commit comments