36 protected \ILIAS\DI\UIServices
$ui;
38 protected \Psr\Http\Message\ServerRequestInterface
$request;
47 $this->
ctrl = $DIC->ctrl();
48 $this->
ui = $DIC->ui();
49 $this->
lng = $DIC->language();
50 $this->
user = $DIC->user();
51 $this->request = $DIC->http()->request();
52 $this->main_tpl = $DIC->ui()->mainTemplate();
53 $this->service = $DIC->bookingManager()->internal();
55 $this->repo = $this->service->repo()->preferences();
56 $this->
access = $DIC->bookingManager()->internal()->domain()->access();
57 $this->objects_manager = $DIC->bookingManager()->internal()->domain()
58 ->objects($pool->
getId());
66 $cmd = $ctrl->
getCmd(
"show");
67 if ($cmd ===
"render") {
70 switch ($next_class) {
72 if (in_array($cmd, [
"show",
"savePreferences"])) {
78 protected function show(): void
80 $preferences = $this->service->domain()->preferences($this->pool);
82 if ($preferences->isGivingPreferencesPossible()) {
97 $this->main_tpl->setContent($ui->renderer()->render($form));
99 $this->main_tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"book_type_warning"));
112 $preferences = $preferences->getPreferences();
118 $checked = isset($preferences[$this->
user->getId()]) &&
119 in_array((
int) $book_obj[
"booking_object_id"], $preferences[$this->
user->getId()],
true);
121 $fields[
"cb_" . $book_obj[
"booking_object_id"]] =
122 $f->input()->field()->checkbox($book_obj[
"title"], $book_obj[
"description"])->withValue($checked);
126 $section1 =
$f->input()->field()->section($fields, $lng->
txt(
"book_preferences"));
128 $form_action = $ctrl->
getLinkTarget($this,
"savePreferences");
129 return $f->input()->container()->form()->standard($form_action, [
"sec" => $section1]);
134 $preferences = $this->service->domain()->preferences($this->pool);
136 if (!$preferences->isGivingPreferencesPossible()) {
146 if ($request->getMethod() ===
"POST") {
147 $form = $form->withRequest($request);
148 $data = $form->getData();
150 if (is_array(
$data[
"sec"])) {
152 foreach (
$data[
"sec"] as $k => $v) {
154 $id = explode(
"_", $k);
155 $obj_ids[] = (
int)
$id[1];
159 if (count($obj_ids) > $this->pool->getPreferenceNumber()) {
160 $this->main_tpl->setOnScreenMessage(
'failure', $lng->
txt(
"book_too_many_preferences"),
true);
165 if (count($obj_ids) < $this->pool->getPreferenceNumber()) {
166 $this->main_tpl->setOnScreenMessage(
'failure', $lng->
txt(
"book_not_enough_preferences"),
true);
171 $preferences = $this->service->data()->preferences(
172 [$this->
user->getId() => $obj_ids]
178 $titles = implode(
", ",
array_map(
static function (
$id) {
182 $this->main_tpl->setOnScreenMessage(
'success', $lng->
txt(
"book_preferences_saved") .
" (" . $titles .
")",
true);
193 $info = $lng->
txt(
"book_preference_info");
194 $info = str_replace([
"%1",
"%2"], [
195 $this->pool->getPreferenceNumber(),
200 $this->main_tpl->setOnScreenMessage(
'info', $info);
214 $info_gui->addSection($lng->
txt(
"book_your_preferences"));
216 $preferences = $preferences->getPreferences();
218 if (isset($preferences[$this->
user->getId()])) {
219 foreach ($preferences[$this->
user->getId()] as $book_obj_id) {
221 $info_gui->addProperty((
string) $cnt++, $book_obj->getTitle());
224 $info_gui->addProperty(
"", $lng->
txt(
"book_no_preferences_for_you"));
228 $this->service->domain()->preferences($this->pool)->storeBookings(
229 $this->repo->getPreferences($this->pool->getId())
231 $bookings = $this->service->domain()->preferences($this->pool)->readBookings();
232 $info_gui->addSection($lng->
txt(
"book_your_bookings"));
234 if (isset($bookings[$this->
user->getId()])) {
235 foreach ($bookings[$this->
user->getId()] as $book_obj_id) {
237 $post_file = $this->objects_manager->getBookingInfoFilename($book_obj_id);
240 $post_info_button =
"";
241 if ($post_file || $book_obj->getPostText()) {
243 $b = $ui->factory()->button()->shy(
244 $lng->
txt(
"book_post_booking_information"),
245 $ctrl->
getLinkTargetByClass([
"ilBookingObjectGUI",
"ilBookingProcessWithoutScheduleGUI"],
"displayPostInfo")
247 $post_info_button =
"<br>" . $ui->renderer()->render(
$b);
249 $info_gui->addProperty((
string) $cnt++, $book_obj->getTitle() . $post_info_button);
252 $info_gui->addProperty(
"", $lng->
txt(
"book_no_bookings_for_you"));
256 if ($this->
access->canManageAllReservations($this->pool->getRefId())) {
257 $info_gui->addSection($lng->
txt(
"book_all_users"));
259 $preferences = $preferences->getPreferences();
260 foreach ($preferences as
$user_id => $obj_ids) {
261 $booking_str =
"<br>" . $lng->
txt(
"book_log") .
": -";
263 $booking_str =
"<br>" . $lng->
txt(
"book_log") .
": " . implode(
", ",
array_map(
264 static function ($obj_id) {
271 $info_gui->addProperty(
273 $lng->
txt(
"book_preferences") .
": " . implode(
", ",
array_map(
static function ($obj_id) {
275 }, $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...
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...
getCmd(?string $fallback_command=null)
getLinkTarget(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
setContent(string $a_html)
Sets content for standard template.
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...
listPreferenceOptions(?Form\Standard $form=null)
ObjectsManager $objects_manager
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(ilObjBookingPool $pool)
ilBookingPreferencesDBRepository $repo
getNextClass($a_gui_class=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:
redirect(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
getPreferences(int $a_pool_id)
Get booking preferences for a pool id.
static getList(int $a_pool_id, ?string $a_title=null)
Get list of booking objects.
savePreferencesOfUser(int $a_pool_id, int $a_user_id, ilBookingPreferences $preferences)
Save all preferences of a user for a pool.
ilGlobalTemplateInterface $main_tpl
Psr Http Message ServerRequestInterface $request
getPreferencesOfUser(int $a_pool_id, int $a_user_id)
Get booking preferences for a pool id.
static lookupTitle(int $object_id)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Booking preferences ui class.
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
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)