1 <?php declare(strict_types=1);
24 public function __construct($a_pg_obj, $a_content_obj, $a_hier_id = 0, $a_pc_id =
"")
28 $this->
user = $DIC->user();
34 $cmd = $this->ctrl->getCmd();
49 $this->tpl->setContent($a_form->getHTML());
63 $this->tpl->setContent($a_form->getHTML());
77 foreach ($tree->getSubTree($root) as $node) {
78 if (in_array($node[
'type'], self::SUPPORTED_TYPES)) {
79 $nodes[$node[
'obj_id']] = $node;
95 $activeCertificates = $repository->fetchActiveCertificates((
int) $this->
user->getId());
96 foreach ($activeCertificates as $certificate) {
97 $certificates[$certificate->getObjId()] = $certificate;
100 return $certificates;
110 $this->lng->loadLanguageModule(
'wsp');
113 $form->setFormAction($this->ctrl->getFormAction($this));
117 $form->setTitle($this->lng->txt(
'cont_insert_verification'));
118 $form->addCommandButton(
'create_verification', $this->lng->txt(
'save'));
119 $form->addCommandButton(
'cancelCreate', $this->lng->txt(
'cancel'));
121 $form->setTitle($this->lng->txt(
'cont_update_verification'));
122 $form->addCommandButton(
'update', $this->lng->txt(
'save'));
123 $form->addCommandButton(
'cancelUpdate', $this->lng->txt(
'cancel'));
124 $data = $this->content_obj->getData();
127 $certificateOptions = [];
129 $userCertificate = $certificate->getUserCertificate();
132 $type = $this->lng->txt(
'wsp_type_' . $userCertificate->getObjType() .
'v');
133 if (
'sahs' === $userCertificate->getObjType()) {
134 $type = $this->lng->txt(
'wsp_type_scov');
136 $additionalInformation =
' (' .
$type .
' / ' . $dateTime .
')';
137 $certificateOptions[$userCertificate->getObjId()] = $certificate->getObjectTitle() . $additionalInformation;
140 if ($a_insert || (isset(
$data[
'type']) &&
'crta' ===
$data[
'type'])) {
141 $certificate =
new ilSelectInputGUI($this->lng->txt(
'certificate'),
'persistent_object');
142 $certificate->setRequired(
true);
143 $certificate->setOptions($certificateOptions);
144 $form->addItem($certificate);
145 if (isset(
$data[
'id'])) {
146 $certificate->setValue(
$data[
'id']);
152 $certificateSource =
new ilRadioGroupInputGUI($this->lng->txt(
'certificate_selection'),
'certificate_selection');
154 $workspaceRadioButton =
new ilRadioOption($this->lng->txt(
'certificate_workspace_option'),
'certificate_workspace_option');
155 $persistentRadioButton =
new ilRadioOption($this->lng->txt(
'certificate_persistent_option'),
'certificate_persistent_option');
157 $workspaceCertificates =
new ilSelectInputGUI($this->lng->txt(
'cont_verification_object'),
'object');
158 $workspaceCertificates->setRequired(
true);
159 $workspaceOptions = [];
161 $workspaceOptions[$node[
'obj_id']] = $node[
'title'] .
' (' . $this->lng->txt(
'wsp_type_' . $node[
'type']) .
')';
163 asort($workspaceOptions);
164 $workspaceCertificates->setOptions($workspaceOptions);
166 $certificate =
new ilSelectInputGUI($this->lng->txt(
'cont_verification_object'),
'persistent_object');
167 $certificate->setRequired(
true);
168 $certificate->setOptions($certificateOptions);
169 $persistentRadioButton->
addSubItem($certificate);
170 $workspaceRadioButton->
addSubItem($workspaceCertificates);
172 $certificateSource->addOption($persistentRadioButton);
173 $certificateSource->addOption($workspaceRadioButton);
175 $form->addItem($certificateSource);
177 $certificateSource->setValue(
'certificate_workspace_option');
189 if ($form->checkInput()) {
190 $objectId = (int) $form->getInput(
'persistent_object');
191 $userId = (int) $this->
user->getId();
195 $certificateFileService->createCertificateFile($userId, $objectId);
197 ilUtil::sendInfo($this->lng->txt(
'certificate_file_not_found_error'),
true);
198 $this->log->warning($e->getMessage());
200 ilUtil::sendInfo($this->lng->txt(
'certificate_file_input_output_error'),
true);
201 $this->log->error($e->getMessage());
202 $this->ctrl->redirect($this,
'initForm');
205 $this->log->error($e->getMessage());
206 $this->ctrl->redirect($this,
'initForm');
210 $this->content_obj->create($this->pg_obj, $this->hier_id, $this->pc_id);
211 $this->content_obj->setData(
'crta', $objectId);
213 $this->updated = $this->pg_obj->update();
214 if ($this->updated ===
true) {
215 $this->ctrl->returnToParent($this,
'jump' . $this->hier_id);
218 $this->log->info(
'File could not be created');
230 if ($form->checkInput()) {
231 $option =
'certificate_persistent_option';
232 if ($form->getItemByPostVar(
'certificate_selection')) {
233 $option = $form->getInput(
'certificate_selection');
236 $oldContentData = $this->content_obj->getData();
238 if (
'certificate_workspace_option' === $option) {
239 $objectId = (int) $form->getInput(
'object');
242 if (isset($validWorkSpaceCertificates[$objectId])) {
243 $this->content_obj->setData($validWorkSpaceCertificates[$objectId][
'type'], $objectId);
245 } elseif (
'certificate_persistent_option' === $option) {
247 $objectId = (int) $form->getInput(
'persistent_object');
250 if (isset($validCertificates[$objectId])) {
252 $certificateFileService->createCertificateFile(
253 (
int) $this->
user->getId(),
256 $this->content_obj->setData(
'crta', $objectId);
259 ilUtil::sendInfo($this->lng->txt(
'certificate_file_not_found_error'),
true);
260 $this->log->warning($e->getMessage());
262 ilUtil::sendInfo($this->lng->txt(
'certificate_file_not_found_error'),
true);
263 $this->log->warning($e->getMessage());
265 ilUtil::sendInfo($this->lng->txt(
'certificate_file_input_output_error'),
true);
266 $this->log->warning($e->getMessage());
269 $this->log->error($e->getMessage());
270 $this->ctrl->redirect($this,
'initForm');
274 if (
'crta' === $oldContentData[
'type']) {
277 $certificateFileService->deleteCertificateFile(
278 (
int) $this->
user->getId(),
279 (int) $oldContentData[
'id']
283 $this->log->warning($e->getMessage());
286 $this->log->warning($e->getMessage());
290 $this->updated = $this->pg_obj->update();
291 if ($this->updated ===
true) {
292 $this->ctrl->returnToParent($this,
'jump' . $this->hier_id);
296 $this->pg_obj->addHierIDs();
This class represents an option in a radio group.
getValidWorkspaceCertificateNodeByIdMap()
__construct($a_pg_obj, $a_content_obj, $a_hier_id=0, $a_pc_id="")
Class ChatMainBarProvider .
insert(ilPropertyFormGUI $a_form=null)
getValidCertificateByIdMap()
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
Tree handler for personal workspace.
Class ilPCVerificationGUI.
initForm(bool $a_insert=false)
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
User Interface for Editing of Page Content Objects (Paragraphs, Tables, ...)
setValue($a_value)
Set Value.
addSubItem($a_item)
Add Subitem.
getRootId()
get the root id of tree public
getNodeData($a_node_id, $a_tree_pk=null)
get all information of a node.
displayValidationError()
display validation errors
edit(ilPropertyFormGUI $a_form=null)
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
__construct(Container $dic, ilPlugin $plugin)
Class FlySystemFileAccessTest disabled disabled disabled.