Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/heimrichhannot/contao-alert-reminder-bundle
This utility bundle offers functionality to remind the backend users of existing alerts in the Contao CMS.
https://github.com/heimrichhannot/contao-alert-reminder-bundle
Last synced: about 1 month ago
JSON representation
This utility bundle offers functionality to remind the backend users of existing alerts in the Contao CMS.
- Host: GitHub
- URL: https://github.com/heimrichhannot/contao-alert-reminder-bundle
- Owner: heimrichhannot
- License: lgpl-3.0
- Created: 2020-08-05T12:07:07.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-09-13T11:35:48.000Z (over 1 year ago)
- Last Synced: 2024-10-20T09:17:16.381Z (2 months ago)
- Language: PHP
- Homepage:
- Size: 34.2 KB
- Stars: 1
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Contao Alert Reminder Bundle
This utility bundle offers functionality to remind the backend users of existing alerts in the Contao CMS.
## Features
- looks for existing (configurable) contao backend alerts (added via the hook `getSystemMessages`) and adds a backend message in order to remind the backend user of it
## Use case
You might ask what's the use case of this functionality?
The original use case was in order to remind the backend users to add missing `alt` attributes to images (accessibility).
Without the functionality, the user might forget about it. Making the `alt` mandatory has also not been an option because of contao's simple file upload functionality which doesn't contain the field at all.
Hence the need for reminding the backend user of it.
## Installation
1. Run `composer require heimrichhannot/contao-alert-reminder-bundle` and update the database.
## Technical instructions
### Add new contao alerts to the context of this bundle
1. Register a `getSystemMessages` hook as usual in contao:
```php
// config.php (or use yaml tags in contao 4.9+)
$GLOBALS['TL_HOOKS']['getSystemMessages']['myBundle'] = [
\Acme\MyBundle\EventListener\GetSystemMessagesListener::class, '__invoke'
];
```
```php
// GetSystemMessagesListener.php
namespace Acme\MyBundle\EventListener;
use Acme\AlertReminderBundle\Manager\AlertReminderManager;
use Acme\RequestBundle\Component\HttpFoundation\Request;
use Symfony\Contracts\Translation\TranslatorInterface;
class GetSystemMessagesListener
{
/**
* @var TranslatorInterface
*/
private $translator;
/**
* @var Request
*/
private $request;
/**
* @var AlertReminderManager
*/
private $alertReminderManager;
public function __construct(AlertReminderManager $alertReminderManager, TranslatorInterface $translator, Request $request)
{
$this->translator = $translator;
$this->request = $request;
$this->alertReminderManager = $alertReminderManager;
}
public function __invoke()
{
$message = 'My alert message
';
return $this->alertReminderManager->prepareSystemMessage($message, 'some_alert_type_alias');
}
}
```
1. In order to activate the reminding you have to add your alert type in your project's `app/config/config.yml`:```yaml
huh_alert_reminder:
alert_types:
- { name: some_alert_type_alias }
```### Add your alerts to the alert queue backend module
This bundle introduces the `AlertQueueModule`. It's just a list of messages. You might use it to add the full list of
alerts you want to the user to notice. In the context of reminding the user of missing alt-attributes this is the place
to add shortcuts to the concrete media files.You can add your messages by registering an event listener for the event `AddAlertsToAlertReminderQueueEvent` for example as follows:
```php
public function __invoke(AddAlertsToAlertReminderQueueEvent $event)
{
if ('alt_issues_existing' !== Input::get('type')) {
return;
}$messages = $event->getAlerts();
$messages[] = [
'class' => 'tl_error', // you can use Contao's tl_ classes
'message' => 'My message'
];$event->setAlerts($messages);
}
```