1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-06-05 22:09:38 +02:00

Aggiunta opzione formattazione HTML in viste per campi ckeditor

This commit is contained in:
Beppe
2022-02-24 12:55:47 +01:00
parent e4e10726fb
commit 792343e9a6
5 changed files with 23 additions and 6 deletions

View File

@ -121,6 +121,11 @@ if (!empty($query)) {
$value = trim($r[$field]);
// Formattazione HTML
if (empty($total['html_format'][$pos]) && !empty($value)) {
$value = strip_tags($value);
}
// Formattazione automatica
if (!empty($total['format'][$pos]) && !empty($value)) {
if (formatter()->isStandardTimestamp($value)) {