Initial import of animal_management module

This commit is contained in:
Kelin Rescue Hub
2026-04-04 13:13:00 -04:00
commit 20adb1bd1e
65 changed files with 14004 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?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.');
}
}