chore: bootstrap module from working instance and add install guide

This commit is contained in:
Kelin Rescue Hub
2026-04-09 14:18:10 -04:00
parent 97ad7da6f4
commit 6cda47760e
35 changed files with 6267 additions and 4 deletions

View File

@@ -0,0 +1,21 @@
<?php
namespace humhub\modules\donations\notifications;
use humhub\modules\notification\components\NotificationCategory;
use Yii;
class DonationNotificationCategory extends NotificationCategory
{
public $id = 'donations_activity';
public function getTitle()
{
return Yii::t('DonationsModule.base', 'Donations');
}
public function getDescription()
{
return Yii::t('DonationsModule.base', 'Receive notifications about successful or refunded donations.');
}
}