98b518c17a
The repository API defaults has a function, prepare_file, which is responsible for creating a unique file to be used during the current request. This is usually used in the repository's get_file() function to store the file before it is used elsewhere in the API to save the file to the filestorage API. It is also sometimes used to temporarily store credentials for the lifetime of the session. In all cases, this file is only expected to exist for the duration of the session. Switching to use of a per-request directory using make_request_directory() ensures that the tempdir does not grow without control. This commit also adds an upgrade step to remove all old temp directories created by any repository currently installed.
40 lines
1.6 KiB
PHP
40 lines
1.6 KiB
PHP
<?php
|
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* MOODLE VERSION INFORMATION
|
|
*
|
|
* This file defines the current version of the core Moodle code being used.
|
|
* This is compared against the values stored in the database to determine
|
|
* whether upgrades should be performed (see lib/db/*.php)
|
|
*
|
|
* @package core
|
|
* @copyright 1999 onwards Martin Dougiamas (http://dougiamas.com)
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
$version = 2015051104.07; // 20150511 = branching date YYYYMMDD - do not modify!
|
|
// RR = release increments - 00 in DEV branches.
|
|
// .XX = incremental changes.
|
|
|
|
$release = '2.9.4+ (Build: 20160211)'; // Human-friendly version name
|
|
|
|
$branch = '29'; // This version's branch.
|
|
$maturity = MATURITY_STABLE; // This version's maturity level.
|