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 GroupwareBundle extends Bundle {
|
|
|
|
|
/**
|
|
|
|
|
* {@inheritDoc}
|
|
|
|
|
*/
|
|
|
|
|
public function getName() {
|
2021-01-11 06:57:03 -05:00
|
|
|
return $this->l10n->t('Groupware bundle');
|
2017-04-23 16:10:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* {@inheritDoc}
|
|
|
|
|
*/
|
|
|
|
|
public function getAppIdentifiers() {
|
|
|
|
|
return [
|
|
|
|
|
'calendar',
|
|
|
|
|
'contacts',
|
2018-08-17 07:27:48 -04:00
|
|
|
'deck',
|
|
|
|
|
'mail'
|
2017-04-23 16:10:17 -04:00
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
}
|