Files
animal_management/notifications/TransferNotificationCategory.php
2026-04-04 13:13:00 -04:00

22 lines
554 B
PHP

<?php
namespace humhub\modules\animal_management\notifications;
use humhub\modules\notification\components\NotificationCategory;
use Yii;
class TransferNotificationCategory extends NotificationCategory
{
public $id = 'animal_management_transfer';
public function getTitle()
{
return Yii::t('AnimalManagementModule.base', 'Animal Transfers');
}
public function getDescription()
{
return Yii::t('AnimalManagementModule.base', 'Receive notifications about animal transfer requests and status updates.');
}
}