mirror of
https://github.com/moodle/moodle.git
synced 2025-08-07 09:56:38 +02:00
MDL-40912 coursecat: replaced 'hide' and 'show' add_to_log calls with an event
This commit is contained in:
parent
d86c7206aa
commit
001f09548d
2 changed files with 38 additions and 2 deletions
|
@ -1998,7 +1998,13 @@ class coursecat implements renderable, cacheable_object, IteratorAggregate {
|
|||
public function hide() {
|
||||
if ($this->hide_raw(0)) {
|
||||
cache_helper::purge_by_event('changesincoursecat');
|
||||
add_to_log(SITEID, "category", "hide", "editcategory.php?id=$this->id", $this->id);
|
||||
|
||||
$event = \core\event\course_category_updated::create(array(
|
||||
'objectid' => $this->id,
|
||||
'context' => $this->get_context()
|
||||
));
|
||||
$event->set_legacy_logdata(array(SITEID, 'category', 'hide', 'editcategory.php?id=' . $this->id, $this->id));
|
||||
$event->trigger();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2051,7 +2057,13 @@ class coursecat implements renderable, cacheable_object, IteratorAggregate {
|
|||
public function show() {
|
||||
if ($this->show_raw()) {
|
||||
cache_helper::purge_by_event('changesincoursecat');
|
||||
add_to_log(SITEID, "category", "show", "editcategory.php?id=$this->id", $this->id);
|
||||
|
||||
$event = \core\event\course_category_updated::create(array(
|
||||
'objectid' => $this->id,
|
||||
'context' => $this->get_context()
|
||||
));
|
||||
$event->set_legacy_logdata(array(SITEID, 'category', 'show', 'editcategory.php?id=' . $this->id, $this->id));
|
||||
$event->trigger();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue