ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilUserActionGUI.php
Go to the documentation of this file.
1 <?php
2 
24 {
27  protected bool $init_done = false;
28  protected int $current_user_id;
29 
30  protected function __construct(
31  ilUserActionContext $a_user_action_context,
32  ilGlobalTemplateInterface $a_global_tpl,
33  int $a_current_user_id
34  ) {
35  $this->tpl = $a_global_tpl;
36  $this->user_action_context = $a_user_action_context;
37  $this->current_user_id = $a_current_user_id;
38  }
39 
40  public static function getInstance(
41  ilUserActionContext $a_user_action_context,
42  ilGlobalTemplateInterface $a_global_tpl,
43  int $a_current_user_id
44  ): ilUserActionGUI {
45  return new ilUserActionGUI($a_user_action_context, $a_global_tpl, $a_current_user_id);
46  }
47 
48  public function init(): void
49  {
50  $tpl = $this->tpl;
51 
53  foreach ($prov->getActionTypes() as $act_type => $txt) {
55  $this->user_action_context->getComponentId(),
56  $this->user_action_context->getContextId(),
57  $prov->getComponentId(),
58  $act_type
59  )) {
60  foreach ($prov->getJsScripts($act_type) as $script) {
61  $tpl->addJavaScript($script);
62  }
63  }
64  }
65  }
66  }
67 
68  public function renderDropDown(int $a_target_user_id): string
69  {
70  if (!$this->init_done) {
71  $this->init();
72  }
73  $act_collector = ilUserActionCollector::getInstance($this->current_user_id, $this->user_action_context);
74  $action_collection = $act_collector->getActionsForTargetUser($a_target_user_id);
75  $list = new ilAdvancedSelectionListGUI();
76  $list->setListTitle("");
77  $list->setPullRight(false);
78  foreach ($action_collection->getActions() as $action) {
79  $list->addItem($action->getText(), "", $action->getHref(), "", "", "", "", false, "", "", "", "", true, $action->getData());
80  }
81  return $list->getHTML();
82  }
83 }
static getAllProviders()
Get all action providers.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getInstance(int $a_user_id, ilUserActionContext $a_context)
Get instance (for a user)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilGlobalTemplateInterface $tpl
ilUserActionContext $user_action_context
addJavaScript(string $a_js_file, bool $a_add_version_parameter=true, int $a_batch=2)
Add a javascript file that should be included in the header.
$txt
Definition: error.php:13
__construct(ilUserActionContext $a_user_action_context, ilGlobalTemplateInterface $a_global_tpl, int $a_current_user_id)
renderDropDown(int $a_target_user_id)
static lookupActive(string $a_context_comp, string $a_context_id, string $a_action_comp, string $a_action_type)
static getInstance(ilUserActionContext $a_user_action_context, ilGlobalTemplateInterface $a_global_tpl, int $a_current_user_id)