Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/heimrichhannot/contao-status_messages


https://github.com/heimrichhannot/contao-status_messages

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# Status Messages

A general status message module for the frontend.

## Features
- use same functionality as contao message class in the frontend
- [Encore Bundle](https://github.com/heimrichhannot/contao-encore-bundle) support

## Usage

### Install

1. Install with composer or contao manager

```composer require heimrichhannot/contao-status_messages```

1. Update database

### In a module

Simply add the following to your template:

```php
id); ?>
```

To add new Messages use the appropriate function in StatusMessage:

```php
StatusMessage::addError('An error has happened', $this->id);
```

### By using the global frontend module ModuleStatusMessages

Simply add the module to your page. The contained javascript gets all messages thrown in your modules and adds
it to the global markup element. It's necessary to use javascript here since else you get problems with order and redirects.