19 declare(strict_types=1);
34 public function __construct(
object $a_parent_obj,
string $a_parent_cmd,
int $a_ref_id)
38 $this->
setId(
"rbaclog");
39 $this->ref_id = $a_ref_id;
49 $this->
addColumn($this->
lng->txt(
"rbac_changes"),
"",
"50%");
54 $this->
setRowTemplate(
"tpl.rbac_log_row.html",
"Services/AccessControl");
75 $item->setOptions(array(
"" => $this->
lng->txt(
"all")) + $this->action_map);
76 $this->
filter[
"action"] = $item->getValue();
79 $this->
filter[
"date"] = $item->getDate();
82 protected function getItems(
int $a_ref_id, array $a_current_filter = null): void
86 $rbacreview = $DIC[
'rbacreview'];
90 foreach ($rbacreview->getOperations() as $op) {
91 $this->operations[$op[
"ops_id"]] = $op[
"operation"];
105 protected function fillRow(array $a_set): void
109 $this->tpl->setVariable(
"LASTNAME",
$name[
"lastname"] ??
'');
110 $this->tpl->setVariable(
"FIRSTNAME",
$name[
"firstname"] ??
'');
111 $this->tpl->setVariable(
"LOGIN",
$name[
"login"] ??
'');
112 $this->tpl->setVariable(
"ACTION", $this->action_map[$a_set[
"action"]] ??
'');
116 $changes = array(array(
"action" => $this->
lng->txt(
"rbac_log_changed_owner"),
"operation" => $user));
123 $this->tpl->setCurrentBlock(
"changes");
124 foreach ($changes as $change) {
125 $this->tpl->setVariable(
"CHANGE_ACTION", $change[
"action"] ??
'');
126 $this->tpl->setVariable(
"CHANGE_OPERATION", $change[
"operation"] ??
'');
127 $this->tpl->parseCurrentBlock();
137 if (isset($raw[
"src"]) && is_numeric($raw[
'src'])) {
140 $result[] = array(
"action" => $this->
lng->txt(
"rbac_log_source_object"),
146 foreach ($raw[
"ops"] as $role_id => $ops) {
147 foreach ($ops as $op) {
152 } elseif (isset($raw[
"ops"])) {
153 foreach ($raw[
"ops"] as $role_id => $actions) {
154 foreach ($actions as $action => $ops) {
155 foreach ((array) $ops as $op) {
163 if (isset($raw[
"inht"])) {
164 foreach ($raw[
"inht"] as $action => $role_ids) {
165 foreach ((array) $role_ids as $role_id) {
177 foreach ($raw as
$type => $actions) {
178 foreach ($actions as $action => $ops) {
179 foreach ($ops as $op) {
180 $result[] = array(
"action" => sprintf(
181 $this->
lng->txt(
"rbac_log_operation_" . $action),
198 if (is_array($a_op)) {
200 foreach ($a_op as $op) {
203 return implode(
", ",
$res);
206 if (is_numeric($a_op) && isset($this->operations[$a_op])) {
207 $op_id = $this->operations[$a_op];
208 if (substr($op_id, 0, 7) !=
"create_") {
212 if ($this->
lng->exists($a_type .
'_' . $op_id .
'_short')) {
213 $perm = $this->
lng->txt($a_type .
'_' . $op_id .
'_short');
215 $perm = $this->
lng->txt($op_id);
221 $type = substr($op_id, 7, strlen($op_id));
225 $perm = $this->
lng->txt(
"rbac_" . $op_id);
239 global $objDefinition;
241 if ($objDefinition->isPlugin($type)) {
252 return is_null($perm) || (strpos($perm, $op_id) !==
false);
getItems(int $a_ref_id, array $a_current_filter=null)
setFormAction(string $a_form_action, bool $a_multipart=false)
static _lookupFullname(int $a_user_id)
setResetCommand(string $a_val, string $a_caption="")
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
static _lookupName(int $a_user_id)
lookup user name
parseChangesFaPa(array $raw)
static getLogItems(int $a_ref_id, int $a_limit, int $a_offset, array $a_filter=null)
parseChangesTemplate(array $raw)
getTranslationFromPlugin(string $type, string $op_id)
Check the type for plugin and get the translation for op_id.
getOPCaption(string $a_type, $a_op)
addFilterItemByMetaType(string $id, int $type=self::FILTER_TEXT, bool $a_optional=false, string $caption="")
Add filter by standard type.
static _lookupTitle(int $obj_id)
static _getTranslation(string $a_role_title)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setFilterCommand(string $a_val, string $a_caption="")
static _lookupObjectId(int $ref_id)
static _getLink(?int $a_ref_id, string $a_type='', array $a_params=array(), string $append="")
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
static lookupTxtById(string $plugin_id, string $lang_var)
__construct(Container $dic, ilPlugin $plugin)
setLimit(int $a_limit=0, int $a_default_limit=0)
const EDIT_TEMPLATE_EXISTING
notTranslated(?string $perm, string $op_id)
Check the op is translated correctly.
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
static _lookupType(int $id, bool $reference=false)
determineOffsetAndOrder(bool $a_omit_offset=false)
setEnableHeader(bool $a_enableheader)
setMaxCount(int $a_max_count)
set max.
__construct(object $a_parent_obj, string $a_parent_cmd, int $a_ref_id)
setExternalSegmentation(bool $a_val)