ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjCmiXapiAccess.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
31 {
35  public static function _getCommands(): array
36  {
37  global $DIC; /* @var \ILIAS\DI\Container $DIC */
38 
39  $commands = array(
40  array(
41  "permission" => "read",
42  "cmd" => "infoScreen",
43  "lang_var" => "infoScreen",
44  "default" => true
45  ),
46  array(
47  'permission' => 'write',
48  'cmd' => 'ilCmiXapiSettingsGUI::show',
50  )
51  );
52 
53  return $commands;
54  }
55 
59  public static function getConditionOperators(): array
60  {
61  return [
64  ];
65  }
66 
67  public static function checkCondition(int $a_trigger_obj_id, string $a_operator, string $a_value, int $a_usr_id): bool
68  {
69  switch ($a_operator) {
71  return ilLPStatus::_lookupStatus($a_trigger_obj_id, $a_usr_id) == ilLPStatus::LP_STATUS_FAILED_NUM;
72 
74  return ilLPStatus::_hasUserCompleted($a_trigger_obj_id, $a_usr_id);
75  }
76 
77  return false;
78  }
79 }
static _hasUserCompleted(int $a_obj_id, int $a_user_id)
Lookup user object completion.
Interface for condition handling.
global $DIC
Definition: shib_login.php:22
static _lookupStatus(int $a_obj_id, int $a_user_id, bool $a_create=true)
Lookup status.
static checkCondition(int $a_trigger_obj_id, string $a_operator, string $a_value, int $a_usr_id)
check condition for a specific user and object
const LP_STATUS_FAILED_NUM