Actions
1 year ago
Contracts
1 year ago
DataTransferObjects
1 year ago
Exceptions
1 year ago
Traits
1 year ago
ValueObjects
1 year ago
resources
1 year ago
AdminNotice.php
1 year ago
AdminNotices.php
1 year ago
NotificationsRegistrar.php
1 year ago
NotificationsRegistrar.php
51 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | |
| 6 | namespace Give\Vendors\StellarWP\AdminNotices; |
| 7 | |
| 8 | use Give\Vendors\StellarWP\AdminNotices\Contracts\NotificationsRegistrarInterface; |
| 9 | use Give\Vendors\StellarWP\AdminNotices\Exceptions\NotificationCollisionException; |
| 10 | |
| 11 | class NotificationsRegistrar implements NotificationsRegistrarInterface |
| 12 | { |
| 13 | protected $notices = []; |
| 14 | |
| 15 | /** |
| 16 | * {@inheritDoc} |
| 17 | * |
| 18 | * @since 1.0.0 |
| 19 | */ |
| 20 | public function registerNotice(AdminNotice $notice): void |
| 21 | { |
| 22 | $id = $notice->getId(); |
| 23 | |
| 24 | if (isset($this->notices[$id])) { |
| 25 | throw new NotificationCollisionException($id, $notice); |
| 26 | } |
| 27 | |
| 28 | $this->notices[$id] = $notice; |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * {@inheritDoc} |
| 33 | * |
| 34 | * @since 1.0.0 |
| 35 | */ |
| 36 | public function unregisterNotice(string $id): void |
| 37 | { |
| 38 | unset($this->notices[$id]); |
| 39 | } |
| 40 | |
| 41 | /** |
| 42 | * {@inheritDoc} |
| 43 | * |
| 44 | * @since 1.0.0 |
| 45 | */ |
| 46 | public function getNotices(): array |
| 47 | { |
| 48 | return array_values($this->notices); |
| 49 | } |
| 50 | } |
| 51 |