21 public function __construct($a_parent_obj, $a_parent_cmd =
"")
27 $this->
addColumn($this->lng->txt(
"title"),
"title");
28 $this->
addColumn($this->lng->txt(
"passed"),
"passed");
29 $this->
addColumn($this->lng->txt(
"action"),
"");
31 $this->
setTitle($this->lng->txt(
"ltiv_create"));
34 $this->
setRowTemplate(
"tpl.lti_verification_row.html",
"Modules/LTIConsumer");
35 $this->
setFormAction($DIC->ctrl()->getFormAction($a_parent_obj, $a_parent_cmd));
49 $DIC->logger()->root()
53 $DIC->user()->getId(),
59 foreach ($certificateArray as $certificate) {
61 'id' => $certificate->getUserCertificate()->getObjId(),
62 'title' => $certificate->getObjectTitle(),
79 $this->tpl->setVariable(
"TITLE", $a_set[
"title"]);
80 $this->tpl->setVariable(
"PASSED", ($a_set[
"passed"]) ? $this->lng->txt(
"yes") :
81 $this->lng->txt(
"no"));
83 if ($a_set[
"passed"]) {
84 $DIC->ctrl()->setParameter($this->parent_obj,
"lti_id", $a_set[
"id"]);
85 $action = $DIC->ctrl()->getLinkTarget($this->parent_obj,
"save");
86 $this->tpl->setVariable(
"URL_SELECT", $action);
87 $this->tpl->setVariable(
"TXT_SELECT", $this->lng->txt(
"select"));
setDescription($a_val)
Set description.
fetchActiveCertificatesByTypeForPresentation(int $userId, string $type)
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
fillRow($a_set)
Fill template row.
getItems()
Get all completed tests.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
__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.
__construct($a_parent_obj, $a_parent_cmd="")
Constructor.