4 include_once(
"./Services/Rating/classes/class.ilRating.php");
5 include_once(
"./Services/Rating/classes/class.ilRatingCategory.php");
34 protected $id =
"rtg_";
48 $this->lng = $DIC->language();
49 $this->ctrl = $DIC->ctrl();
50 $this->
user = $DIC->user();
51 $lng = $DIC->language();
53 $this->
ui = $DIC->ui();
55 $lng->loadLanguageModule(
"rating");
65 $next_class = $ilCtrl->getNextClass($this);
66 $cmd = $ilCtrl->getCmd();
68 switch ($next_class) {
69 case "ilratingcategorygui":
70 include_once(
"./Services/Rating/classes/class.ilRatingCategoryGUI.php");
71 $gui =
new ilRatingCategoryGUI($this->obj_id, $this->export_callback, $this->export_subobj_title);
72 $ilCtrl->forwardCommand($gui);
89 public function setObject($a_obj_id, $a_obj_type, $a_sub_obj_id = 0, $a_sub_obj_type =
"")
93 if (!trim($a_sub_obj_type)) {
94 $a_sub_obj_type =
"-";
97 $this->obj_id = $a_obj_id;
98 $this->obj_type = $a_obj_type;
99 $this->sub_obj_id = $a_sub_obj_id;
100 $this->sub_obj_type = $a_sub_obj_type;
101 $this->
id =
"rtg_" . $this->obj_id .
"_" . $this->obj_type .
"_" . $this->sub_obj_id .
"_" .
114 $this->userid = $a_userid;
124 return $this->userid;
134 $this->your_rating_text = $a_val;
144 return $this->your_rating_text;
154 $this->enable_categories = (bool) $a_value;
164 $this->ctrl_path = $a_value;
180 array $a_categories = null,
183 bool $add_tooltip =
false 189 $ttpl =
new ilTemplate(
"tpl.rating_details.html",
true,
true,
"Services/Rating");
195 :
$lng->txt(
"rating_your_rating");
199 if (!$a_categories) {
210 if ((
bool) $a_average) {
220 for (
$i = 1;
$i <= 5;
$i++) {
221 if ((
bool) $a_average &&
223 $ttpl->setCurrentBlock(
"rating_mark_simple");
228 $ttpl->parseCurrentBlock();
231 $ttpl->setCurrentBlock(
"rating_link_simple");
232 if (stristr($a_onclick,
"%rating%")) {
235 $ilCtrl->setParameter($this,
"rating",
$i);
236 if (!$this->ctrl_path) {
237 $url_save = $ilCtrl->getLinkTarget($this,
"saveRating");
239 $url_save = $ilCtrl->getLinkTargetByClass($this->ctrl_path,
"saveRating");
242 $ttpl->setVariable(
"HREF_RATING", $url_save);
245 $onclick = str_replace(
"%rating%",
$i, $a_onclick);
246 $ttpl->setVariable(
"ONCLICK_RATING",
' onclick="' . $onclick .
'"');
249 if ((
bool) $a_average) {
250 $ref_rating = $overall_rating[
"avg"];
252 $ref_rating = $rating;
255 if ($ref_rating >=
$i) {
266 $ttpl->setVariable(
"ALT_ICON",
267 sprintf(
$lng->txt(
"rating_rate_x_of_5"),
$i)
269 $ttpl->parseCurrentBlock();
274 $ttpl->setCurrentBlock(
"rating_simple_del_bl");
275 $ttpl->setVariable(
"CAPTION_RATING_DEL",
$lng->txt(
"rating_remove"));
277 if (stristr($a_onclick,
"%rating%")) {
280 $ilCtrl->setParameter($this,
"rating", 0);
281 if (!$this->ctrl_path) {
282 $url_save = $ilCtrl->getLinkTarget($this,
"saveRating");
284 $url_save = $ilCtrl->getLinkTargetByClass($this->ctrl_path,
"saveRating");
287 $ttpl->setVariable(
"HREF_RATING_DEL", $url_save);
290 $onclick = str_replace(
"%rating%", 0, $a_onclick);
291 $ttpl->setVariable(
"ONCLICK_RATING_DEL",
' onclick="' . $onclick .
'"');
294 $ttpl->parseCurrentBlock();
298 $ttpl->setCurrentBlock(
"rating_simple_title");
299 $ttpl->setVariable(
"TXT_RATING_SIMPLE", $rate_text);
300 $ttpl->parseCurrentBlock();
304 if ((
bool) $a_average &&
305 $overall_rating[
"cnt"]) {
306 $ttpl->setCurrentBlock(
"number_votes_simple");
307 $ttpl->setVariable(
"NUMBER_VOTES_SIMPLE", $overall_rating[
"cnt"]);
308 $ttpl->parseCurrentBlock();
312 $unique_id = $this->
id .
"_block";
313 $ttpl->setVariable(
"TTID", $unique_id);
316 (
int) $overall_rating[
"cnt"] ?? 0,
317 (
float) $overall_rating[
"avg"] ?? 0,
323 $ttpl->setCurrentBlock(
"user_rating_simple");
324 $ttpl->parseCurrentBlock();
329 $has_user_rating =
false;
330 foreach ($a_categories as $category) {
348 for (
$i = 1;
$i <= 5;
$i++) {
349 if ($a_may_rate &&
$i == $user_rating) {
350 $has_user_rating =
true;
352 $ttpl->setCurrentBlock(
"rating_mark");
357 $ttpl->parseCurrentBlock();
360 $ttpl->setCurrentBlock(
"user_rating_icon");
361 if ($overall_rating[
"avg"] >=
$i) {
366 } elseif ($overall_rating[
"avg"] + 1 <=
$i) {
372 $nr = round(($overall_rating[
"avg"] + 1 -
$i) * 10);
380 sprintf(
$lng->txt(
"rating_rate_x_of_5"),
$i)
384 $ttpl->setVariable(
"HREF_RATING",
"il.Rating.setValue(" . $category[
"id"] .
"," .
$i .
", '" . $a_js_id .
"')");
385 $ttpl->setVariable(
"CATEGORY_ID", $category[
"id"]);
386 $ttpl->setVariable(
"ICON_VALUE",
$i);
387 $ttpl->setVariable(
"JS_ID", $a_js_id);
388 $ttpl->setVariable(
"ICON_MOUSEACTION",
" onmouseover=\"il.Rating.toggleIcon(this," .
$i .
")\"" .
389 " onmouseout=\"il.Rating.toggleIcon(this," .
$i .
",1)\"");
392 $ttpl->parseCurrentBlock();
396 $ttpl->setCurrentBlock(
"user_rating_category_column");
397 $ttpl->setVariable(
"JS_ID", $a_js_id);
398 $ttpl->setVariable(
"CATEGORY_ID", $category[
"id"]);
399 $ttpl->setVariable(
"CATEGORY_VALUE", $user_rating);
401 $unique_id = $this->
id .
"_block_" . $category[
"id"];
402 $ttpl->setVariable(
"CAT_TTID", $unique_id);
405 (
int) $overall_rating[
"cnt"] ?? 0,
406 (
float) $overall_rating[
"avg"] ?? 0,
407 (
int) $user_rating ?? 0
410 $ttpl->parseCurrentBlock();
415 $ttpl->setCurrentBlock(
"user_rating_category");
416 $ttpl->setVariable(
"TXT_RATING_CATEGORY", $category[
"title"]);
417 $ttpl->parseCurrentBlock();
420 if ($overall_rating[
"cnt"]) {
421 $ttpl->setCurrentBlock(
"votes_number_bl");
422 $ttpl->setVariable(
"NUMBER_VOTES", sprintf(
$lng->txt(
"rating_number_votes"), $overall_rating[
"cnt"]));
423 $ttpl->parseCurrentBlock();
428 if ($has_user_rating) {
429 $ttpl->setCurrentBlock(
"user_rating_categories_del_bl");
430 $ttpl->setVariable(
"CAPTION_RATING_DEL_CAT",
$lng->txt(
"rating_remove"));
432 $ilCtrl->setParameter($this,
"rating", 0);
433 if (!$this->ctrl_path) {
434 $url_save = $ilCtrl->getLinkTarget($this,
"resetUserRating");
436 $url_save = $ilCtrl->getLinkTargetByClass($this->ctrl_path,
"resetUserRating");
438 $ttpl->setVariable(
"HREF_RATING_DEL_CAT", $url_save);
440 $ttpl->parseCurrentBlock();
443 if (!$this->ctrl_path) {
444 $url_form = $ilCtrl->getFormAction($this,
"saveRating");
446 $url_form = $ilCtrl->getFormActionByClass($this->ctrl_path,
"saveRating");
448 $ttpl->setVariable(
"FORM_ACTION", $url_form);
449 $ttpl->setVariable(
"TXT_SUBMIT",
$lng->txt(
"rating_overlay_submit"));
450 $ttpl->setVariable(
"CMD_SUBMIT",
"saveRating");
451 $ttpl->touchBlock(
"user_rating_categories_form_out");
474 public function getHTML($a_show_overall =
true, $a_may_rate =
true, $a_onclick = null, $a_additional_id = null)
478 if ($a_additional_id) {
479 $unique_id .=
"_" . $a_additional_id;
482 $categories = array();
483 if ($this->enable_categories) {
488 if ($may_rate && !$a_may_rate) {
492 $has_overlay =
false;
493 if ($may_rate || $categories) {
497 $ttpl =
new ilTemplate(
"tpl.rating_input.html",
true,
true,
"Services/Rating");
501 if ($may_rate || !$a_show_overall) {
512 if ($a_show_overall) {
520 $rating = array(
"avg" => $user_rating);
523 for (
$i = 1;
$i <= 5;
$i++) {
524 if ($a_show_overall &&
525 $i == $user_rating) {
526 $ttpl->setCurrentBlock(
"rating_mark");
531 $ttpl->parseCurrentBlock();
534 $ttpl->setCurrentBlock(
"rating_icon");
535 if ($rating[
"avg"] >=
$i) {
540 } elseif ($rating[
"avg"] + 1 <=
$i) {
546 $nr = round(($rating[
"avg"] + 1 -
$i) * 10);
552 $ttpl->setVariable(
"ALT_ICON",
"");
553 $ttpl->parseCurrentBlock();
555 $ttpl->setCurrentBlock(
"rating_icon");
557 if ($a_show_overall) {
558 if ($rating[
"cnt"] > 0) {
559 $ttpl->setCurrentBlock(
"rat_nr");
560 $ttpl->setVariable(
"RT_NR", $rating[
"cnt"]);
561 $ttpl->parseCurrentBlock();
567 (
int) $rating[
"cnt"] ?? 0,
568 (
float) $rating[
"avg"] ?? 0,
569 (
int) $user_rating ?? 0
574 include_once(
"./Services/UIComponent/Overlay/classes/class.ilOverlayGUI.php");
576 $ov->setTrigger(
"tr_" . $unique_id,
"click",
"tr_" . $unique_id);
579 $ttpl->setCurrentBlock(
"act_rat_start");
580 $ttpl->setVariable(
"ID", $unique_id);
581 $ttpl->setVariable(
"TXT_OPEN_DIALOG",
$lng->txt(
"rating_open_dialog"));
582 $ttpl->parseCurrentBlock();
584 $ttpl->touchBlock(
"act_rat_end");
587 $ttpl->parseCurrentBlock();
595 $this->
renderDetails(
"rtov_", $may_rate, $categories, $a_onclick)
598 $ttpl->setCurrentBlock(
"user_rating");
599 $ttpl->setVariable(
"ID", $unique_id);
600 $ttpl->parseCurrentBlock();
603 $ttpl->setVariable(
"TTID", $unique_id);
619 $tt =
$lng->txt(
"rat_not_rated_yet");
622 $tt =
$lng->txt(
"rat_one_rating");
624 $tt = sprintf(
$lng->txt(
"rat_nr_ratings"), $cnt);
626 $tt.=
"<br>".$lng->txt(
"rating_avg_rating").
": ".round($avg, 1);
630 $tt.=
"<br>".$lng->txt(
"rating_personal_rating").
": ".
$user;
648 $categories = array();
649 if ($this->enable_categories) {
656 $panel =
$ui->factory()->panel()->secondary()->legacy(
658 $ui->factory()->legacy(
659 $this->
renderDetails(
"rtsb_", $may_rate, $categories, null,
true,
true)
673 if (!is_array($_REQUEST[
"rating"])) {
688 foreach (
$_POST[
"rating"] as $cat_id => $rating) {
701 if ($this->update_callback) {
703 $this->update_callback,
711 if ($ilCtrl->isAsynch()) {
718 $this->update_callback = $a_callback;
737 $this->export_callback = $a_callback;
738 $this->export_subobj_title = $a_subobj_title;
755 "il.Object.saveRatingFromListGUI(" . $a_ref_id .
", '" . $a_ajax_hash .
"', %rating%);",
static writeRatingForUserAndObject( $a_obj_id, $a_obj_type, $a_sub_obj_id, $a_sub_obj_type, $a_user_id, $a_rating, $a_category_id=0)
Write rating for a user and an object.
setYourRatingText($a_val)
Set "Your Rating" text.
resetUserRating()
Reset Rating.
setUpdateCallback($a_callback)
if(isset($_FILES['img_file']) &&is_array($_FILES['img_file'])) $panel
setExportCallback($a_callback, $a_subobj_title)
setUserId($a_userid)
Set User ID.
static getAllForObject($a_parent_obj_id)
Get all categories for object.
renderDetails( $a_js_id, $a_may_rate, array $a_categories=null, $a_onclick=null, $a_average=false, bool $add_tooltip=false)
Render rating details.
static getRatingForUserAndObject( $a_obj_id, $a_obj_type, $a_sub_obj_id, $a_sub_obj_type, $a_user_id, $a_category_id=null)
Get rating for a user and an object.
setCtrlPath(array $a_value)
ilCtrl path
Class ilRatingCategoryGUI.
getHTML($a_show_overall=true, $a_may_rate=true, $a_onclick=null, $a_additional_id=null)
Get HTML for rating of an object (and a user)
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
static resetRatingForUserAndObject( $a_obj_id, $a_obj_type, $a_sub_obj_id, $a_sub_obj_type, $a_user_id)
Reset rating for a user and an object.
getListGUIProperty($a_ref_id, $a_may_rate, $a_ajax_hash, $_parent_ref_id)
Build list gui property for object.
setObject($a_obj_id, $a_obj_type, $a_sub_obj_id=0, $a_sub_obj_type="")
Set Object.
This is a utility class for the yui overlays.
getYourRatingText()
Get "Your Rating" text.
static getOverallRatingForObject($a_obj_id, $a_obj_type, $a_sub_obj_id=null, $a_sub_obj_type=null, $a_category_id=null)
Get overall rating for an object.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
addTooltip(string $id, int $cnt=0, float $avg=0, int $user=0)
executeCommand()
execute command
enableCategories($a_value)
Toggle categories status.