diff --git a/repository/local/lib.php b/repository/local/lib.php index 47f17520b75..6b3e0285f29 100644 --- a/repository/local/lib.php +++ b/repository/local/lib.php @@ -115,7 +115,7 @@ class repository_local extends repository { * @return int */ public function supported_returntypes() { - return FILE_INTERNAL; + return FILE_INTERNAL | FILE_REFERENCE; } /** @@ -126,6 +126,17 @@ class repository_local extends repository { public function has_moodle_files() { return true; } + + /** + * Return reference file life time + * + * @param string $ref + * @return int + */ + public function get_reference_file_lifetime($ref) { + // this should be realtime + return 0; + } } /**