19 declare(strict_types=1);
38 $ui_factory = $DIC[
'ui.factory'];
40 $data_factory = new \ILIAS\Data\Factory();
41 $request = $DIC->http()->request();
42 $ctrl = $DIC[
'ilCtrl'];
43 $spacer = $ui_factory->divider()->horizontal();
45 $url = $data_factory->uri($DIC->http()->request()->getUri()->__toString());
46 $url =
$url->withParameter(
'launcher_redirect',
'');
49 $description =
'<p>Before you can join this group, you will have to accept the terms and conditions</p>';
50 $instruction = $ui_factory->messageBox()->info(
'Accept the conditions.');
51 $group = $ui_factory->input()->field()->group([
52 $ui_factory->input()->field()->checkbox(
'Understood',
'ok')
54 $evaluation =
function (
Result $result,
Launcher &$launcher) use ($ctrl, $ui_factory) {
55 if ($result->
isOK() && $result->
value()[0]) {
57 (
string) $launcher->getTarget()->getURL()->withParameter(
'launcher_redirect',
'terms accepted (' . $launcher->getButtonLabel() .
')')
60 $launcher = $launcher->withStatusMessageBox($ui_factory->messageBox()->failure(
'You must accept the conditions.'));
63 $target = $data_factory->link(
'Join Group',
$url->withParameter(
'launcher_id',
'l1'));
65 $launcher = $ui_factory->launcher()
67 ->withDescription($description)
68 ->withInputs($group, $evaluation, $instruction);
70 if (array_key_exists(
'launcher_id', $request->getQueryParams()) && $request->getQueryParams()[
'launcher_id'] ===
'l1') {
71 $launcher = $launcher->withRequest($request);
75 $icon = $ui_factory->symbol()->icon()->standard(
'auth',
'authentification needed',
'large');
76 $description =
'<p>Before you can take the survey, you have to agree to our terms and conditions.</p>';
77 $target = $data_factory->link(
'Take Survey',
$url->withParameter(
'launcher_id',
'l2'));
78 $launcher2 = $ui_factory->launcher()
80 ->withStatusIcon($icon)
81 ->withButtonLabel(
'Take Survey')
82 ->withDescription($description)
83 ->withInputs($group, $evaluation);
85 if (array_key_exists(
'launcher_id', $request->getQueryParams()) && $request->getQueryParams()[
'launcher_id'] ===
'l2') {
86 $launcher2 = $launcher2->withRequest($request);
91 $icon = $ui_factory->symbol()->icon()->standard(
'ps',
'authentification needed',
'large');
92 $status_message = $ui_factory->messageBox()->info(
"You will be asked for your personal passcode when you start the test.");
93 $instruction = $ui_factory->messageBox()->info(
'Fill the form; use password "ilias" to pass');
94 $group = $ui_factory->input()->field()->group([
95 $ui_factory->input()->field()->password(
'pwd',
'Password')
97 $evaluation =
function (
Result $result,
Launcher &$launcher) use ($ctrl, $ui_factory) {
98 if ($result->
isOK() && $result->
value()[0]->toString() ===
'ilias') {
100 (
string) $launcher->getTarget()->getURL()->withParameter(
'launcher_redirect',
'password protected')
103 $launcher = $launcher->withStatusMessageBox($ui_factory->messageBox()->failure(
'nope. wrong pass.'));
106 $target = $data_factory->link(
'Begin Exam',
$url->withParameter(
'launcher_id',
'l3'));
107 $launcher3 = $ui_factory->launcher()
109 ->withDescription(
'')
110 ->withInputs($group, $evaluation, $instruction)
111 ->withStatusIcon($icon)
112 ->withStatusMessageBox($status_message)
113 ->withModalSubmitLabel(
'Begin Exam')
114 ->withModalCancelLabel(
'Cancel')
117 if (array_key_exists(
'launcher_id', $request->getQueryParams()) && $request->getQueryParams()[
'launcher_id'] ===
'l3') {
118 $launcher3 = $launcher3->withRequest($request);
122 $result =
"not submitted or wrong pass";
124 if (array_key_exists(
'launcher_redirect', $request->getQueryParams())
125 && $v = $request->getQueryParams()[
'launcher_redirect']
127 $result =
"<b>sucessfully redirected ($v)</b>";
130 return $result .
"<hr/>" .
$renderer->render([
isOK()
Get to know if the result is ok.
value()
Get the encapsulated value.
with_fields()
expected output: > ILIAS shows the rendered Component.