35 $this->ctrl = $DIC->ctrl();
36 $this->
user = $DIC->user();
37 $database = $DIC->database();
38 $logger = $DIC->logger()->root();
48 $this->
addColumn($this->lng->txt(
"title"),
"title");
49 $this->
addColumn($this->lng->txt(
"passed"),
"passed");
50 $this->
addColumn($this->lng->txt(
"action"),
"");
52 $this->
setTitle($this->lng->txt(
"excv_create"));
55 $this->
setRowTemplate(
"tpl.exc_verification_row.html",
"Modules/Exercise");
69 $certificateArray = $this->userCertificateRepository
70 ->fetchActiveCertificatesByTypeForPresentation($userId,
'exc');
74 foreach ($certificateArray as $certificate) {
76 'id' => $certificate->getUserCertificate()->getObjId(),
77 'title' => $certificate->getObjectTitle(),
94 $this->tpl->setVariable(
"TITLE", $a_set[
"title"]);
95 $this->tpl->setVariable(
"PASSED", ($a_set[
"passed"]) ? $this->lng->txt(
"yes") :
96 $this->lng->txt(
"no"));
98 if ($a_set[
"passed"]) {
99 $ilCtrl->setParameter($this->parent_obj,
"exc_id", $a_set[
"id"]);
100 $action =
$ilCtrl->getLinkTarget($this->parent_obj,
"save");
101 $this->tpl->setVariable(
"URL_SELECT", $action);
102 $this->tpl->setVariable(
"TXT_SELECT", $this->lng->txt(
"select"));
setDescription($a_val)
Set description.
__construct( $a_parent_obj, $a_parent_cmd="", ilUserCertificateRepository $userCertificateRepository=null)
getItems()
Get all achieved test certificates for the current user.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
List all completed exercises for current user.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
fillRow($a_set)
Fill template row.
$userCertificateRepository
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.