Export Function Report Button (FIX)

Backend functionalities: user management, course management, reports, certificates, etc.
Post Reply
User avatar
murat
FormaLms User
Posts: 114
Joined: Fri Oct 12, 2012 6:28 pm
Version: forma.lms 2.0

Export Function Report Button (FIX)

Post by murat »

This problem was solved by robykirk.(Thank you :) )

1) doceboCore\views\dashboard\show.php

Changed the following code (around line 140):

Code: Select all

echo Form::getButton('export_report_created', false, Lang::t('_EXPORT', 'standard'), false, '', true, false);
with the code:

Code: Select all

//echo Form::getButton('export_report_created', false, Lang::t('_EXPORT', 'standard'), false, '', true, false);
echo Form::getButton('export_report_created', 'export_report_created', Lang::t('_EXPORT', 'standard'), false, '', false);
2) doceboCore\views\dashboard\export_dialog.php

Changed the following code (around line 13):

Code: Select all

  Lang::t('_EXPORT_CSV', 'report') => 'csv',
      Lang::t('_EXPORT_XLS', 'report') => 'xls'
   ),
   'csv'
with the code:

Code: Select all

   Lang::t('_EXPORT_HTML', 'report') => 'htm',
    Lang::t('_EXPORT_CSV', 'report') => 'csv',
    Lang::t('_EXPORT_XLS', 'report') => 'xls'
   ),
   'htm'

Note:
I could not find the solution of this problem in English.

For this reason I have written here from taking the italian forum.

link to the original topic:
viewtopic.php?f=5&t=50&p=199&hilit=button#p199
Hello,I'm Murat. If you need me, you can contact my mail
User avatar
max
FormaLms Guru
Posts: 2735
Joined: Thu Mar 01, 2012 10:41 am
Version: forma.lms 2.4
Contact:

Re: Export Function Report Button (FIX)

Post by max »

Thanks Murat for taking the time to rewrite the fix in English

We very very much appreciate this effort!
---------------------
Massimiliano Ferrari
Elearnit - Elearning e Knowledge Management
https://www.elearnit.net
https://www.linkedin.com/in/massimilianoferrari
m.ferrari[at]elearnit.net
Skype: m_ferrari_it
Post Reply