27 protected \ILIAS\BookingManager\InternalService
$service;
31 protected \ILIAS\DI\UIServices
$ui;
33 protected \Psr\Http\Message\ServerRequestInterface
$request;
43 $this->
ctrl = $DIC->ctrl();
44 $this->
ui = $DIC->ui();
45 $this->
lng = $DIC->language();
46 $this->
user = $DIC->user();
47 $this->request = $DIC->http()->request();
48 $this->main_tpl = $DIC->ui()->mainTemplate();
49 $this->service = $DIC->bookingManager()->internal();
51 $this->repo = $this->service->repo()->preferences();
52 $this->
access = $DIC->access();
60 $cmd = $ctrl->
getCmd(
"show");
61 if ($cmd ===
"render") {
64 switch ($next_class) {
66 if (in_array($cmd, [
"show",
"savePreferences"])) {
72 protected function show(): void
74 $preferences = $this->service->domain()->preferences($this->pool);
76 if ($preferences->isGivingPreferencesPossible()) {
91 $this->main_tpl->setContent($ui->renderer()->render($form));
93 $this->main_tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"book_type_warning"));
106 $preferences = $preferences->getPreferences();
112 $checked = isset($preferences[$this->
user->getId()]) &&
113 in_array((
int) $book_obj[
"booking_object_id"], $preferences[$this->
user->getId()],
true);
115 $fields[
"cb_" . $book_obj[
"booking_object_id"]] =
116 $f->input()->field()->checkbox($book_obj[
"title"], $book_obj[
"description"])->withValue($checked);
120 $section1 =
$f->input()->field()->section($fields, $lng->
txt(
"book_preferences"));
122 $form_action = $ctrl->
getLinkTarget($this,
"savePreferences");
123 return $f->input()->container()->form()->standard($form_action, [
"sec" => $section1]);
128 $preferences = $this->service->domain()->preferences($this->pool);
130 if (!$preferences->isGivingPreferencesPossible()) {
140 if ($request->getMethod() ===
"POST") {
141 $form = $form->withRequest($request);
142 $data = $form->getData();
144 if (is_array(
$data[
"sec"])) {
146 foreach (
$data[
"sec"] as $k => $v) {
148 $id = explode(
"_", $k);
149 $obj_ids[] = (
int)
$id[1];
153 if (count($obj_ids) > $this->pool->getPreferenceNumber()) {
154 $this->main_tpl->setOnScreenMessage(
'failure', $lng->
txt(
"book_too_many_preferences"),
true);
159 if (count($obj_ids) < $this->pool->getPreferenceNumber()) {
160 $this->main_tpl->setOnScreenMessage(
'failure', $lng->
txt(
"book_not_enough_preferences"),
true);
165 $preferences = $this->service->data()->preferences(
166 [$this->
user->getId() => $obj_ids]
172 $titles = implode(
", ", array_map(
static function (
$id) {
176 $this->main_tpl->setOnScreenMessage(
'success', $lng->
txt(
"book_preferences_saved") .
" (" . $titles .
")",
true);
187 $info = $lng->
txt(
"book_preference_info");
188 $info = str_replace([
"%1",
"%2"], [
189 $this->pool->getPreferenceNumber(),
194 $this->main_tpl->setOnScreenMessage(
'info', $info);
208 $info_gui->addSection($lng->
txt(
"book_your_preferences"));
210 $preferences = $preferences->getPreferences();
212 if (isset($preferences[$this->
user->getId()])) {
213 foreach ($preferences[$this->
user->getId()] as $book_obj_id) {
215 $info_gui->addProperty((
string) $cnt++, $book_obj->getTitle());
218 $info_gui->addProperty(
"", $lng->
txt(
"book_no_preferences_for_you"));
222 $this->service->domain()->preferences($this->pool)->storeBookings(
223 $this->repo->getPreferences($this->pool->getId())
225 $bookings = $this->service->domain()->preferences($this->pool)->readBookings();
226 $info_gui->addSection($lng->
txt(
"book_your_bookings"));
228 if (isset($bookings[$this->
user->getId()])) {
229 foreach ($bookings[$this->
user->getId()] as $book_obj_id) {
233 $post_info_button =
"";
234 if ($book_obj->getPostFile() || $book_obj->getPostText()) {
236 $b = $ui->factory()->button()->shy(
237 $lng->
txt(
"book_post_booking_information"),
240 $post_info_button =
"<br>" . $ui->renderer()->render(
$b);
242 $info_gui->addProperty((
string) $cnt++, $book_obj->getTitle() . $post_info_button);
245 $info_gui->addProperty(
"", $lng->
txt(
"book_no_bookings_for_you"));
249 if ($this->
access->checkAccess(
"write",
"", $this->pool->getRefId())) {
250 $info_gui->addSection($lng->
txt(
"book_all_users"));
252 $preferences = $preferences->getPreferences();
253 foreach ($preferences as $user_id => $obj_ids) {
254 $booking_str =
"<br>" . $lng->
txt(
"book_log") .
": -";
255 if (isset($bookings[$user_id])) {
256 $booking_str =
"<br>" . $lng->
txt(
"book_log") .
": " . implode(
", ", array_map(
257 static function ($obj_id) {
264 $info_gui->addProperty(
266 $lng->
txt(
"book_preferences") .
": " . implode(
", ", array_map(
static function ($obj_id) {
268 }, $obj_ids)) . $booking_str
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getLinkTargetByClass( $a_class, string $a_cmd=null, string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
listPreferenceOptions(Form\Standard $form=null)
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link="", bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path="ilpublicuserprofilegui")
Default behaviour is:
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
redirect(object $a_gui_obj, string $a_cmd=null, string $a_anchor=null, bool $is_async=false)
getCmd(string $fallback_command=null)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
setParameterByClass(string $a_class, string $a_parameter, $a_value)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(ilObjBookingPool $pool)
ilBookingPreferencesDBRepository $repo
getNextClass($a_gui_class=null)
setContent(string $a_html)
Sets content for standard template.
getPreferences(int $a_pool_id)
Get booking preferences for a pool id.
savePreferencesOfUser(int $a_pool_id, int $a_user_id, ilBookingPreferences $preferences)
Save all preferences of a user for a pool.
ILIAS BookingManager InternalService $service
ilGlobalTemplateInterface $main_tpl
Psr Http Message ServerRequestInterface $request
getPreferencesOfUser(int $a_pool_id, int $a_user_id)
Get booking preferences for a pool id.
getLinkTarget(object $a_gui_obj, string $a_cmd=null, string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
static lookupTitle(int $object_id)
Booking preferences ui class.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getList(int $a_pool_id, string $a_title=null)
Get list of booking objects.