course_module_instance_list_viewed.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. // This file is part of Moodle - http://moodle.org/
  3. //
  4. // Moodle is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // Moodle is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU General Public License
  15. // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
  16. /**
  17. * The mod_iassign submission created event.
  18. *
  19. * @author Patricia Alves Rodrigues
  20. * @author Leônidas O. Brandão
  21. * @version v 1.0 2015/07/12
  22. * @package mod_iassign
  23. * @since 2015/10/14
  24. * @copyright iMatica (<a href="http://www.matematica.br">iMath</a>) - Computer Science Dep. of IME-USP (Brazil)
  25. * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  26. */
  27. namespace mod_iassign\event;
  28. defined('MOODLE_INTERNAL') || die();
  29. class course_module_instance_list_viewed extends \core\event\course_module_instance_list_viewed {
  30. /**
  31. * Create the event from course record.
  32. *
  33. * @param \stdClass $course
  34. * @return course_module_instance_list_viewed
  35. */
  36. public static function create_from_course (\stdClass $course) {
  37. $params = array(
  38. 'context' => \context_course::instance($course->id)
  39. );
  40. $event = \mod_iassign\event\course_module_instance_list_viewed::create($params);
  41. $event->add_record_snapshot('course', $course);
  42. return $event;
  43. }
  44. }