Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 4.1.x will end 13 November 2023 (12 months).
  • Bug fixes for security issues in 4.1.x will end 10 November 2025 (36 months).
  • PHP version: minimum PHP 7.4.0 Note: minimum PHP version has increased since Moodle 4.0. PHP 8.0.x is 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.