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);
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);
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;
177 protected function renderDetails($a_js_id, $a_may_rate, array $a_categories = null, $a_onclick = null, $a_average =
false)
182 $ttpl =
new ilTemplate(
"tpl.rating_details.html",
true,
true,
"Services/Rating");
188 :
$lng->txt(
"rating_your_rating");
192 if (!$a_categories) {
203 if ((
bool) $a_average) {
213 for (
$i = 1;
$i <= 5;
$i++) {
214 if ((
bool) $a_average &&
216 $ttpl->setCurrentBlock(
"rating_mark_simple");
221 $ttpl->parseCurrentBlock();
224 $ttpl->setCurrentBlock(
"rating_link_simple");
225 if (stristr($a_onclick,
"%rating%")) {
228 $ilCtrl->setParameter($this,
"rating",
$i);
229 if (!$this->ctrl_path) {
230 $url_save =
$ilCtrl->getLinkTarget($this,
"saveRating");
232 $url_save =
$ilCtrl->getLinkTargetByClass($this->ctrl_path,
"saveRating");
235 $ttpl->setVariable(
"HREF_RATING", $url_save);
238 $onclick = str_replace(
"%rating%",
$i, $a_onclick);
239 $ttpl->setVariable(
"ONCLICK_RATING",
' onclick="' . $onclick .
'"');
242 if ((
bool) $a_average) {
243 $ref_rating = $overall_rating[
"avg"];
245 $ref_rating = $rating;
248 if ($ref_rating >=
$i) {
259 $ttpl->setVariable(
"ALT_ICON",
"(" .
$i .
"/5)");
260 $ttpl->parseCurrentBlock();
265 $ttpl->setCurrentBlock(
"rating_simple_del_bl");
266 $ttpl->setVariable(
"CAPTION_RATING_DEL",
$lng->txt(
"rating_remove"));
268 if (stristr($a_onclick,
"%rating%")) {
271 $ilCtrl->setParameter($this,
"rating", 0);
272 if (!$this->ctrl_path) {
273 $url_save =
$ilCtrl->getLinkTarget($this,
"saveRating");
275 $url_save =
$ilCtrl->getLinkTargetByClass($this->ctrl_path,
"saveRating");
278 $ttpl->setVariable(
"HREF_RATING_DEL", $url_save);
281 $onclick = str_replace(
"%rating%", 0, $a_onclick);
282 $ttpl->setVariable(
"ONCLICK_RATING_DEL",
' onclick="' . $onclick .
'"');
285 $ttpl->parseCurrentBlock();
289 $ttpl->setCurrentBlock(
"rating_simple_title");
290 $ttpl->setVariable(
"TXT_RATING_SIMPLE", $rate_text);
291 $ttpl->parseCurrentBlock();
295 $ttpl->setCurrentBlock(
"user_rating_simple");
297 if ((
bool) $a_average &&
298 $overall_rating[
"cnt"]) {
299 $ttpl->setVariable(
"NUMBER_VOTES_SIMPLE", $overall_rating[
"cnt"]);
302 $ttpl->parseCurrentBlock();
307 $has_user_rating =
false;
308 foreach ($a_categories as $category) {
326 for (
$i = 1;
$i <= 5;
$i++) {
327 if ($a_may_rate &&
$i == $user_rating) {
328 $has_user_rating =
true;
330 $ttpl->setCurrentBlock(
"rating_mark");
335 $ttpl->parseCurrentBlock();
338 $ttpl->setCurrentBlock(
"user_rating_icon");
339 if ($overall_rating[
"avg"] >=
$i) {
344 } elseif ($overall_rating[
"avg"] + 1 <=
$i) {
350 $nr = round(($overall_rating[
"avg"] + 1 -
$i) * 10);
356 $ttpl->setVariable(
"ALT_ICON",
"(" .
$i .
"/5)");
359 $ttpl->setVariable(
"HREF_RATING",
"il.Rating.setValue(" . $category[
"id"] .
"," .
$i .
", '" . $a_js_id .
"')");
360 $ttpl->setVariable(
"CATEGORY_ID", $category[
"id"]);
361 $ttpl->setVariable(
"ICON_VALUE",
$i);
362 $ttpl->setVariable(
"JS_ID", $a_js_id);
363 $ttpl->setVariable(
"ICON_MOUSEACTION",
" onmouseover=\"il.Rating.toggleIcon(this," .
$i .
")\"" .
364 " onmouseout=\"il.Rating.toggleIcon(this," .
$i .
",1)\"");
367 $ttpl->parseCurrentBlock();
371 $ttpl->setCurrentBlock(
"user_rating_category_column");
372 $ttpl->setVariable(
"JS_ID", $a_js_id);
373 $ttpl->setVariable(
"CATEGORY_ID", $category[
"id"]);
374 $ttpl->setVariable(
"CATEGORY_VALUE", $user_rating);
375 $ttpl->parseCurrentBlock();
379 $ttpl->setCurrentBlock(
"user_rating_category");
380 $ttpl->setVariable(
"TXT_RATING_CATEGORY", $category[
"title"]);
381 $ttpl->parseCurrentBlock();
384 if ($overall_rating[
"cnt"]) {
385 $ttpl->setCurrentBlock(
"votes_number_bl");
386 $ttpl->setVariable(
"NUMBER_VOTES", sprintf(
$lng->txt(
"rating_number_votes"), $overall_rating[
"cnt"]));
387 $ttpl->parseCurrentBlock();
392 if ($has_user_rating) {
393 $ttpl->setCurrentBlock(
"user_rating_categories_del_bl");
394 $ttpl->setVariable(
"CAPTION_RATING_DEL_CAT",
$lng->txt(
"rating_remove"));
396 $ilCtrl->setParameter($this,
"rating", 0);
397 if (!$this->ctrl_path) {
398 $url_save =
$ilCtrl->getLinkTarget($this,
"resetUserRating");
400 $url_save =
$ilCtrl->getLinkTargetByClass($this->ctrl_path,
"resetUserRating");
402 $ttpl->setVariable(
"HREF_RATING_DEL_CAT", $url_save);
404 $ttpl->parseCurrentBlock();
407 if (!$this->ctrl_path) {
408 $url_form =
$ilCtrl->getFormAction($this,
"saveRating");
410 $url_form =
$ilCtrl->getFormActionByClass($this->ctrl_path,
"saveRating");
412 $ttpl->setVariable(
"FORM_ACTION", $url_form);
413 $ttpl->setVariable(
"TXT_SUBMIT",
$lng->txt(
"rating_overlay_submit"));
414 $ttpl->setVariable(
"CMD_SUBMIT",
"saveRating");
415 $ttpl->touchBlock(
"user_rating_categories_form_out");
438 public function getHTML($a_show_overall =
true, $a_may_rate =
true, $a_onclick = null, $a_additional_id = null)
443 if ($a_additional_id) {
444 $unique_id .=
"_" . $a_additional_id;
447 $categories = array();
448 if ($this->enable_categories) {
452 $may_rate = ($this->
getUserId() != ANONYMOUS_USER_ID);
453 if ($may_rate && !$a_may_rate) {
457 $has_overlay =
false;
458 if ($may_rate || $categories) {
462 $ttpl =
new ilTemplate(
"tpl.rating_input.html",
true,
true,
"Services/Rating");
466 if ($may_rate || !$a_show_overall) {
477 if ($a_show_overall) {
485 $rating = array(
"avg" => $user_rating);
488 for (
$i = 1;
$i <= 5;
$i++) {
489 if ($a_show_overall &&
490 $i == $user_rating) {
491 $ttpl->setCurrentBlock(
"rating_mark");
496 $ttpl->parseCurrentBlock();
499 $ttpl->setCurrentBlock(
"rating_icon");
500 if ($rating[
"avg"] >=
$i) {
505 } elseif ($rating[
"avg"] + 1 <=
$i) {
511 $nr = round(($rating[
"avg"] + 1 -
$i) * 10);
517 $ttpl->setVariable(
"ALT_ICON",
"(" .
$i .
"/5)");
518 $ttpl->parseCurrentBlock();
520 $ttpl->setCurrentBlock(
"rating_icon");
522 if ($a_show_overall) {
523 if ($rating[
"cnt"] == 0) {
524 $tt =
$lng->txt(
"rat_not_rated_yet");
525 } elseif ($rating[
"cnt"] == 1) {
526 $tt =
$lng->txt(
"rat_one_rating");
528 $tt = sprintf(
$lng->txt(
"rat_nr_ratings"), $rating[
"cnt"]);
530 include_once(
"./Services/UIComponent/Tooltip/classes/class.ilTooltipGUI.php");
533 if ($rating[
"cnt"] > 0) {
534 $ttpl->setCurrentBlock(
"rat_nr");
535 $ttpl->setVariable(
"RT_NR", $rating[
"cnt"]);
536 $ttpl->parseCurrentBlock();
542 include_once(
"./Services/UIComponent/Overlay/classes/class.ilOverlayGUI.php");
544 $ov->setTrigger(
"tr_" . $unique_id,
"click",
"tr_" . $unique_id);
547 $ttpl->setCurrentBlock(
"act_rat_start");
548 $ttpl->setVariable(
"ID", $unique_id);
549 $ttpl->parseCurrentBlock();
551 $ttpl->touchBlock(
"act_rat_end");
554 $ttpl->parseCurrentBlock();
562 $this->
renderDetails(
"rtov_", $may_rate, $categories, $a_onclick)
565 $ttpl->setCurrentBlock(
"user_rating");
566 $ttpl->setVariable(
"ID", $unique_id);
567 $ttpl->parseCurrentBlock();
570 $ttpl->setVariable(
"TTID", $unique_id);
579 $categories = array();
580 if ($this->enable_categories) {
584 $may_rate = ($this->
getUserId() != ANONYMOUS_USER_ID);
587 $panel =
$ui->factory()->panel()->secondary()->legacy(
589 $ui->factory()->legacy(
590 $this->
renderDetails(
"rtsb_", $may_rate, $categories, null,
true)
594 return $ui->renderer()->render($panel);
604 if (!is_array($_REQUEST[
"rating"])) {
619 foreach (
$_POST[
"rating"] as $cat_id => $rating) {
632 if ($this->update_callback) {
634 $this->update_callback,
649 $this->update_callback = $a_callback;
668 $this->export_callback = $a_callback;
669 $this->export_subobj_title = $a_subobj_title;
686 "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)
setExportCallback($a_callback, $a_subobj_title)
renderDetails($a_js_id, $a_may_rate, array $a_categories=null, $a_onclick=null, $a_average=false)
Render rating details.
setUserId($a_userid)
Set User ID.
static getAllForObject($a_parent_obj_id)
Get all categories for object.
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
executeCommand()
execute command
enableCategories($a_value)
Toggle categories status.