-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Send separate notification per plugin/theme when update is available
Fixes #167.
- Loading branch information
Showing
4 changed files
with
58 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace BlueChip\Security\Modules\Notifications; | ||
|
||
/** | ||
* Hooks available in notifications module | ||
*/ | ||
interface Hooks | ||
{ | ||
/** | ||
* Filter: whether to send one notification in case there are multiple plugin updates discovered at once? | ||
*/ | ||
public const ALL_PLUGIN_UPDATES_IN_ONE_NOTIFICATION = 'bc-security/filter:all-plugin-updates-in-one-notification'; | ||
|
||
/** | ||
* Filter: whether to send one notification in case there are multiple theme updates discovered at once? | ||
*/ | ||
public const ALL_THEME_UPDATES_IN_ONE_NOTIFICATION = 'bc-security/filter:all-theme-updates-in-one-notification'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters