22 lines
554 B
PHP
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.');
|
|
}
|
|
}
|