2017-04-23 16:10:17 -04:00
|
|
|
<?php
|
2025-06-30 09:04:05 -04:00
|
|
|
|
2017-04-23 16:10:17 -04:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2017-04-23 16:10:17 -04:00
|
|
|
*/
|
|
|
|
|
namespace OC\App\AppStore\Bundles;
|
|
|
|
|
|
|
|
|
|
class EnterpriseBundle extends Bundle {
|
|
|
|
|
/**
|
|
|
|
|
* {@inheritDoc}
|
|
|
|
|
*/
|
2018-08-09 10:12:48 -04:00
|
|
|
public function getName(): string {
|
|
|
|
|
return $this->l10n->t('Enterprise bundle');
|
2017-04-23 16:10:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* {@inheritDoc}
|
|
|
|
|
*/
|
2018-08-09 10:12:48 -04:00
|
|
|
public function getAppIdentifiers(): array {
|
2017-04-23 16:10:17 -04:00
|
|
|
return [
|
|
|
|
|
'admin_audit',
|
|
|
|
|
'user_ldap',
|
|
|
|
|
'files_retention',
|
|
|
|
|
'files_automatedtagging',
|
|
|
|
|
'user_saml',
|
|
|
|
|
'files_accesscontrol',
|
2018-08-09 10:12:48 -04:00
|
|
|
'terms_of_service',
|
2017-04-23 16:10:17 -04:00
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
}
|