🇬🇧United Kingdom @globexplorer

Account created on 27 October 2009, almost 16 years ago
#

Recent comments

🇬🇧United Kingdom globexplorer

Just visit your manage display and select the Recordings formatter. You would then add a view mode that lists only the bbb field with that formatter. Use a view to display it related to your content id.

🇬🇧United Kingdom globexplorer

In version 1.x only the first reached status get's written into the db. Some invalid scorms will not supply any status. In order to set the status correctly the below code makes sure of that. Only if the $status varialbe has the correct value it will write the status.

    if ($status == 'passed' || $status == 'completed') {
        $entity->setStatus($status);
      }

Normally the raw scorm will be 0 per default, and a number if score already received.

I think what you describe here can be related to 2 things:

1. Problem with scorm itself.
2. You try to make a second attempt, in version 1.0 once an attempt has been made it will not be updated.

Production build 0.71.5 2024