69 $this->ctrl = $DIC->ctrl();
70 $this->
ui = $DIC->ui();
71 $this->lng = $DIC->language();
72 $this->
user = $DIC->user();
73 $this->request = $DIC->http()->request();
74 $this->main_tpl = $DIC->ui()->mainTemplate();
75 $this->service = $DIC->bookingManager()->internal();
77 $this->repo = $this->service->repo()->getPreferencesRepo();
78 $this->access = $DIC->access();
88 $next_class =
$ctrl->getNextClass($this);
89 $cmd =
$ctrl->getCmd(
"show");
90 if ($cmd ==
"render") {
93 switch ($next_class) {
95 if (in_array($cmd, [
"show",
"savePreferences"])) {
106 $preferences = $this->service->domain()->preferences($this->pool);
108 if ($preferences->isGivingPreferencesPossible()) {
122 if (is_null($form)) {
125 $this->main_tpl->setContent(
$ui->renderer()->render($form));
143 $preferences =
$repo->getPreferencesOfUser($this->pool->getId(), $this->
user->getId());
144 $preferences = $preferences->getPreferences();
150 $checked = (is_array($preferences[$this->
user->getId()]) &&
151 in_array($book_obj[
"booking_object_id"], $preferences[$this->
user->getId()]))
155 $fields[
"cb_" . $book_obj[
"booking_object_id"]] =
156 $f->input()->field()->checkbox($book_obj[
"title"], $book_obj[
"description"])->withValue($checked);
160 $section1 =
$f->input()->field()->section($fields,
$lng->txt(
"book_preferences"));
162 $form_action =
$ctrl->getLinkTarget($this,
"savePreferences");
163 return $f->input()->container()->form()->standard($form_action, [
"sec" => $section1]);
171 $preferences = $this->service->domain()->preferences($this->pool);
173 if (!$preferences->isGivingPreferencesPossible()) {
183 if (
$request->getMethod() ==
"POST") {
184 $form = $form->withRequest(
$request);
185 $data = $form->getData();
187 if (is_array(
$data[
"sec"])) {
189 foreach (
$data[
"sec"] as $k => $v) {
191 $id = explode(
"_", $k);
192 $obj_ids[] = (int) $id[1];
196 if (count($obj_ids) > $this->pool->getPreferenceNumber()) {
202 if (count($obj_ids) < $this->pool->getPreferenceNumber()) {
208 $preferences = $this->service->data()->preferencesFactory()->preferences(
209 [$this->
user->getId() => $obj_ids]
212 $repo->savePreferencesOfUser($this->pool->getId(), $this->
user->getId(), $preferences);
215 $titles = implode(
", ", array_map(
function ($id) {
219 ilUtil::sendSuccess(
$lng->txt(
"book_preferences_saved") .
" (" . $titles .
")",
true);
222 $ctrl->redirect($this,
"show");
233 $info =
$lng->txt(
"book_preference_info");
234 $info = str_replace(
"%1", $this->pool->getPreferenceNumber(), $info);
256 $info_gui->addSection(
$lng->txt(
"book_your_preferences"));
257 $preferences =
$repo->getPreferencesOfUser($this->pool->getId(), $this->
user->getId());
258 $preferences = $preferences->getPreferences();
260 if (is_array($preferences[$this->
user->getId()])) {
261 foreach ($preferences[$this->
user->getId()] as $book_obj_id) {
263 $info_gui->addProperty((
string) $cnt++, $book_obj->getTitle());
266 $info_gui->addProperty(
"",
$lng->txt(
"book_no_preferences_for_you"));
270 $this->service->domain()->preferences($this->pool)->storeBookings(
271 $this->repo->getPreferences($this->pool->getId())
273 $bookings = $this->service->domain()->preferences($this->pool)->readBookings();
274 $info_gui->addSection(
$lng->txt(
"book_your_bookings"));
276 if (is_array($bookings[$this->
user->getId()])) {
277 foreach ($bookings[$this->
user->getId()] as $book_obj_id) {
281 $post_info_button =
"";
282 if ($book_obj->getPostFile() || $book_obj->getPostText()) {
283 $ctrl->setParameterByClass(
"ilBookingObjectGUI",
"object_id", $book_obj_id);
284 $b =
$ui->factory()->button()->shy(
285 $lng->txt(
"book_post_booking_information"),
286 $ctrl->getLinkTargetByClass([
"ilBookingObjectGUI",
"ilBookingProcessGUI"],
"displayPostInfo")
288 $post_info_button =
"<br>" .
$ui->renderer()->render(
$b);
290 $info_gui->addProperty((
string) $cnt++, $book_obj->getTitle() . $post_info_button);
293 $info_gui->addProperty(
"",
$lng->txt(
"book_no_bookings_for_you"));
297 if ($this->access->checkAccess(
"write",
"", $this->pool->getRefId())) {
298 $info_gui->addSection(
$lng->txt(
"book_all_users"));
299 $preferences =
$repo->getPreferences($this->pool->getId());
300 $preferences = $preferences->getPreferences();
301 foreach ($preferences as $user_id => $obj_ids) {
302 $booking_str =
"<br>" .
$lng->txt(
"book_log") .
": -";
303 if (is_array($bookings[$user_id])) {
304 $booking_str =
"<br>" .
$lng->txt(
"book_log") .
": " . implode(
", ", array_map(
function ($obj_id) {
306 return $book_obj->getTitle();
307 }, $bookings[$user_id]));
310 $info_gui->addProperty(
312 $lng->txt(
"book_preferences") .
": " . implode(
", ", array_map(
function ($obj_id) {
314 return $book_obj->getTitle();
315 }, $obj_ids)) . $booking_str
320 $main_tpl->setContent($info_gui->getHTML());
Class ilBookingParticipant.
static getList($a_pool_id, $a_title=null)
Get list of booking objects for given type.
initPreferenceForm()
Init preferences form.
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
executeCommand()
Execute command.
__construct(ilObjBookingPool $pool)
Constructor.
renderBookingInfo()
Render booking info.
static lookupTitle($object_id)
Lookup pool id.
listPreferenceOptions($form=null)
List preference options.
savePreferences()
Save preferences.
static getNamePresentation( $a_user_id, $a_user_image=false, $a_profile_link=false, $a_profile_back_link="", $a_force_first_lastname=false, $a_omit_login=false, $a_sortable=true, $a_return_data_array=false, $a_ctrl_path="ilpublicuserprofilegui")
Default behaviour is:
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
listBookingResults()
List booking results.
Booking preferences ui class.