Línea 1... |
Línea 1... |
1 |
<?php
|
1 |
<?php
|
2 |
use LeadersLinked\Model\CompanyMicrolearningUserLog;
|
2 |
use LeadersLinked\Model\MicrolearningUserLog;
|
Línea 3... |
Línea 3... |
3 |
|
3 |
|
4 |
$acl = $this->viewModel()->getRoot()->getVariable('acl');
|
4 |
$acl = $this->viewModel()->getRoot()->getVariable('acl');
|
5 |
$currentUser = $this->currentUserHelper();
|
5 |
$currentUser = $this->currentUserHelper();
|
Línea 26... |
Línea 26... |
26 |
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.js'));
|
26 |
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.js'));
|
27 |
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/dataTables.responsive.min.js'));
|
27 |
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/dataTables.responsive.min.js'));
|
28 |
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.min.js'));
|
28 |
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.min.js'));
|
Línea 29... |
Línea 29... |
29 |
|
29 |
|
30 |
|
30 |
|
31 |
$activityApprovedTest = CompanyMicrolearningUserLog::ACTIVITY_APPROVED_TEST;
|
31 |
$activityApprovedTest = MicrolearningUserLog::ACTIVITY_APPROVED_TEST;
|
32 |
$activityCompletedCapsule = CompanyMicrolearningUserLog::ACTIVITY_COMPLETED_CAPSULE;
|
32 |
$activityCompletedCapsule = MicrolearningUserLog::ACTIVITY_COMPLETED_CAPSULE;
|
33 |
$activityCompletedTopic = CompanyMicrolearningUserLog::ACTIVITY_COMPLETED_TOPIC;
|
33 |
$activityCompletedTopic = MicrolearningUserLog::ACTIVITY_COMPLETED_TOPIC;
|
34 |
$activityRetakeATest = CompanyMicrolearningUserLog::ACTIVITY_RETAKE_A_TEST;
|
34 |
$activityRetakeATest = MicrolearningUserLog::ACTIVITY_RETAKE_A_TEST;
|
35 |
$activitySignin = CompanyMicrolearningUserLog::ACTIVITY_SIGNIN;
|
35 |
$activitySignin = MicrolearningUserLog::ACTIVITY_SIGNIN;
|
36 |
$activitySignout = CompanyMicrolearningUserLog::ACTIVITY_SIGNOUT;
|
36 |
$activitySignout = MicrolearningUserLog::ACTIVITY_SIGNOUT;
|
37 |
$activityStartCapsule = CompanyMicrolearningUserLog::ACTIVITY_START_CAPSULE;
|
37 |
$activityStartCapsule = MicrolearningUserLog::ACTIVITY_START_CAPSULE;
|
38 |
$activityStartTopic = CompanyMicrolearningUserLog::ACTIVITY_START_TOPIC;
|
38 |
$activityStartTopic = MicrolearningUserLog::ACTIVITY_START_TOPIC;
|
Línea 39... |
Línea 39... |
39 |
$activityTakeATest = CompanyMicrolearningUserLog::ACTIVITY_TAKE_A_TEST;
|
39 |
$activityTakeATest = MicrolearningUserLog::ACTIVITY_TAKE_A_TEST;
|
40 |
$activityViewSlide = CompanyMicrolearningUserLog::ACTIVITY_VIEW_SLIDE;
|
40 |
$activityViewSlide = MicrolearningUserLog::ACTIVITY_VIEW_SLIDE;
|
41 |
|
41 |
|
42 |
/*
|
42 |
/*
|