5 use \ILIAS\UI\Component\Modal\RoundTrip;
29 $DIC->language()->loadLanguageModule(
'cmix');
33 $this->
setId(self::TABLE_ID);
36 $DIC->language()->loadLanguageModule(
'form');
38 $this->
setFormAction($DIC->ctrl()->getFormAction($a_parent_obj, $a_parent_cmd));
39 $this->
setRowTemplate(
'tpl.cmix_statements_table_row.html',
'Modules/CmiXapi');
41 #$this->setTitle($DIC->language()->txt('tbl_statements_header')); 42 #$this->setDescription($DIC->language()->txt('tbl_statements_header_info')); 58 $this->
addColumn($DIC->language()->txt(
'tbl_statements_date'),
'date');
60 if ($this->isMultiActorReport) {
61 $this->
addColumn($DIC->language()->txt(
'tbl_statements_actor'),
'actor');
64 $this->
addColumn($DIC->language()->txt(
'tbl_statements_verb'),
'verb');
65 $this->
addColumn($DIC->language()->txt(
'tbl_statements_object'),
'object');
74 if ($this->isMultiActorReport) {
76 $ti->setDataSource($DIC->ctrl()->getLinkTarget($this->parent_obj,
'asyncUserAutocomplete',
'',
true));
77 $ti->setMaxLength(64);
80 $ti->readFromSession();
81 $this->filter[
"actor"] = $ti->getValue();
85 if (strtolower($this->ctrl->getCmdClass()) ==
"illticonsumerxapistatementsgui") {
88 $verbs = $this->parent_obj->getVerbs();
92 $si->readFromSession();
93 $this->filter[
"verb"] =
$si->getValue();
95 $dp->setShowTime(
true);
97 $dp->readFromSession();
98 $this->filter[
"period"] = $dp->getValue();
105 $r = $DIC->ui()->renderer();
116 $this->tpl->setVariable(
'STMT_DATE', $date);
118 if ($this->isMultiActorReport) {
119 $actor =
$data[
'actor'];
122 $this->tpl->setVariable(
'STMT_ACTOR',
'user_not_found');
135 $this->tpl->setVariable(
'STMT_OBJECT',
$data[
'object']);
136 $this->tpl->setVariable(
'STMT_OBJECT_INFO',
$data[
'object_info']);
137 $this->tpl->setVariable(
'ACTIONS', $r->render($actionsList));
138 $this->tpl->setVariable(
'RAW_DATA_MODAL', $r->render($rawDataModal));
144 $f = $DIC->ui()->factory();
146 $actions =
$f->dropdown()->standard([
148 $DIC->language()->txt(
'tbl_action_raw_data'),
151 ])->withLabel($DIC->language()->txt(
'actions'));
159 $f = $DIC->ui()->factory();
161 $modal =
$f->modal()->roundtrip(
163 $f->legacy(
'<pre>' .
$data[
'statement'] .
'</pre>')
164 )->withCancelButtonLabel(
'close');
176 $ret = $userObj->getFullname();
180 $ret = $DIC->language()->txt(
'deleted_user');
setExternalSorting($a_val)
Set external sorting.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
getShowSignal()
Get the signal to show this modal in the frontend.
setExternalSegmentation($a_val)
Set external segmentation.
addFilterItem($a_input_item, $a_optional=false)
Add filter item.
getActionsList(RoundTrip $rawDataModal, $data)
__construct($a_parent_obj, $a_parent_cmd, $isMultiActorReport)
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
static getVerbTranslation(ilLanguage $lng, $verb)
static getInstanceByObjId($a_obj_id, $stop_on_error=true)
get an instance of an Ilias object by object id
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
getUsername(ilCmiXapiUser $cmixUser)
__construct(Container $dic, ilPlugin $plugin)
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
static fromXapiTimestamp($xapiTimestamp)