Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/ynamite/massif_usability
- Owner: ynamite
- Created: 2022-03-02T17:01:41.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-03T13:20:47.000Z (almost 3 years ago)
- Last Synced: 2023-08-21T04:21:22.710Z (over 1 year ago)
- Language: PHP
- Size: 19.5 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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