mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 05:58:34 +01:00
MDL-25855 some more missing filelib includes
This commit is contained in:
parent
17e03900c9
commit
99d19c13ae
@ -14,6 +14,8 @@ class block_course_summary extends block_base {
|
||||
function get_content() {
|
||||
global $CFG, $OUTPUT;
|
||||
|
||||
require_once($CFG->libdir . '/filelib.php');
|
||||
|
||||
if($this->content !== NULL) {
|
||||
return $this->content;
|
||||
}
|
||||
|
@ -42,6 +42,10 @@ class block_html extends block_base {
|
||||
}
|
||||
|
||||
function get_content() {
|
||||
global $CFG;
|
||||
|
||||
require_once($CFG->libdir . '/filelib.php');
|
||||
|
||||
if ($this->content !== NULL) {
|
||||
return $this->content;
|
||||
}
|
||||
|
@ -26,6 +26,8 @@
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
require_once($CFG->libdir . '/filelib.php');
|
||||
|
||||
/**
|
||||
* Blog_entry class. Represents an entry in a user's blog. Contains all methods for managing this entry.
|
||||
* This class does not contain any HTML-generating code. See blog_listing sub-classes for such code.
|
||||
|
@ -1874,7 +1874,10 @@ class calendar_event {
|
||||
* @return string
|
||||
*/
|
||||
protected function get_description() {
|
||||
global $USER;
|
||||
global $USER, $CFG;
|
||||
|
||||
require_once($CFG->libdir . '/filelib.php');
|
||||
|
||||
if ($this->_description === null) {
|
||||
// Check if we have already resolved the context for this event
|
||||
if ($this->editorcontext === null) {
|
||||
|
@ -12,6 +12,7 @@ require_once(dirname(__FILE__) . '/../config.php');
|
||||
require_once(dirname(__FILE__) . '/lib.php');
|
||||
require_once($CFG->dirroot . '/user/selector/lib.php');
|
||||
require_once($CFG->dirroot . '/course/lib.php');
|
||||
require_once($CFG->libdir . '/filelib.php');
|
||||
|
||||
$groupid = required_param('group', PARAM_INT);
|
||||
$cancel = optional_param('cancel', false, PARAM_BOOL);
|
||||
|
@ -9,6 +9,7 @@
|
||||
*/
|
||||
|
||||
require_once('../config.php');
|
||||
require_once($CFG->libdir . '/filelib.php');
|
||||
|
||||
$courseid = required_param('id', PARAM_INT);
|
||||
$groupid = optional_param('group', 0, PARAM_INT);
|
||||
|
@ -276,6 +276,9 @@ class grade_outcome extends grade_object {
|
||||
* @return string
|
||||
*/
|
||||
public function get_description() {
|
||||
global $CFG;
|
||||
require_once($CFG->libdir . '/filelib.php');
|
||||
|
||||
$options = new stdClass;
|
||||
$options->noclean = true;
|
||||
$systemcontext = get_context_instance(CONTEXT_SYSTEM);
|
||||
|
@ -313,6 +313,9 @@ class grade_scale extends grade_object {
|
||||
* @return string
|
||||
*/
|
||||
public function get_description() {
|
||||
global $CFG;
|
||||
require_once($CFG->libdir . '/filelib.php');
|
||||
|
||||
$systemcontext = get_context_instance(CONTEXT_SYSTEM);
|
||||
$options = new stdClass;
|
||||
$options->noclean = true;
|
||||
|
@ -2,6 +2,8 @@
|
||||
require_once($CFG->libdir.'/formslib.php');
|
||||
require_once($CFG->libdir . '/portfoliolib.php');
|
||||
require_once($CFG->dirroot . '/mod/assignment/lib.php');
|
||||
require_once($CFG->libdir . '/filelib.php');
|
||||
|
||||
/**
|
||||
* Extend the base assignment class for assignments where you upload a single file
|
||||
*
|
||||
|
@ -112,7 +112,9 @@ class feedback_item_label extends feedback_item_base {
|
||||
}
|
||||
|
||||
function print_item($item){
|
||||
global $DB;
|
||||
global $DB, $CFG;
|
||||
|
||||
require_once($CFG->libdir . '/filelib.php');
|
||||
|
||||
//is the item a template?
|
||||
if(!$item->feedback AND $item->template) {
|
||||
|
@ -3110,6 +3110,8 @@ function forum_print_post($post, $discussion, $forum, &$cm, $course, $ownpost=fa
|
||||
$footer="", $highlight="", $postisread=null, $dummyifcantsee=true, $istracked=null, $return=false) {
|
||||
global $USER, $CFG, $OUTPUT;
|
||||
|
||||
require_once($CFG->libdir . '/filelib.php');
|
||||
|
||||
// String cache
|
||||
static $str;
|
||||
|
||||
|
@ -821,6 +821,10 @@ function glossary_print_entry($course, $cm, $glossary, $entry, $mode='',$hook=''
|
||||
* @return void Output is echo'd
|
||||
*/
|
||||
function glossary_print_entry_default ($entry, $glossary, $cm) {
|
||||
global $CFG;
|
||||
|
||||
require_once($CFG->libdir . '/filelib.php');
|
||||
|
||||
echo '<h3>'. strip_tags($entry->concept) . ': </h3>';
|
||||
|
||||
$definition = $entry->definition;
|
||||
|
@ -3,6 +3,7 @@ define('AJAX_SCRIPT', true);
|
||||
|
||||
require_once('../../config.php');
|
||||
require_once('lib.php');
|
||||
require_once($CFG->libdir . '/filelib.php');
|
||||
|
||||
$concept = optional_param('concept', '', PARAM_CLEAN);
|
||||
$courseid = optional_param('courseid', 0, PARAM_INT);
|
||||
@ -66,7 +67,7 @@ if ($entries) {
|
||||
$options = new stdClass();
|
||||
$options->para = false;
|
||||
$options->trusted = $entry->definitiontrust;
|
||||
$options->context = $context;
|
||||
$options->context = $context;
|
||||
$entries[$key]->definition = format_text($definition, $entry->definitionformat, $options);
|
||||
|
||||
$entries[$key]->footer = "<p style=\"text-align:right\">» <a href=\"$CFG->wwwroot/mod/glossary/view.php?g=$entry->glossaryid\">".format_string($entry->glossaryname,true)."</a></p>";
|
||||
|
@ -31,6 +31,7 @@ defined('MOODLE_INTERNAL') || die();
|
||||
/** Include the files that are required by this module */
|
||||
require_once($CFG->dirroot.'/course/moodleform_mod.php');
|
||||
require_once($CFG->dirroot . '/mod/lesson/lib.php');
|
||||
require_once($CFG->libdir . '/filelib.php');
|
||||
|
||||
/** This page */
|
||||
define('LESSON_THISPAGE', 0);
|
||||
|
@ -48,6 +48,7 @@ require_once($CFG->dirroot . '/mod/quiz/accessrules.php');
|
||||
require_once($CFG->dirroot . '/mod/quiz/attemptlib.php');
|
||||
require_once($CFG->dirroot . '/question/editlib.php');
|
||||
require_once($CFG->libdir . '/eventslib.php');
|
||||
require_once($CFG->libdir . '/filelib.php');
|
||||
|
||||
/// Constants ///////////////////////////////////////////////////////////////////
|
||||
|
||||
@ -1031,7 +1032,7 @@ function quiz_send_confirmation($a) {
|
||||
$eventdata->smallmessage = get_string('emailconfirmsmall', 'quiz', $a);
|
||||
$eventdata->contexturl = $a->quizurl;
|
||||
$eventdata->contexturlname = $a->quizname;
|
||||
|
||||
|
||||
return message_send($eventdata);
|
||||
}
|
||||
|
||||
|
@ -310,7 +310,10 @@ function quiz_report_highlighting_grading_method($quiz, $qmsubselect, $qmfilter)
|
||||
* @return string the comment that corresponds to this grade (empty string if there is not one.
|
||||
*/
|
||||
function quiz_report_feedback_for_grade($grade, $quizid, $context) {
|
||||
global $DB;
|
||||
global $DB, $CFG;
|
||||
|
||||
require_once($CFG->libdir . '/filelib.php');
|
||||
|
||||
static $feedbackcache = array();
|
||||
if (!isset($feedbackcache[$quizid])){
|
||||
$feedbackcache[$quizid] = $DB->get_records('quiz_feedback', array('quizid' => $quizid));
|
||||
|
@ -34,6 +34,7 @@
|
||||
|
||||
require_once($CFG->dirroot . '/mod/wiki/lib.php');
|
||||
require_once($CFG->dirroot . '/mod/wiki/parser/parser.php');
|
||||
require_once($CFG->libdir . '/filelib.php');
|
||||
|
||||
define('WIKI_REFRESH_CACHE_TIME', 30); // @TODO: To be deleted.
|
||||
define('FORMAT_CREOLE', '37');
|
||||
|
@ -33,6 +33,7 @@ defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
require_once(dirname(__FILE__).'/lib.php'); // we extend this library here
|
||||
require_once($CFG->libdir . '/gradelib.php'); // we use some rounding and comparing routines here
|
||||
require_once($CFG->libdir . '/filelib.php');
|
||||
|
||||
/**
|
||||
* Full-featured workshop API
|
||||
|
@ -4,6 +4,7 @@
|
||||
|
||||
require_once('../config.php');
|
||||
require_once($CFG->libdir.'/tablelib.php');
|
||||
require_once($CFG->libdir.'/filelib.php');
|
||||
|
||||
define('USER_SMALL_CLASS', 20); // Below this is considered small
|
||||
define('USER_LARGE_CLASS', 200); // Above this is considered large
|
||||
|
@ -26,6 +26,7 @@
|
||||
require_once("../config.php");
|
||||
require_once($CFG->dirroot.'/user/profile/lib.php');
|
||||
require_once($CFG->dirroot.'/tag/lib.php');
|
||||
require_once($CFG->libdir . '/filelib.php');
|
||||
|
||||
$id = optional_param('id', 0, PARAM_INT); // user id
|
||||
$courseid = optional_param('course', SITEID, PARAM_INT); // course id (defaults to Site)
|
||||
|
Loading…
x
Reference in New Issue
Block a user