Buongiorno,
avrei bisogno di modificare la struttura dei nomi dei report
La versione di Forma è la 3.3.3 (vecchia e sarà aggiornata a breve ma la modifica mi serve subito)
Report: Categoria: Utenti - Relaziona gli utenti al corso
Ora il report quando viene esportato (a me la modifica serve per il CSV) esce:
report_NOME SCELTO_giorno_mese_anno
Mi servirebbe questa struttura
NOME_SCELTO_anno-mese-giorno
Non riesco a trovare il PHP da modificare. Sapreste indicarmi dove andare (e se riuscite come) a modificare?
Grazie mille
Alessandro
Modifica struttura nome Report
-
alforma2019
- FormaLms User
- Posts: 51
- Joined: Mon May 06, 2019 10:40 am
- Version: forma.lms 2.0
Re: Modifica struttura nome Report
/appLms/admin/modules/report/report.php
$export_filename = 'report_' . $filter_name . '_' . date('d_m_Y');
$export_filename = 'report_' . $filter_name . '_' . date('d_m_Y');
Per supporto GRATUITO contattatemi in privato qui
-
alforma2019
- FormaLms User
- Posts: 51
- Joined: Mon May 06, 2019 10:40 am
- Version: forma.lms 2.0
Re: Modifica struttura nome Report
Grazie mille!!