Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.

Differences Between: [Versions 311 and 400] [Versions 311 and 401] [Versions 311 and 402] [Versions 311 and 403]

The main interface for recycle bin methods.

Copyright: 2015 University of Kent
License: http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
File Size: 362 lines (12 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

course_bin:: (10 methods):
  __construct()
  is_enabled()
  get_item()
  get_items()
  store_item()
  restore_item()
  delete_item()
  can_view()
  can_restore()
  can_delete()


Class: course_bin  - X-Ref

Represents a course's recyclebin.

__construct($courseid)   X-Ref
Constructor.

param: int $courseid Course ID.

is_enabled()   X-Ref
Is this recyclebin enabled?

return: bool true if enabled, false if not.

get_item($itemid)   X-Ref
Returns an item from the recycle bin.

param: int $itemid Item ID to retrieve.
return: \stdClass the item.

get_items()   X-Ref
Returns a list of items in the recycle bin for this course.

return: array the list of items.

store_item($cm)   X-Ref
Store a course module in the recycle bin.

param: \stdClass $cm Course module

restore_item($item)   X-Ref
Restore an item from the recycle bin.

param: \stdClass $item The item database record

delete_item($item)   X-Ref
Delete an item from the recycle bin.

param: \stdClass $item The item database record

can_view()   X-Ref
Can we view items in this recycle bin?

return: bool returns true if they can view, false if not

can_restore()   X-Ref
Can we restore items in this recycle bin?

return: bool returns true if they can restore, false if not

can_delete()   X-Ref
Can we delete this?

return: bool returns true if they can delete, false if not