Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.0.x will end 8 May 2023 (12 months).
  • Bug fixes for security issues in 4.0.x will end 13 November 2023 (18 months).
  • PHP version: minimum PHP 7.3.0 Note: the minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is also supported.

Differences Between: [Versions 310 and 400] [Versions 39 and 400] [Versions 400 and 402] [Versions 400 and 403]

Base class for antivirus integration.

Copyright: 2015 Ruslan Kabalin, Lancaster University.
License: http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
File Size: 251 lines (9 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class


Class: scanner  - X-Ref

Base abstract antivirus scanner class.

__construct()   X-Ref
Class constructor.

return: void.

get_config($property)   X-Ref
Config get method.

return: mixed
param: string $property config property to get.

get_scanning_notice()   X-Ref
Get scanning notice.

return: string

set_scanning_notice($notice)   X-Ref
Set scanning notice.

return: void
param: string $notice notice to set.

scan_data($data)   X-Ref
Scan data.

By default it saves data variable content to file and then scans it using
scan_file method, however if antivirus plugin permits scanning data directly,
the method can be overridden.

return: int Scanning result constants.
param: string $data The variable containing the data to scan.

message_admins($notice, $format = FORMAT_PLAIN, $eventname = 'errors')   X-Ref
This function pushes given messages into the message queue, which will be sent by the antivirus manager.

return: void
param: string $notice The body of the email to be sent.
param: string $format The body format.
param: string $eventname event name

get_incident_details($file = '', $filename = '', $notice = '', $virus = true)   X-Ref
Return incident details

return: string the incident details
param: string $file full path to the file
param: string $filename original name of the file
param: string $notice notice from antivirus
param: string $virus if this template is due to a virus found.

get_messages()   X-Ref
Getter method for messages queued by the antivirus scanner.

return: array

get_virus_found_message()   X-Ref
Getter method for the antivirus message displayed in the exception.

return: array array of string and component to pass to exception constructor.