28 lines
574 B
PHP
28 lines
574 B
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Deck\Activity;
|
|
|
|
class SettingDescription extends SettingBase {
|
|
|
|
/**
|
|
* @return string Lowercase a-z and underscore only identifier
|
|
* @since 11.0.0
|
|
*/
|
|
public function getIdentifier(): string {
|
|
return 'deck_card_description';
|
|
}
|
|
|
|
/**
|
|
* @return string A translated string
|
|
* @since 11.0.0
|
|
*/
|
|
public function getName(): string {
|
|
return $this->l->t('A <strong>card description</strong> has been changed');
|
|
}
|
|
}
|