Disable "Like" on archived content (#7262)

* Disable "Like" on archived content

* Disable "Like" on archived content
This commit is contained in:
Gevorg Mansuryan 2024-10-20 11:42:28 +04:00 committed by GitHub
parent 8252b2a3e2
commit 643b8eca78
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 3 deletions

View File

@ -52,6 +52,7 @@ HumHub Changelog
- Enh #7253: CSV/XLSX export improvements
- Enh #7252: Show "Powered by HumHub" even if no entries in the Footer menu
- Enh #7257: Move "About" into Space Control Menu
- Enh #7262: Disable `Like` on archived content
1.16.3 (Unreleased)
--------------------------

View File

@ -8,10 +8,9 @@
namespace humhub\modules\like;
use Yii;
use humhub\modules\like\models\Like;
use humhub\modules\space\models\Space;
use humhub\modules\content\components\ContentActiveRecord;
use humhub\modules\like\models\Like;
use Yii;
/**
* This module provides like support for Content and Content Addons
@ -96,6 +95,10 @@ class Module extends \humhub\components\Module
return false;
}
if ($content->isArchived()) {
return false;
}
return true;
}