30 protected string $id =
"rtg_";
36 protected \ILIAS\DI\UIServices
$ui;
51 $this->
lng = $DIC->language();
52 $this->
ctrl = $DIC->ctrl();
53 $this->
user = $DIC->user();
54 $lng = $DIC->language();
56 $this->
ui = $DIC->ui();
58 $params = $DIC->http()->request()->getQueryParams();
59 $body = $DIC->http()->request()->getParsedBody();
61 if (isset($body[
"rating"]) && is_array($body[
"rating"])) {
62 $this->requested_ratings = ($body[
"rating"] ??
null);
64 $this->requested_rating = (
int) (
$params[
"rating"] ?? 0);
77 $cmd = $ilCtrl->getCmd();
79 switch ($next_class) {
80 case "ilratingcategorygui":
81 $gui =
new ilRatingCategoryGUI($this->obj_id, $this->export_callback, $this->export_subobj_title);
82 $ilCtrl->forwardCommand($gui);
102 ?
int $a_sub_obj_id = 0,
103 ?
string $a_sub_obj_type =
"" 107 if (!trim((
string) $a_sub_obj_type)) {
108 $a_sub_obj_type =
"-";
111 $this->obj_id = $a_obj_id;
112 $this->obj_type = $a_obj_type;
113 $this->sub_obj_id = $a_sub_obj_id;
114 $this->sub_obj_type = $a_sub_obj_type;
115 $this->
id =
"rtg_" . $this->obj_id .
"_" . $this->obj_type .
"_" . $this->sub_obj_id .
"_" .
123 $this->userid = $a_userid;
133 $this->your_rating_text = $a_val;
143 $this->enable_categories = $a_value;
148 $this->ctrl_path = $a_value;
155 ?array $a_categories =
null,
156 ?
string $a_onclick =
null,
157 bool $a_average =
false,
158 bool $add_tooltip =
false 162 $f = $this->
ui->factory();
163 $r = $this->
ui->renderer();
165 $ttpl =
new ilTemplate(
"tpl.rating_details.html",
true,
true,
"components/ILIAS/Rating");
171 : $lng->
txt(
"rating_your_rating");
175 if (!$a_categories) {
199 for ($i = 1; $i <= 5; $i++) {
200 $star_tpl =
new ilTemplate(
"tpl.rating_star.html",
true,
true,
"components/ILIAS/Rating");
203 $star_tpl->setCurrentBlock(
"rating_mark_simple");
204 $star_tpl->setVariable(
208 $star_tpl->parseCurrentBlock();
211 $ttpl->setCurrentBlock(
"rating_link_simple");
212 if (stristr((
string) $a_onclick,
"%rating%")) {
215 $ilCtrl->setParameter($this,
"rating", $i);
216 if (!$this->ctrl_path) {
217 $url_save = $ilCtrl->getLinkTarget($this,
"saveRating");
219 $url_save = $ilCtrl->getLinkTargetByClass($this->ctrl_path,
"saveRating");
222 $b = $this->
ui->factory()->button()->shy(
"###star###", $url_save);
225 $onclick = str_replace(
"%rating%", $i, $a_onclick);
226 $b =
$b->withOnLoadCode(
function ($id) use ($onclick) {
228 "$('#" . $id .
"').click(function() { $onclick; return false;});";
233 $ref_rating = $overall_rating[
"avg"];
235 $ref_rating = $rating;
238 if ($ref_rating >= $i) {
239 $star_tpl->setVariable(
244 $star_tpl->setVariable(
249 $star_tpl->setVariable(
251 sprintf($lng->
txt(
"rating_rate_x_of_5"), $i)
256 (
int) ($overall_rating[
"cnt"] ?? 0),
257 (
float) ($overall_rating[
"avg"] ?? 0),
260 $b =
$b->withHelpTopics(...
$f->helpTopics(...$topics));
263 $star_html = $this->
ui->renderer()->render(
$b);
264 $star_html = str_replace(
"###star###", $star_tpl->get(), $star_html);
266 $ttpl->setVariable(
"STAR_BUTTON", $star_html);
268 $ttpl->parseCurrentBlock();
273 $ttpl->setCurrentBlock(
"rating_simple_del_bl");
274 $ttpl->setVariable(
"CAPTION_RATING_DEL", $lng->
txt(
"rating_remove"));
276 if (stristr((
string) $a_onclick,
"%rating%")) {
279 $ilCtrl->setParameter($this,
"rating", 0);
280 if (!$this->ctrl_path) {
281 $url_save = $ilCtrl->getLinkTarget($this,
"saveRating");
283 $url_save = $ilCtrl->getLinkTargetByClass($this->ctrl_path,
"saveRating");
286 $ttpl->setVariable(
"HREF_RATING_DEL", $url_save);
289 $onclick = str_replace(
"%rating%", 0, $a_onclick);
290 $ttpl->setVariable(
"ONCLICK_RATING_DEL",
' onclick="' . $onclick .
'"');
293 $ttpl->parseCurrentBlock();
297 $ttpl->setCurrentBlock(
"rating_simple_title");
298 $ttpl->setVariable(
"TXT_RATING_SIMPLE", $rate_text);
299 $ttpl->parseCurrentBlock();
303 $overall_rating[
"cnt"]) {
304 $ttpl->setCurrentBlock(
"number_votes_simple");
305 $ttpl->setVariable(
"NUMBER_VOTES_SIMPLE", $overall_rating[
"cnt"]);
306 $ttpl->parseCurrentBlock();
310 $ttpl->setCurrentBlock(
"user_rating_simple");
311 $ttpl->parseCurrentBlock();
316 $has_user_rating =
false;
321 foreach ($a_categories as $category) {
339 for ($i = 1; $i <= 5; $i++) {
340 $star_tpl =
new ilTemplate(
"tpl.js_rating_star.html",
true,
true,
"components/ILIAS/Rating");
341 if ($a_may_rate && $i == $user_rating) {
342 $has_user_rating =
true;
344 $star_tpl->setCurrentBlock(
"rating_mark");
345 $star_tpl->setVariable(
349 $star_tpl->parseCurrentBlock();
352 $ttpl->setCurrentBlock(
"user_rating_icon");
353 if ($overall_rating[
"avg"] >= $i) {
354 $star_tpl->setVariable(
358 } elseif ($overall_rating[
"avg"] + 1 <= $i) {
359 $star_tpl->setVariable(
364 $nr = round(($overall_rating[
"avg"] + 1 - $i) * 10);
365 $star_tpl->setVariable(
370 $star_tpl->setVariable(
372 sprintf($lng->
txt(
"rating_rate_x_of_5"), $i)
375 $b =
$f->button()->shy(
"###star###",
"#");
377 $ttpl->setVariable(
"HREF_RATING",
"il.Rating.setValue(" . $category[
"id"] .
"," . $i .
", '" . $a_js_id .
"')");
378 $star_tpl->setVariable(
"CATEGORY_ID", $category[
"id"]);
379 $star_tpl->setVariable(
"ICON_VALUE", $i);
380 $star_tpl->setVariable(
"JS_ID", $a_js_id);
381 $b =
$b->withOnLoadCode(
function ($id) use ($category, $i, $a_js_id) {
383 "$('#" . $id .
"').click(function() { il.Rating.setValue(" . $category[
"id"] .
"," . $i .
", '" . $a_js_id .
"'); return false;});";
392 (
int) ($overall_rating[
"cnt"] ?? 0),
393 (
float) ($overall_rating[
"avg"] ?? 0),
394 (
int) ($user_rating ?? 0)
396 $b =
$b->withHelpTopics(...
$f->helpTopics(...$topics));
398 $button_html =
$r->render(
$b);
399 $button_html = str_replace(
"###star###", $star_tpl->get(), $button_html);
400 $ttpl->setVariable(
"RATE_BUTTON", $button_html);
401 $ttpl->parseCurrentBlock();
405 $ttpl->setCurrentBlock(
"user_rating_category_column");
406 $ttpl->setVariable(
"JS_ID", $a_js_id);
407 $ttpl->setVariable(
"CATEGORY_ID", $category[
"id"]);
408 $ttpl->setVariable(
"CATEGORY_VALUE", $user_rating);
409 $ttpl->parseCurrentBlock();
414 $ttpl->setCurrentBlock(
"user_rating_category");
415 $ttpl->setVariable(
"TXT_RATING_CATEGORY", $category[
"title"]);
416 $ttpl->parseCurrentBlock();
419 if ($overall_rating[
"cnt"] > 0) {
420 $ttpl->setCurrentBlock(
"votes_number_bl");
421 $ttpl->setVariable(
"NUMBER_VOTES", sprintf($lng->
txt(
"rating_number_votes"), $overall_rating[
"cnt"]));
422 $ttpl->parseCurrentBlock();
427 if ($has_user_rating) {
428 $ttpl->setCurrentBlock(
"user_rating_categories_del_bl");
429 $ttpl->setVariable(
"CAPTION_RATING_DEL_CAT", $lng->
txt(
"rating_remove"));
431 $ilCtrl->setParameter($this,
"rating", 0);
432 if (!$this->ctrl_path) {
433 $url_save = $ilCtrl->getLinkTarget($this,
"resetUserRating");
435 $url_save = $ilCtrl->getLinkTargetByClass($this->ctrl_path,
"resetUserRating");
437 $ttpl->setVariable(
"HREF_RATING_DEL_CAT", $url_save);
439 $ttpl->parseCurrentBlock();
442 if (!$this->ctrl_path) {
443 $url_form = $ilCtrl->getFormAction($this,
"saveRating");
445 $url_form = $ilCtrl->getFormActionByClass($this->ctrl_path,
"saveRating");
447 $ttpl->setVariable(
"FORM_ACTION", $url_form);
448 $ttpl->setVariable(
"TXT_SUBMIT", $lng->
txt(
"rating_overlay_submit"));
449 $ttpl->setVariable(
"CMD_SUBMIT",
"saveRating");
450 $ttpl->touchBlock(
"user_rating_categories_form_out");
459 bool $a_show_overall =
true,
460 bool $a_may_rate =
true,
461 ?
string $a_onclick =
null,
462 ?
string $a_additional_id =
null 464 $f = $this->
ui->factory();
465 $r = $this->
ui->renderer();
468 if ($a_additional_id) {
469 $unique_id .=
"_" . $a_additional_id;
472 $categories = array();
473 if ($this->enable_categories) {
478 if ($may_rate && !$a_may_rate) {
482 $has_overlay =
false;
483 if ($may_rate || $categories) {
487 $ttpl =
new ilTemplate(
"tpl.rating_input.html",
true,
true,
"components/ILIAS/Rating");
491 if ($may_rate || !$a_show_overall) {
502 if ($a_show_overall) {
510 $rating = array(
"avg" => $user_rating);
513 for ($i = 1; $i <= 5; $i++) {
514 if ($a_show_overall &&
515 $i == $user_rating) {
516 $ttpl->setCurrentBlock(
"rating_mark");
521 $ttpl->parseCurrentBlock();
524 $ttpl->setCurrentBlock(
"rating_icon");
525 if ($rating[
"avg"] >= $i) {
530 } elseif ($rating[
"avg"] + 1 <= $i) {
536 $nr = round(($rating[
"avg"] + 1 - $i) * 10);
542 $ttpl->setVariable(
"ALT_ICON",
"");
543 $ttpl->parseCurrentBlock();
545 $ttpl->setCurrentBlock(
"rating_icon");
547 if ($a_show_overall) {
548 if ($rating[
"cnt"] > 0) {
549 $ttpl->setCurrentBlock(
"rat_nr");
550 $ttpl->setVariable(
"RT_NR", $rating[
"cnt"]);
551 $ttpl->parseCurrentBlock();
557 $ttpl->setCurrentBlock(
"act_rat_start");
558 $ttpl->setVariable(
"ID", $unique_id);
559 $ttpl->setVariable(
"TXT_OPEN_DIALOG", $lng->
txt(
"rating_open_dialog"));
560 $ttpl->parseCurrentBlock();
562 $ttpl->touchBlock(
"act_rat_end");
565 $ttpl->parseCurrentBlock();
570 $ttpl->setVariable(
"TTID", $unique_id);
571 $rating_html = $ttpl->get();
574 (
int) ($rating[
"cnt"] ?? 0),
575 (
float) ($rating[
"avg"] ?? 0),
576 (
int) ($user_rating ?? 0)
580 $button =
$f->button()->shy(
'###button###',
'#');
584 $this->
renderDetails(
"rtov_", $may_rate, $categories, $a_onclick)
587 $popover =
$f->popover()->standard(
588 $f->legacy($this->renderDetails(
"rtov_", $may_rate, $categories, $a_onclick))
590 $button = $button->withOnClick($popover->getShowSignal());
591 $button = $button->withHelpTopics(
592 ...
$f->helpTopics(...$tt_topics)
594 $elements = [$popover, $button];
596 $button = $button->withOnLoadCode(
function ($id) {
597 return "return false;";
599 $button = $button->withHelpTopics(
600 ...
$f->helpTopics(...$tt_topics)
602 $elements = [$button];
604 $html =
$r->render($elements);
605 $html = str_replace(
"###button###", $rating_html, $html);
624 $topics[] = sprintf($lng->
txt(
"rat_nr_ratings"), $cnt);
626 $topics[] = $lng->
txt(
"rating_avg_rating") .
": " . round($avg, 1);
639 $categories = array();
640 if ($this->enable_categories) {
647 $panel = $ui->factory()->panel()->secondary()->legacy(
649 $ui->factory()->legacy(
654 return $ui->renderer()->render($panel);
664 if (!is_array($this->requested_ratings)) {
679 foreach ($this->requested_ratings as $cat_id => $rating) {
692 if ($this->update_callback) {
694 $this->update_callback,
702 if ($ilCtrl->isAsynch()) {
709 $this->update_callback = $a_callback;
717 (
int) $this->sub_obj_id,
725 $this->export_callback = $a_callback;
726 $this->export_subobj_title = $a_subobj_title;
739 "il.Object.saveRatingFromListGUI(" . $a_ref_id .
", '" . $a_ajax_hash .
"', %rating%);",
setExportCallback($a_callback, string $a_subobj_title)
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...
setUpdateCallback($a_callback)
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
setObject(int $a_obj_id, string $a_obj_type, ?int $a_sub_obj_id=0, ?string $a_sub_obj_type="")
Set Object.
static getOverallRatingForObject(int $a_obj_id, string $a_obj_type, ?int $a_sub_obj_id=null, ?string $a_sub_obj_type=null, ?int $a_category_id=null)
Get overall rating for an object.
renderDetails(string $a_js_id, bool $a_may_rate, ?array $a_categories=null, ?string $a_onclick=null, bool $a_average=false, bool $add_tooltip=false)
loadLanguageModule(string $a_module)
Load language module.
static resetRatingForUserAndObject(int $a_obj_id, string $a_obj_type, int $a_sub_obj_id, string $a_sub_obj_type, int $a_user_id)
Reset rating for a user and an object.
getBlockHTML(string $a_title)
string $export_subobj_title
static writeRatingForUserAndObject(int $a_obj_id, string $a_obj_type, ?int $a_sub_obj_id, ?string $a_sub_obj_type, int $a_user_id, int $a_rating, int $a_category_id=0)
Write rating for a user and an object.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setCtrlPath(array $a_value)
getNextClass($a_gui_class=null)
Class ilRatingCategoryGUI.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getTooltipTopics(int $cnt=0, float $avg=0, int $user=0)
static getAllForObject(int $a_parent_obj_id)
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
enableCategories(bool $a_value)
setYourRatingText(string $a_val)
getListGUIProperty(int $a_ref_id, bool $a_may_rate, string $a_ajax_hash, int $parent_ref_id)
executeCommand()
execute command
static getRatingForUserAndObject(int $a_obj_id, string $a_obj_type, int $a_sub_obj_id, string $a_sub_obj_type, int $a_user_id, ?int $a_category_id=null)
Get rating for a user and an object.
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getHTML(bool $a_show_overall=true, bool $a_may_rate=true, ?string $a_onclick=null, ?string $a_additional_id=null)