Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/ynamite/massif_usability

yform 4 usability addon (temporary until yform gets its own)
https://github.com/ynamite/massif_usability

Last synced: 19 days ago
JSON representation

yform 4 usability addon (temporary until yform gets its own)

Awesome Lists containing this project

README

        

# massif_usability

Package für REDAXO CMS >= 5.10.0

temporäres Ersatz-Plugin für yform_usability für yform >=4 – bietet ähnliche Funktionalität wie yform usability

Momentan verfügbar:

- Datensatz kopieren (befindet sich im Aktions-Menü rechts)
- Status on-/offline Toggle – **wichtig**: Feld "status" muss existieren. Werte: `0=offline,1=online`)
- benutzerdefinierte Toggles

_Leider bis jetzt ohne Drag&Drop – sawry!_

---

### Beispiel für ein benutzerdefiniertes Toggle

über `registerCustomToggle` kann ein eigenes Toggle erstellt werden, ähnlich dem Status-Toggle.

```
massif_usability::registerCustomToggle(table_name: String, field_name: String, off_state: String (HTML allowed), on_state: String (HTML allowed));
```

zBsp. um einen Datensatz als Highlight zu markieren (bei Events zum Beispiel):

```
massif_usability::registerCustomToggle('rex_yf_event', 'is_highlight', '', '');
```

## Bugs & Feature-Requests

Gerne als Issue oder im Redaxo Slack Channel

## Last Changes

### Version 1.0.2 // 03.03.2022

- fixed wrong backend user shown in historie addon

### Version 1.0.1 // 03.03.2022

- replaced rex_sql with yorm in api functions