An open API service indexing awesome lists of open source software.

https://github.com/markshust/magento2-module-messages

The Messages module allows you to send success, notice, warning and error messages with HTML.
https://github.com/markshust/magento2-module-messages

Last synced: 5 months ago
JSON representation

The Messages module allows you to send success, notice, warning and error messages with HTML.

Awesome Lists containing this project

README

          

MarkShust_Messages


Send success, notice, warning and error messages with <html>



Supported Magento Versions
Latest Stable Version
Composer Downloads
Maintained - Yes

## Table of contents

- [Summary](#summary)
- [Installation](#installation)
- [API](#api)
- [Usage](#usage)
- [License](#license)

## Summary

By default, when you call `$this->messageManager->addSuccessMessage` within Magento, you cannot pass custom HTML into your message. This doesn't provide you with the flexibility to provide customized messages to your visitors.

This module provides the ability to display custom messages including HTML, and still escapes the HTML to prevent cross-site scripting (XSS) attacks.

## Installation

```
composer require markshust/magento2-module-messages
bin/magento module:enable MarkShust_Messages
bin/magento setup:upgrade
```

## API

```php
/**
* Any of the built-in complex message functions can be called with this identifer:
* addComplexSuccessMessage
* addComplexNoticeMessage
* addComplexWarningMessage
* addComplexErrorMessage
*
* @param string $identifer Set to 'withHtml' to use this module.
* @param mixed[] $data Data containing elements.
* @type string 'html' Desired output including HTML.
* @type string[] 'allowed_tags' (optional) List of allowed tags to render as HTML.
*/
$this->messageManager->addComplexSuccessMessage($identifer, $data);
```

## Usage

```php
protected messageManager;

public function __construct(
...
\Magento\Framework\Message\ManagerInterface $messageManager,
...
) {
$this->messageManager = $messageManager;
...
}

$this->messageManager->addComplexSuccessMessage('withHtml', [
'html' => 'This is bold text! And this is not.',
'allowed_tags' => ['b'],
]);
```

![Screenshot](https://raw.githubusercontent.com/markshust/magento2-module-messages/master/docs/demo.png)

## License

[MIT](https://opensource.org/licenses/MIT)