2017-07-25 09:46:21 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
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-07-25 09:46:21 -04:00
|
|
|
*/
|
|
|
|
|
namespace OC\App\AppStore\Bundles;
|
|
|
|
|
|
|
|
|
|
class EducationBundle extends Bundle {
|
|
|
|
|
/**
|
|
|
|
|
* {@inheritDoc}
|
|
|
|
|
*/
|
|
|
|
|
public function getName() {
|
2024-04-29 04:40:40 -04:00
|
|
|
return $this->l10n->t('Education bundle');
|
2017-07-25 09:46:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* {@inheritDoc}
|
|
|
|
|
*/
|
|
|
|
|
public function getAppIdentifiers() {
|
|
|
|
|
return [
|
|
|
|
|
'dashboard',
|
|
|
|
|
'circles',
|
|
|
|
|
'groupfolders',
|
|
|
|
|
'announcementcenter',
|
|
|
|
|
'quota_warning',
|
|
|
|
|
'user_saml',
|
2024-09-12 03:08:46 -04:00
|
|
|
'whiteboard',
|
2017-07-25 09:46:21 -04:00
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
}
|