ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilObjLearningSequenceLPPollingGUI.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 
24 {
26 
27  protected ilCtrl $ctrl;
28  protected int $current_user_id;
32 
33  public function __construct(
34  ilCtrl $ctrl,
35  int $current_user_id,
36  ilObjectDataCache $obj_data_cache,
37  ILIAS\Refinery\Factory $refinery,
38  ILIAS\HTTP\Wrapper\RequestWrapper $request_wrapper
39  ) {
40  $this->ctrl = $ctrl;
41  $this->current_user_id = $current_user_id;
42  $this->obj_data_cache = $obj_data_cache;
43  $this->refinery = $refinery;
44  $this->request_wrapper = $request_wrapper;
45  }
46 
47  public function executeCommand(): void
48  {
49  $cmd = $this->ctrl->getCmd();
50  switch ($cmd) {
53  // no break
54  default:
55  throw new ilException("Command not supported: $cmd");
56  }
57  }
58 
59  protected function getCurrentItemLearningProgress(): void
60  {
61  $obj_id = $this->request_wrapper->retrieve(self::PARAM_LSO_LP_OBJID, $this->refinery->kindlyTo()->int());
63  if (ilObjectLP::isSupportedObjectType($this->obj_data_cache->lookupType((int) $obj_id))) {
64  $il_lp_status = ilLPStatus::_lookupStatus($obj_id, $this->current_user_id, true);
65  }
66  print $il_lp_status;
67  exit;
68  }
69 }
exit
Definition: login.php:28
static isSupportedObjectType(string $type)
Class ChatMainBarProvider .
__construct(ilCtrl $ctrl, int $current_user_id, ilObjectDataCache $obj_data_cache, ILIAS\Refinery\Factory $refinery, ILIAS\HTTP\Wrapper\RequestWrapper $request_wrapper)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Interface RequestWrapper.
const PARAM_LSO_PARAMETER
static _lookupStatus(int $a_obj_id, int $a_user_id, bool $a_create=true)
Lookup status.
const LP_STATUS_NOT_ATTEMPTED_NUM