Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.10.x will end 8 November 2021 (12 months).
  • Bug fixes for security issues in 3.10.x will end 9 May 2022 (18 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.

Progress handler that updates a database table with the progress.

Copyright: 2018 Matt Porritt <mattp@catalyst-au.net>
License: http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
File Size: 123 lines (4 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

db_updater:: (2 methods):
  __construct()
  update_progress()


Class: db_updater  - X-Ref

Progress handler that updates a database table with the progress.

__construct($recordid, $table, $field, $interval=5)   X-Ref
Constructs the progress reporter.

param: int $recordid The primary key of the database record to update.
param: string $table The databse table to insert the progress updates into.
param: string $field The table field to update with the progress.
param: int $interval The maximum frequency in seconds to update the database (default 5 seconds).

update_progress()   X-Ref
Updates the progress in the database.
Database update frequency is set by $interval.