3 // This file is part of Moodle - http://moodle.org/
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
19 * deprecatedlib.php - Old functions retained only for backward compatibility
21 * Old functions retained only for backward compatibility. New code should not
22 * use any of these functions.
25 * @subpackage deprecated
26 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
27 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
31 defined('MOODLE_INTERNAL') || die();
33 /* === Functions that needs to be kept longer in deprecated lib than normal time period === */
36 * Add an entry to the legacy log table.
38 * @deprecated since 2.7 use new events instead
40 * @param int $courseid The course id
41 * @param string $module The module name e.g. forum, journal, resource, course, user etc
42 * @param string $action 'view', 'update', 'add' or 'delete', possibly followed by another word to clarify.
43 * @param string $url The file and parameters used to see the results of the action
44 * @param string $info Additional description information
45 * @param int $cm The course_module->id if there is one
46 * @param int|stdClass $user If log regards $user other than $USER
49 function add_to_log($courseid, $module, $action, $url='', $info='', $cm=0, $user=0) {
50 debugging('add_to_log() has been deprecated, please rewrite your code to the new events API', DEBUG_DEVELOPER);
52 // This is a nasty hack that allows us to put all the legacy stuff into legacy storage,
53 // this way we may move all the legacy settings there too.
54 $manager = get_log_manager();
55 if (method_exists($manager, 'legacy_add_to_log')) {
56 $manager->legacy_add_to_log($courseid, $module, $action, $url, $info, $cm, $user);
61 * Function to call all event handlers when triggering an event
63 * @deprecated since 2.6
65 * @param string $eventname name of the event
66 * @param mixed $eventdata event data object
67 * @return int number of failed events
69 function events_trigger($eventname, $eventdata) {
70 debugging('events_trigger() is deprecated, please use new events instead', DEBUG_DEVELOPER);
71 return events_trigger_legacy($eventname, $eventdata);
75 * List all core subsystems and their location
77 * This is a whitelist of components that are part of the core and their
78 * language strings are defined in /lang/en/<<subsystem>>.php. If a given
79 * plugin is not listed here and it does not have proper plugintype prefix,
80 * then it is considered as course activity module.
82 * The location is optionally dirroot relative path. NULL means there is no special
83 * directory for this subsystem. If the location is set, the subsystem's
84 * renderer.php is expected to be there.
86 * @deprecated since 2.6, use core_component::get_core_subsystems()
88 * @param bool $fullpaths false means relative paths from dirroot, use true for performance reasons
89 * @return array of (string)name => (string|null)location
91 function get_core_subsystems($fullpaths = false) {
94 // NOTE: do not add any other debugging here, keep forever.
96 $subsystems = core_component::get_core_subsystems();
102 debugging('Short paths are deprecated when using get_core_subsystems(), please fix the code to use fullpaths instead.', DEBUG_DEVELOPER);
104 $dlength = strlen($CFG->dirroot);
106 foreach ($subsystems as $k => $v) {
110 $subsystems[$k] = substr($v, $dlength+1);
117 * Lists all plugin types.
119 * @deprecated since 2.6, use core_component::get_plugin_types()
121 * @param bool $fullpaths false means relative paths from dirroot
122 * @return array Array of strings - name=>location
124 function get_plugin_types($fullpaths = true) {
127 // NOTE: do not add any other debugging here, keep forever.
129 $types = core_component::get_plugin_types();
135 debugging('Short paths are deprecated when using get_plugin_types(), please fix the code to use fullpaths instead.', DEBUG_DEVELOPER);
137 $dlength = strlen($CFG->dirroot);
139 foreach ($types as $k => $v) {
140 if ($k === 'theme') {
141 $types[$k] = 'theme';
144 $types[$k] = substr($v, $dlength+1);
151 * Use when listing real plugins of one type.
153 * @deprecated since 2.6, use core_component::get_plugin_list()
155 * @param string $plugintype type of plugin
156 * @return array name=>fulllocation pairs of plugins of given type
158 function get_plugin_list($plugintype) {
160 // NOTE: do not add any other debugging here, keep forever.
162 if ($plugintype === '') {
166 return core_component::get_plugin_list($plugintype);
170 * Get a list of all the plugins of a given type that define a certain class
171 * in a certain file. The plugin component names and class names are returned.
173 * @deprecated since 2.6, use core_component::get_plugin_list_with_class()
175 * @param string $plugintype the type of plugin, e.g. 'mod' or 'report'.
176 * @param string $class the part of the name of the class after the
177 * frankenstyle prefix. e.g 'thing' if you are looking for classes with
178 * names like report_courselist_thing. If you are looking for classes with
179 * the same name as the plugin name (e.g. qtype_multichoice) then pass ''.
180 * @param string $file the name of file within the plugin that defines the class.
181 * @return array with frankenstyle plugin names as keys (e.g. 'report_courselist', 'mod_forum')
182 * and the class names as values (e.g. 'report_courselist_thing', 'qtype_multichoice').
184 function get_plugin_list_with_class($plugintype, $class, $file) {
186 // NOTE: do not add any other debugging here, keep forever.
188 return core_component::get_plugin_list_with_class($plugintype, $class, $file);
192 * Returns the exact absolute path to plugin directory.
194 * @deprecated since 2.6, use core_component::get_plugin_directory()
196 * @param string $plugintype type of plugin
197 * @param string $name name of the plugin
198 * @return string full path to plugin directory; NULL if not found
200 function get_plugin_directory($plugintype, $name) {
202 // NOTE: do not add any other debugging here, keep forever.
204 if ($plugintype === '') {
208 return core_component::get_plugin_directory($plugintype, $name);
212 * Normalize the component name using the "frankenstyle" names.
214 * @deprecated since 2.6, use core_component::normalize_component()
216 * @param string $component
217 * @return array two-items list of [(string)type, (string|null)name]
219 function normalize_component($component) {
221 // NOTE: do not add any other debugging here, keep forever.
223 return core_component::normalize_component($component);
227 * Return exact absolute path to a plugin directory.
229 * @deprecated since 2.6, use core_component::normalize_component()
231 * @param string $component name such as 'moodle', 'mod_forum'
232 * @return string full path to component directory; NULL if not found
234 function get_component_directory($component) {
236 // NOTE: do not add any other debugging here, keep forever.
238 return core_component::get_component_directory($component);
242 * Get the context instance as an object. This function will create the
243 * context instance if it does not exist yet.
245 * @deprecated since 2.2, use context_course::instance() or other relevant class instead
246 * @todo This will be deleted in Moodle 2.8, refer MDL-34472
247 * @param integer $contextlevel The context level, for example CONTEXT_COURSE, or CONTEXT_MODULE.
248 * @param integer $instance The instance id. For $level = CONTEXT_COURSE, this would be $course->id,
249 * for $level = CONTEXT_MODULE, this would be $cm->id. And so on. Defaults to 0
250 * @param int $strictness IGNORE_MISSING means compatible mode, false returned if record not found, debug message if more found;
251 * MUST_EXIST means throw exception if no record or multiple records found
252 * @return context The context object.
254 function get_context_instance($contextlevel, $instance = 0, $strictness = IGNORE_MISSING) {
256 debugging('get_context_instance() is deprecated, please use context_xxxx::instance() instead.', DEBUG_DEVELOPER);
258 $instances = (array)$instance;
261 $classname = context_helper::get_class_for_level($contextlevel);
263 // we do not load multiple contexts any more, PAGE should be responsible for any preloading
264 foreach ($instances as $inst) {
265 $contexts[$inst] = $classname::instance($inst, $strictness);
268 if (is_array($instance)) {
271 return $contexts[$instance];
274 /* === End of long term deprecated api list === */
277 * Adds a file upload to the log table so that clam can resolve the filename to the user later if necessary
279 * @deprecated since 2.7 - use new file picker instead
282 function clam_log_upload($newfilepath, $course=null, $nourl=false) {
283 throw new coding_exception('clam_log_upload() can not be used any more, please use file picker instead');
287 * This function logs to error_log and to the log table that an infected file has been found and what's happened to it.
289 * @deprecated since 2.7 - use new file picker instead
292 function clam_log_infected($oldfilepath='', $newfilepath='', $userid=0) {
293 throw new coding_exception('clam_log_infected() can not be used any more, please use file picker instead');
297 * Some of the modules allow moving attachments (glossary), in which case we need to hunt down an original log and change the path.
299 * @deprecated since 2.7 - use new file picker instead
302 function clam_change_log($oldpath, $newpath, $update=true) {
303 throw new coding_exception('clam_change_log() can not be used any more, please use file picker instead');
307 * Replaces the given file with a string.
309 * @deprecated since 2.7 - infected files are now deleted in file picker
312 function clam_replace_infected_file($file) {
313 throw new coding_exception('clam_replace_infected_file() can not be used any more, please use file picker instead');
317 * Deals with an infected file - either moves it to a quarantinedir
318 * (specified in CFG->quarantinedir) or deletes it.
320 * If moving it fails, it deletes it.
322 * @deprecated since 2.7
324 function clam_handle_infected_file($file, $userid=0, $basiconly=false) {
325 throw new coding_exception('clam_handle_infected_file() can not be used any more, please use file picker instead');
329 * If $CFG->runclamonupload is set, we scan a given file. (called from {@link preprocess_files()})
331 * @deprecated since 2.7
333 function clam_scan_moodle_file(&$file, $course) {
334 throw new coding_exception('clam_scan_moodle_file() can not be used any more, please use file picker instead');
339 * Checks whether the password compatibility library will work with the current
340 * version of PHP. This cannot be done using PHP version numbers since the fix
341 * has been backported to earlier versions in some distributions.
343 * See https://github.com/ircmaxell/password_compat/issues/10 for more details.
345 * @deprecated since 2.7 PHP 5.4.x should be always compatible.
348 function password_compat_not_supported() {
349 throw new coding_exception('Do not use password_compat_not_supported() - bcrypt is now always available');
353 * Factory method that was returning moodle_session object.
355 * @deprecated since 2.6
357 function session_get_instance() {
358 throw new coding_exception('session_get_instance() is removed, use \core\session\manager instead');
362 * Returns true if legacy session used.
364 * @deprecated since 2.6
366 function session_is_legacy() {
367 throw new coding_exception('session_is_legacy() is removed, do not use any more');
371 * Terminates all sessions, auth hooks are not executed.
373 * @deprecated since 2.6
375 function session_kill_all() {
376 throw new coding_exception('session_kill_all() is removed, use \core\session\manager::kill_all_sessions() instead');
380 * Mark session as accessed, prevents timeouts.
382 * @deprecated since 2.6
384 function session_touch($sid) {
385 throw new coding_exception('session_touch() is removed, use \core\session\manager::touch_session() instead');
389 * Terminates one sessions, auth hooks are not executed.
391 * @deprecated since 2.6
393 function session_kill($sid) {
394 throw new coding_exception('session_kill() is removed, use \core\session\manager::kill_session() instead');
398 * Terminates all sessions of one user, auth hooks are not executed.
400 * @deprecated since 2.6
402 function session_kill_user($userid) {
403 throw new coding_exception('session_kill_user() is removed, use \core\session\manager::kill_user_sessions() instead');
407 * Setup $USER object - called during login, loginas, etc.
409 * Call sync_user_enrolments() manually after log-in, or log-in-as.
411 * @deprecated since 2.6
413 function session_set_user($user) {
414 throw new coding_exception('session_set_user() is removed, use \core\session\manager::set_user() instead');
418 * Is current $USER logged-in-as somebody else?
419 * @deprecated since 2.6
421 function session_is_loggedinas() {
422 throw new coding_exception('session_is_loggedinas() is removed, use \core\session\manager::is_loggedinas() instead');
426 * Returns the $USER object ignoring current login-as session
427 * @deprecated since 2.6
429 function session_get_realuser() {
430 throw new coding_exception('session_get_realuser() is removed, use \core\session\manager::get_realuser() instead');
434 * Login as another user - no security checks here.
435 * @deprecated since 2.6
437 function session_loginas($userid, $context) {
438 throw new coding_exception('session_loginas() is removed, use \core\session\manager::loginas() instead');
442 * Minify JavaScript files.
444 * @deprecated since 2.6
446 function js_minify($files) {
447 throw new coding_exception('js_minify() is removed, use core_minify::js_files() or core_minify::js() instead.');
453 * @deprecated since 2.6
455 function css_minify_css($files) {
456 throw new coding_exception('css_minify_css() is removed, use core_minify::css_files() or core_minify::css() instead.');
459 // === Deprecated before 2.6.0 ===
462 * Hack to find out the GD version by parsing phpinfo output
466 function check_gd_version() {
467 throw new coding_exception('check_gd_version() is removed, GD extension is always available now');
471 * Not used any more, the account lockout handling is now
472 * part of authenticate_user_login().
475 function update_login_count() {
476 throw new coding_exception('update_login_count() is removed, all calls need to be removed');
480 * Not used any more, replaced by proper account lockout.
483 function reset_login_count() {
484 throw new coding_exception('reset_login_count() is removed, all calls need to be removed');
490 function update_log_display_entry($module, $action, $mtable, $field) {
492 throw new coding_exception('The update_log_display_entry() is removed, please use db/log.php description file instead.');
496 * @deprecated use the text formatting in a standard way instead (http://docs.moodle.org/dev/Output_functions)
497 * this was abused mostly for embedding of attachments
499 function filter_text($text, $courseid = NULL) {
500 throw new coding_exception('filter_text() can not be used anymore, use format_text(), format_string() etc instead.');
504 * @deprecated use $PAGE->https_required() instead
506 function httpsrequired() {
507 throw new coding_exception('httpsrequired() can not be used any more use $PAGE->https_required() instead.');
511 * Given a physical path to a file, returns the URL through which it can be reached in Moodle.
513 * @deprecated since 3.1 - replacement legacy file API methods can be found on the moodle_url class, for example:
514 * The moodle_url::make_legacyfile_url() method can be used to generate a legacy course file url. To generate
515 * course module file.php url the moodle_url::make_file_url() should be used.
517 * @param string $path Physical path to a file
518 * @param array $options associative array of GET variables to append to the URL
519 * @param string $type (questionfile|rssfile|httpscoursefile|coursefile)
520 * @return string URL to file
522 function get_file_url($path, $options=null, $type='coursefile') {
523 debugging('Function get_file_url() is deprecated, please use moodle_url factory methods instead.', DEBUG_DEVELOPER);
526 $path = str_replace('//', '/', $path);
527 $path = trim($path, '/'); // no leading and trailing slashes
532 $url = $CFG->wwwroot."/question/exportfile.php";
535 $url = $CFG->wwwroot."/rss/file.php";
537 case 'httpscoursefile':
538 $url = $CFG->httpswwwroot."/file.php";
542 $url = $CFG->wwwroot."/file.php";
545 if ($CFG->slasharguments) {
546 $parts = explode('/', $path);
547 foreach ($parts as $key => $part) {
548 /// anchor dash character should not be encoded
549 $subparts = explode('#', $part);
550 $subparts = array_map('rawurlencode', $subparts);
551 $parts[$key] = implode('#', $subparts);
553 $path = implode('/', $parts);
554 $ffurl = $url.'/'.$path;
557 $path = rawurlencode('/'.$path);
558 $ffurl = $url.'?file='.$path;
559 $separator = '&';
563 foreach ($options as $name=>$value) {
564 $ffurl = $ffurl.$separator.$name.'='.$value;
565 $separator = '&';
573 * @deprecated use get_enrolled_users($context) instead.
575 function get_course_participants($courseid) {
576 throw new coding_exception('get_course_participants() can not be used any more, use get_enrolled_users() instead.');
580 * @deprecated use is_enrolled($context, $userid) instead.
582 function is_course_participant($userid, $courseid) {
583 throw new coding_exception('is_course_participant() can not be used any more, use is_enrolled() instead.');
589 function get_recent_enrolments($courseid, $timestart) {
590 throw new coding_exception('get_recent_enrolments() is removed as it returned inaccurate results.');
594 * @deprecated use clean_param($string, PARAM_FILE) instead.
596 function detect_munged_arguments($string, $allowdots=1) {
597 throw new coding_exception('detect_munged_arguments() can not be used any more, please use clean_param(,PARAM_FILE) instead.');
602 * Unzip one zip file to a destination dir
603 * Both parameters must be FULL paths
604 * If destination isn't specified, it will be the
605 * SAME directory where the zip file resides.
608 * @param string $zipfile The zip file to unzip
609 * @param string $destination The location to unzip to
610 * @param bool $showstatus_ignored Unused
611 * @deprecated since 2.0 MDL-15919
613 function unzip_file($zipfile, $destination = '', $showstatus_ignored = true) {
614 debugging(__FUNCTION__ . '() is deprecated. '
615 . 'Please use the application/zip file_packer implementation instead.', DEBUG_DEVELOPER);
617 // Extract everything from zipfile.
618 $path_parts = pathinfo(cleardoubleslashes($zipfile));
619 $zippath = $path_parts["dirname"]; //The path of the zip file
620 $zipfilename = $path_parts["basename"]; //The name of the zip file
621 $extension = $path_parts["extension"]; //The extension of the file
624 if (empty($zipfilename)) {
628 //If no extension, error
629 if (empty($extension)) {
634 $zipfile = cleardoubleslashes($zipfile);
636 //Check zipfile exists
637 if (!file_exists($zipfile)) {
641 //If no destination, passed let's go with the same directory
642 if (empty($destination)) {
643 $destination = $zippath;
647 $destpath = rtrim(cleardoubleslashes($destination), "/");
649 //Check destination path exists
650 if (!is_dir($destpath)) {
654 $packer = get_file_packer('application/zip');
656 $result = $packer->extract_to_pathname($zipfile, $destpath);
658 if ($result === false) {
662 foreach ($result as $status) {
663 if ($status !== true) {
672 * Zip an array of files/dirs to a destination zip file
673 * Both parameters must be FULL paths to the files/dirs
676 * @param array $originalfiles Files to zip
677 * @param string $destination The destination path
678 * @return bool Outcome
680 * @deprecated since 2.0 MDL-15919
682 function zip_files($originalfiles, $destination) {
683 debugging(__FUNCTION__ . '() is deprecated. '
684 . 'Please use the application/zip file_packer implementation instead.', DEBUG_DEVELOPER);
686 // Extract everything from destination.
687 $path_parts = pathinfo(cleardoubleslashes($destination));
688 $destpath = $path_parts["dirname"]; //The path of the zip file
689 $destfilename = $path_parts["basename"]; //The name of the zip file
690 $extension = $path_parts["extension"]; //The extension of the file
693 if (empty($destfilename)) {
697 //If no extension, add it
698 if (empty($extension)) {
700 $destfilename = $destfilename.'.'.$extension;
703 //Check destination path exists
704 if (!is_dir($destpath)) {
708 //Check destination path is writable. TODO!!
710 //Clean destination filename
711 $destfilename = clean_filename($destfilename);
713 //Now check and prepare every file
717 foreach ($originalfiles as $file) { //Iterate over each file
718 //Check for every file
719 $tempfile = cleardoubleslashes($file); // no doubleslashes!
720 //Calculate the base path for all files if it isn't set
721 if ($origpath === NULL) {
722 $origpath = rtrim(cleardoubleslashes(dirname($tempfile)), "/");
724 //See if the file is readable
725 if (!is_readable($tempfile)) { //Is readable
728 //See if the file/dir is in the same directory than the rest
729 if (rtrim(cleardoubleslashes(dirname($tempfile)), "/") != $origpath) {
732 //Add the file to the array
733 $files[] = $tempfile;
737 $start = strlen($origpath)+1;
738 foreach($files as $file) {
739 $zipfiles[substr($file, $start)] = $file;
742 $packer = get_file_packer('application/zip');
744 return $packer->archive_to_pathname($zipfiles, $destpath . '/' . $destfilename);
748 * @deprecated use groups_get_all_groups() instead.
750 function mygroupid($courseid) {
751 throw new coding_exception('mygroupid() can not be used any more, please use groups_get_all_groups() instead.');
756 * Returns the current group mode for a given course or activity module
758 * Could be false, SEPARATEGROUPS or VISIBLEGROUPS (<-- Martin)
760 * @deprecated since Moodle 2.0 MDL-14617 - please do not use this function any more.
761 * @todo MDL-50273 This will be deleted in Moodle 3.2.
763 * @param object $course Course Object
764 * @param object $cm Course Manager Object
765 * @return mixed $course->groupmode
767 function groupmode($course, $cm=null) {
769 debugging('groupmode() is deprecated, please use groups_get_* instead', DEBUG_DEVELOPER);
770 if (isset($cm->groupmode) && empty($course->groupmodeforce)) {
771 return $cm->groupmode;
773 return $course->groupmode;
777 * Sets the current group in the session variable
778 * When $SESSION->currentgroup[$courseid] is set to 0 it means, show all groups.
779 * Sets currentgroup[$courseid] in the session variable appropriately.
780 * Does not do any permission checking.
782 * @deprecated Since year 2006 - please do not use this function any more.
783 * @todo MDL-50273 This will be deleted in Moodle 3.2.
787 * @param int $courseid The course being examined - relates to id field in
789 * @param int $groupid The group being examined.
790 * @return int Current group id which was set by this function
792 function set_current_group($courseid, $groupid) {
795 debugging('set_current_group() is deprecated, please use $SESSION->currentgroup[$courseid] instead', DEBUG_DEVELOPER);
796 return $SESSION->currentgroup[$courseid] = $groupid;
800 * Gets the current group - either from the session variable or from the database.
802 * @deprecated Since year 2006 - please do not use this function any more.
803 * @todo MDL-50273 This will be deleted in Moodle 3.2.
806 * @param int $courseid The course being examined - relates to id field in
808 * @param bool $full If true, the return value is a full record object.
809 * If false, just the id of the record.
812 function get_current_group($courseid, $full = false) {
815 debugging('get_current_group() is deprecated, please use groups_get_* instead', DEBUG_DEVELOPER);
816 if (isset($SESSION->currentgroup[$courseid])) {
818 return groups_get_group($SESSION->currentgroup[$courseid]);
820 return $SESSION->currentgroup[$courseid];
824 $mygroupid = mygroupid($courseid);
825 if (is_array($mygroupid)) {
826 $mygroupid = array_shift($mygroupid);
827 set_current_group($courseid, $mygroupid);
829 return groups_get_group($mygroupid);
843 * @deprecated Since Moodle 2.8
845 function groups_filter_users_by_course_module_visible($cm, $users) {
846 throw new coding_exception('groups_filter_users_by_course_module_visible() is removed. ' .
847 'Replace with a call to \core_availability\info_module::filter_user_list(), ' .
848 'which does basically the same thing but includes other restrictions such ' .
849 'as profile restrictions.');
853 * @deprecated Since Moodle 2.8
855 function groups_course_module_visible($cm, $userid=null) {
856 throw new coding_exception('groups_course_module_visible() is removed, use $cm->uservisible to decide whether the current
857 user can ' . 'access an activity.', DEBUG_DEVELOPER);
861 * @deprecated since 2.0
863 function error($message, $link='') {
864 throw new coding_exception('notlocalisederrormessage', 'error', $link, $message, 'error() is a removed, please call
865 print_error() instead of error()');
870 * @deprecated use $PAGE->theme->name instead.
872 function current_theme() {
873 throw new coding_exception('current_theme() can not be used any more, please use $PAGE->theme->name instead');
879 function formerr($error) {
880 throw new coding_exception('formerr() is removed. Please change your code to use $OUTPUT->error_text($string).');
884 * @deprecated use $OUTPUT->skip_link_target() in instead.
886 function skip_main_destination() {
887 throw new coding_exception('skip_main_destination() can not be used any more, please use $OUTPUT->skip_link_target() instead.');
891 * @deprecated use $OUTPUT->container() instead.
893 function print_container($message, $clearfix=false, $classes='', $idbase='', $return=false) {
894 throw new coding_exception('print_container() can not be used any more. Please use $OUTPUT->container() instead.');
898 * @deprecated use $OUTPUT->container_start() instead.
900 function print_container_start($clearfix=false, $classes='', $idbase='', $return=false) {
901 throw new coding_exception('print_container_start() can not be used any more. Please use $OUTPUT->container_start() instead.');
905 * @deprecated use $OUTPUT->container_end() instead.
907 function print_container_end($return=false) {
908 throw new coding_exception('print_container_end() can not be used any more. Please use $OUTPUT->container_end() instead.');
912 * Print a bold message in an optional color.
914 * @deprecated since Moodle 2.0 MDL-19077 - use $OUTPUT->notification instead.
915 * @todo MDL-50469 This will be deleted in Moodle 3.3.
916 * @param string $message The message to print out
917 * @param string $classes Optional style to display message text in
918 * @param string $align Alignment option
919 * @param bool $return whether to return an output string or echo now
920 * @return string|bool Depending on $result
922 function notify($message, $classes = 'error', $align = 'center', $return = false) {
925 debugging('notify() is deprecated, please use $OUTPUT->notification() instead', DEBUG_DEVELOPER);
927 if ($classes == 'green') {
928 debugging('Use of deprecated class name "green" in notify. Please change to "success".', DEBUG_DEVELOPER);
929 $classes = 'success'; // Backward compatible with old color system.
932 $output = $OUTPUT->notification($message, $classes);
941 * @deprecated use $OUTPUT->continue_button() instead.
943 function print_continue($link, $return = false) {
944 throw new coding_exception('print_continue() can not be used any more. Please use $OUTPUT->continue_button() instead.');
948 * @deprecated use $PAGE methods instead.
950 function print_header($title='', $heading='', $navigation='', $focus='',
951 $meta='', $cache=true, $button=' ', $menu=null,
952 $usexml=false, $bodytags='', $return=false) {
954 throw new coding_exception('print_header() can not be used any more. Please use $PAGE methods instead.');
958 * @deprecated use $PAGE methods instead.
960 function print_header_simple($title='', $heading='', $navigation='', $focus='', $meta='',
961 $cache=true, $button=' ', $menu='', $usexml=false, $bodytags='', $return=false) {
963 throw new coding_exception('print_header_simple() can not be used any more. Please use $PAGE methods instead.');
967 * @deprecated use $OUTPUT->block() instead.
969 function print_side_block($heading='', $content='', $list=NULL, $icons=NULL, $footer='', $attributes = array(), $title='') {
970 throw new coding_exception('print_side_block() can not be used any more, please use $OUTPUT->block() instead.');
974 * Prints a basic textarea field.
976 * @deprecated since Moodle 2.0
978 * When using this function, you should
981 * @param bool $unused No longer used.
982 * @param int $rows Number of rows to display (minimum of 10 when $height is non-null)
983 * @param int $cols Number of columns to display (minimum of 65 when $width is non-null)
984 * @param null $width (Deprecated) Width of the element; if a value is passed, the minimum value for $cols will be 65. Value is otherwise ignored.
985 * @param null $height (Deprecated) Height of the element; if a value is passe, the minimum value for $rows will be 10. Value is otherwise ignored.
986 * @param string $name Name to use for the textarea element.
987 * @param string $value Initial content to display in the textarea.
988 * @param int $obsolete deprecated
989 * @param bool $return If false, will output string. If true, will return string value.
990 * @param string $id CSS ID to add to the textarea element.
991 * @return string|void depending on the value of $return
993 function print_textarea($unused, $rows, $cols, $width, $height, $name, $value='', $obsolete=0, $return=false, $id='') {
994 /// $width and height are legacy fields and no longer used as pixels like they used to be.
995 /// However, you can set them to zero to override the mincols and minrows values below.
997 // Disabling because there is not yet a viable $OUTPUT option for cases when mforms can't be used
998 // debugging('print_textarea() has been deprecated. You should be using mforms and the editor element.');
1007 $id = 'edit-'.$name;
1010 if ($height && ($rows < $minrows)) {
1013 if ($width && ($cols < $mincols)) {
1017 editors_head_setup();
1018 $editor = editors_get_preferred_editor(FORMAT_HTML);
1019 $editor->set_text($value);
1020 $editor->use_editor($id, array('legacy'=>true));
1022 $str .= "\n".'<textarea class="form-textarea" id="'. $id .'" name="'. $name .'" rows="'. $rows .'" cols="'. $cols .'" spellcheck="true">'."\n";
1023 $str .= htmlspecialchars($value); // needed for editing of cleaned text!
1024 $str .= '</textarea>'."\n";
1033 * Returns an image of an up or down arrow, used for column sorting. To avoid unnecessary DB accesses, please
1034 * provide this function with the language strings for sortasc and sortdesc.
1036 * @deprecated use $OUTPUT->arrow() instead.
1037 * @todo final deprecation of this function once MDL-45448 is resolved
1039 * If no sort string is associated with the direction, an arrow with no alt text will be printed/returned.
1042 * @param string $direction 'up' or 'down'
1043 * @param string $strsort The language string used for the alt attribute of this image
1044 * @param bool $return Whether to print directly or return the html string
1045 * @return string|void depending on $return
1048 function print_arrow($direction='up', $strsort=null, $return=false) {
1051 debugging('print_arrow() is deprecated. Please use $OUTPUT->arrow() instead.', DEBUG_DEVELOPER);
1053 if (!in_array($direction, array('up', 'down', 'right', 'left', 'move'))) {
1059 switch ($direction) {
1074 // Prepare language string
1076 if (empty($strsort) && !empty($sortdir)) {
1077 $strsort = get_string('sort' . $sortdir, 'grades');
1080 $return = ' ' . $OUTPUT->pix_icon('t/' . $direction, $strsort) . ' ';
1090 * @deprecated since Moodle 2.0
1092 function choose_from_menu ($options, $name, $selected='', $nothing='choose', $script='',
1093 $nothingvalue='0', $return=false, $disabled=false, $tabindex=0,
1094 $id='', $listbox=false, $multiple=false, $class='') {
1095 throw new coding_exception('choose_from_menu() is removed. Please change your code to use html_writer::select().');
1100 * @deprecated use $OUTPUT->help_icon_scale($courseid, $scale) instead.
1102 function print_scale_menu_helpbutton($courseid, $scale, $return=false) {
1103 throw new coding_exception('print_scale_menu_helpbutton() can not be used any more. '.
1104 'Please use $OUTPUT->help_icon_scale($courseid, $scale) instead.');
1108 * @deprecated use html_writer::checkbox() instead.
1110 function print_checkbox($name, $value, $checked = true, $label = '', $alt = '', $script='', $return=false) {
1111 throw new coding_exception('print_checkbox() can not be used any more. Please use html_writer::checkbox() instead.');
1115 * Prints the 'update this xxx' button that appears on module pages.
1117 * @deprecated since Moodle 3.2
1119 * @param string $cmid the course_module id.
1120 * @param string $ignored not used any more. (Used to be courseid.)
1121 * @param string $string the module name - get_string('modulename', 'xxx')
1122 * @return string the HTML for the button, if this user has permission to edit it, else an empty string.
1124 function update_module_button($cmid, $ignored, $string) {
1125 global $CFG, $OUTPUT;
1127 debugging('update_module_button() has been deprecated and should not be used anymore. Activity modules should not add the ' .
1128 'edit module button, the link is already available in the Administration block. Themes can choose to display the link ' .
1129 'in the buttons row consistently for all module types.', DEBUG_DEVELOPER);
1131 if (has_capability('moodle/course:manageactivities', context_module::instance($cmid))) {
1132 $string = get_string('updatethis', '', $string);
1134 $url = new moodle_url("$CFG->wwwroot/course/mod.php", array('update' => $cmid, 'return' => true, 'sesskey' => sesskey()));
1135 return $OUTPUT->single_button($url, $string);
1142 * @deprecated use $OUTPUT->navbar() instead
1144 function print_navigation ($navigation, $separator=0, $return=false) {
1145 throw new coding_exception('print_navigation() can not be used any more, please update use $OUTPUT->navbar() instead.');
1149 * @deprecated Please use $PAGE->navabar methods instead.
1151 function build_navigation($extranavlinks, $cm = null) {
1152 throw new coding_exception('build_navigation() can not be used any more, please use $PAGE->navbar methods instead.');
1156 * @deprecated not relevant with global navigation in Moodle 2.x+
1158 function navmenu($course, $cm=NULL, $targetwindow='self') {
1159 throw new coding_exception('navmenu() can not be used any more, it is no longer relevant with global navigation.');
1162 /// CALENDAR MANAGEMENT ////////////////////////////////////////////////////////////////
1166 * @deprecated please use calendar_event::create() instead.
1168 function add_event($event) {
1169 throw new coding_exception('add_event() can not be used any more, please use calendar_event::create() instead.');
1173 * @deprecated please calendar_event->update() instead.
1175 function update_event($event) {
1176 throw new coding_exception('update_event() is removed, please use calendar_event->update() instead.');
1180 * @deprecated please use calendar_event->delete() instead.
1182 function delete_event($id) {
1183 throw new coding_exception('delete_event() can not be used any more, please use '.
1184 'calendar_event->delete() instead.');
1188 * @deprecated please use calendar_event->toggle_visibility(false) instead.
1190 function hide_event($event) {
1191 throw new coding_exception('hide_event() can not be used any more, please use '.
1192 'calendar_event->toggle_visibility(false) instead.');
1196 * @deprecated please use calendar_event->toggle_visibility(true) instead.
1198 function show_event($event) {
1199 throw new coding_exception('show_event() can not be used any more, please use '.
1200 'calendar_event->toggle_visibility(true) instead.');
1204 * @deprecated since Moodle 2.2 use core_text::xxxx() instead.
1207 function textlib_get_instance() {
1208 throw new coding_exception('textlib_get_instance() can not be used any more, please use '.
1209 'core_text::functioname() instead.');
1213 * @deprecated since 2.4
1214 * @see get_section_name()
1215 * @see format_base::get_section_name()
1218 function get_generic_section_name($format, stdClass $section) {
1219 throw new coding_exception('get_generic_section_name() is deprecated. Please use appropriate functionality from class format_base');
1223 * Returns an array of sections for the requested course id
1225 * It is usually not recommended to display the list of sections used
1226 * in course because the course format may have it's own way to do it.
1228 * If you need to just display the name of the section please call:
1229 * get_section_name($course, $section)
1230 * {@link get_section_name()}
1231 * from 2.4 $section may also be just the field course_sections.section
1233 * If you need the list of all sections it is more efficient to get this data by calling
1234 * $modinfo = get_fast_modinfo($courseorid);
1235 * $sections = $modinfo->get_section_info_all()
1236 * {@link get_fast_modinfo()}
1237 * {@link course_modinfo::get_section_info_all()}
1239 * Information about one section (instance of section_info):
1240 * get_fast_modinfo($courseorid)->get_sections_info($section)
1241 * {@link course_modinfo::get_section_info()}
1243 * @deprecated since 2.4
1245 function get_all_sections($courseid) {
1247 throw new coding_exception('get_all_sections() is removed. See phpdocs for this function');
1251 * This function is deprecated, please use {@link course_add_cm_to_section()}
1252 * Note that course_add_cm_to_section() also updates field course_modules.section and
1253 * calls rebuild_course_cache()
1255 * @deprecated since 2.4
1257 function add_mod_to_section($mod, $beforemod = null) {
1258 throw new coding_exception('Function add_mod_to_section() is removed, please use course_add_cm_to_section()');
1262 * Returns a number of useful structures for course displays
1264 * Function get_all_mods() is deprecated in 2.4
1267 * get_all_mods($courseid, $mods, $modnames, $modnamesplural, $modnamesused);
1271 * $mods = get_fast_modinfo($courseorid)->get_cms();
1272 * $modnames = get_module_types_names();
1273 * $modnamesplural = get_module_types_names(true);
1274 * $modnamesused = get_fast_modinfo($courseorid)->get_used_module_names();
1277 * @deprecated since 2.4
1279 function get_all_mods($courseid, &$mods, &$modnames, &$modnamesplural, &$modnamesused) {
1280 throw new coding_exception('Function get_all_mods() is removed. Use get_fast_modinfo() and get_module_types_names() instead. See phpdocs for details');
1284 * Returns course section - creates new if does not exist yet
1286 * This function is deprecated. To create a course section call:
1287 * course_create_sections_if_missing($courseorid, $sections);
1288 * to get the section call:
1289 * get_fast_modinfo($courseorid)->get_section_info($sectionnum);
1291 * @see course_create_sections_if_missing()
1292 * @see get_fast_modinfo()
1293 * @deprecated since 2.4
1295 function get_course_section($section, $courseid) {
1296 throw new coding_exception('Function get_course_section() is removed. Please use course_create_sections_if_missing() and get_fast_modinfo() instead.');
1300 * @deprecated since 2.4
1301 * @see format_weeks::get_section_dates()
1303 function format_weeks_get_section_dates($section, $course) {
1304 throw new coding_exception('Function format_weeks_get_section_dates() is removed. It is not recommended to'.
1305 ' use it outside of format_weeks plugin');
1309 * Deprecated. Instead of:
1310 * list($content, $name) = get_print_section_cm_text($cm, $course);
1312 * $content = $cm->get_formatted_content(array('overflowdiv' => true, 'noclean' => true));
1313 * $name = $cm->get_formatted_name();
1315 * @deprecated since 2.5
1316 * @see cm_info::get_formatted_content()
1317 * @see cm_info::get_formatted_name()
1319 function get_print_section_cm_text(cm_info $cm, $course) {
1320 throw new coding_exception('Function get_print_section_cm_text() is removed. Please use '.
1321 'cm_info::get_formatted_content() and cm_info::get_formatted_name()');
1325 * Deprecated. Please use:
1326 * $courserenderer = $PAGE->get_renderer('core', 'course');
1327 * $output = $courserenderer->course_section_add_cm_control($course, $section, $sectionreturn,
1328 * array('inblock' => $vertical));
1331 * @deprecated since 2.5
1332 * @see core_course_renderer::course_section_add_cm_control()
1334 function print_section_add_menus($course, $section, $modnames = null, $vertical=false, $return=false, $sectionreturn=null) {
1335 throw new coding_exception('Function print_section_add_menus() is removed. Please use course renderer '.
1336 'function course_section_add_cm_control()');
1340 * Deprecated. Please use:
1341 * $courserenderer = $PAGE->get_renderer('core', 'course');
1342 * $actions = course_get_cm_edit_actions($mod, $indent, $section);
1343 * return ' ' . $courserenderer->course_section_cm_edit_actions($actions);
1345 * @deprecated since 2.5
1346 * @see course_get_cm_edit_actions()
1347 * @see core_course_renderer->course_section_cm_edit_actions()
1349 function make_editing_buttons(stdClass $mod, $absolute_ignored = true, $moveselect = true, $indent=-1, $section=null) {
1350 throw new coding_exception('Function make_editing_buttons() is removed, please see PHPdocs in '.
1351 'lib/deprecatedlib.php on how to replace it');
1355 * Deprecated. Please use:
1356 * $courserenderer = $PAGE->get_renderer('core', 'course');
1357 * echo $courserenderer->course_section_cm_list($course, $section, $sectionreturn,
1358 * array('hidecompletion' => $hidecompletion));
1360 * @deprecated since 2.5
1361 * @see core_course_renderer::course_section_cm_list()
1363 function print_section($course, $section, $mods, $modnamesused, $absolute=false, $width="100%", $hidecompletion=false, $sectionreturn=null) {
1364 throw new coding_exception('Function print_section() is removed. Please use course renderer function '.
1365 'course_section_cm_list() instead.');
1369 * @deprecated since 2.5
1371 function print_overview($courses, array $remote_courses=array()) {
1372 throw new coding_exception('Function print_overview() is removed. Use block course_overview to display this information');
1376 * @deprecated since 2.5
1378 function print_recent_activity($course) {
1379 throw new coding_exception('Function print_recent_activity() is removed. It is not recommended to'.
1380 ' use it outside of block_recent_activity');
1384 * @deprecated since 2.5
1386 function delete_course_module($id) {
1387 throw new coding_exception('Function delete_course_module() is removed. Please use course_delete_module() instead.');
1391 * @deprecated since 2.5
1393 function update_category_button($categoryid = 0) {
1394 throw new coding_exception('Function update_category_button() is removed. Pages to view '.
1395 'and edit courses are now separate and no longer depend on editing mode.');
1399 * This function is deprecated! For list of categories use
1400 * coursecat::make_all_categories($requiredcapability, $excludeid, $separator)
1401 * For parents of one particular category use
1402 * coursecat::get($id)->get_parents()
1404 * @deprecated since 2.5
1406 function make_categories_list(&$list, &$parents, $requiredcapability = '',
1407 $excludeid = 0, $category = NULL, $path = "") {
1408 throw new coding_exception('Global function make_categories_list() is removed. Please use '.
1409 'coursecat::make_categories_list() and coursecat::get_parents()');
1413 * @deprecated since 2.5
1415 function category_delete_move($category, $newparentid, $showfeedback=true) {
1416 throw new coding_exception('Function category_delete_move() is removed. Please use coursecat::delete_move() instead.');
1420 * @deprecated since 2.5
1422 function category_delete_full($category, $showfeedback=true) {
1423 throw new coding_exception('Function category_delete_full() is removed. Please use coursecat::delete_full() instead.');
1427 * This function is deprecated. Please use
1428 * $coursecat = coursecat::get($category->id);
1429 * if ($coursecat->can_change_parent($newparentcat->id)) {
1430 * $coursecat->change_parent($newparentcat->id);
1433 * Alternatively you can use
1434 * $coursecat->update(array('parent' => $newparentcat->id));
1436 * @see coursecat::change_parent()
1437 * @see coursecat::update()
1438 * @deprecated since 2.5
1440 function move_category($category, $newparentcat) {
1441 throw new coding_exception('Function move_category() is removed. Please use coursecat::change_parent() instead.');
1445 * This function is deprecated. Please use
1446 * coursecat::get($category->id)->hide();
1448 * @see coursecat::hide()
1449 * @deprecated since 2.5
1451 function course_category_hide($category) {
1452 throw new coding_exception('Function course_category_hide() is removed. Please use coursecat::hide() instead.');
1456 * This function is deprecated. Please use
1457 * coursecat::get($category->id)->show();
1459 * @see coursecat::show()
1460 * @deprecated since 2.5
1462 function course_category_show($category) {
1463 throw new coding_exception('Function course_category_show() is removed. Please use coursecat::show() instead.');
1467 * This function is deprecated.
1468 * To get the category with the specified it please use:
1469 * coursecat::get($catid, IGNORE_MISSING);
1471 * coursecat::get($catid, MUST_EXIST);
1473 * To get the first available category please use
1474 * coursecat::get_default();
1476 * @deprecated since 2.5
1478 function get_course_category($catid=0) {
1479 throw new coding_exception('Function get_course_category() is removed. Please use coursecat::get(), see phpdocs for more details');
1483 * This function is deprecated. It is replaced with the method create() in class coursecat.
1484 * {@link coursecat::create()} also verifies the data, fixes sortorder and logs the action
1486 * @deprecated since 2.5
1488 function create_course_category($category) {
1489 throw new coding_exception('Function create_course_category() is removed. Please use coursecat::create(), see phpdocs for more details');
1493 * This function is deprecated.
1495 * To get visible children categories of the given category use:
1496 * coursecat::get($categoryid)->get_children();
1497 * This function will return the array or coursecat objects, on each of them
1498 * you can call get_children() again
1500 * @see coursecat::get()
1501 * @see coursecat::get_children()
1503 * @deprecated since 2.5
1505 function get_all_subcategories($catid) {
1506 throw new coding_exception('Function get_all_subcategories() is removed. Please use appropriate methods() of coursecat
1507 class. See phpdocs for more details');
1511 * This function is deprecated. Please use functions in class coursecat:
1512 * - coursecat::get($parentid)->has_children()
1513 * tells if the category has children (visible or not to the current user)
1515 * - coursecat::get($parentid)->get_children()
1516 * returns an array of coursecat objects, each of them represents a children category visible
1517 * to the current user (i.e. visible=1 or user has capability to view hidden categories)
1519 * - coursecat::get($parentid)->get_children_count()
1520 * returns number of children categories visible to the current user
1522 * - coursecat::count_all()
1523 * returns total count of all categories in the system (both visible and not)
1525 * - coursecat::get_default()
1526 * returns the first category (usually to be used if count_all() == 1)
1528 * @deprecated since 2.5
1530 function get_child_categories($parentid) {
1531 throw new coding_exception('Function get_child_categories() is removed. Use coursecat::get_children() or see phpdocs for
1537 * @deprecated since 2.5
1539 * This function is deprecated. Use appropriate functions from class coursecat.
1542 * coursecat::get($categoryid)->get_children()
1543 * - returns all children of the specified category as instances of class
1544 * coursecat, which means on each of them method get_children() can be called again.
1545 * Only categories visible to the current user are returned.
1547 * coursecat::get(0)->get_children()
1548 * - returns all top-level categories visible to the current user.
1550 * Sort fields can be specified, see phpdocs to {@link coursecat::get_children()}
1552 * coursecat::make_categories_list()
1553 * - returns an array of all categories id/names in the system.
1554 * Also only returns categories visible to current user and can additionally be
1555 * filetered by capability, see phpdocs to {@link coursecat::make_categories_list()}
1557 * make_categories_options()
1558 * - Returns full course categories tree to be used in html_writer::select()
1560 * Also see functions {@link coursecat::get_children_count()}, {@link coursecat::count_all()},
1561 * {@link coursecat::get_default()}
1563 function get_categories($parent='none', $sort=NULL, $shallow=true) {
1564 throw new coding_exception('Function get_categories() is removed. Please use coursecat::get_children() or see phpdocs for other alternatives');
1568 * This function is deprecated, please use course renderer:
1569 * $renderer = $PAGE->get_renderer('core', 'course');
1570 * echo $renderer->course_search_form($value, $format);
1572 * @deprecated since 2.5
1574 function print_course_search($value="", $return=false, $format="plain") {
1575 throw new coding_exception('Function print_course_search() is removed, please use course renderer');
1579 * This function is deprecated, please use:
1580 * $renderer = $PAGE->get_renderer('core', 'course');
1581 * echo $renderer->frontpage_my_courses()
1583 * @deprecated since 2.5
1585 function print_my_moodle() {
1586 throw new coding_exception('Function print_my_moodle() is removed, please use course renderer function frontpage_my_courses()');
1590 * This function is deprecated, it is replaced with protected function
1591 * {@link core_course_renderer::frontpage_remote_course()}
1592 * It is only used from function {@link core_course_renderer::frontpage_my_courses()}
1594 * @deprecated since 2.5
1596 function print_remote_course($course, $width="100%") {
1597 throw new coding_exception('Function print_remote_course() is removed, please use course renderer');
1601 * This function is deprecated, it is replaced with protected function
1602 * {@link core_course_renderer::frontpage_remote_host()}
1603 * It is only used from function {@link core_course_renderer::frontpage_my_courses()}
1605 * @deprecated since 2.5
1607 function print_remote_host($host, $width="100%") {
1608 throw new coding_exception('Function print_remote_host() is removed, please use course renderer');
1612 * @deprecated since 2.5
1614 * See http://docs.moodle.org/dev/Courses_lists_upgrade_to_2.5
1616 function print_whole_category_list($category=NULL, $displaylist=NULL, $parentslist=NULL, $depth=-1, $showcourses = true, $categorycourses=NULL) {
1617 throw new coding_exception('Function print_whole_category_list() is removed, please use course renderer');
1621 * @deprecated since 2.5
1623 function print_category_info($category, $depth = 0, $showcourses = false, array $courses = null) {
1624 throw new coding_exception('Function print_category_info() is removed, please use course renderer');
1628 * @deprecated since 2.5
1630 * This function is not used any more in moodle core and course renderer does not have render function for it.
1631 * Combo list on the front page is displayed as:
1632 * $renderer = $PAGE->get_renderer('core', 'course');
1633 * echo $renderer->frontpage_combo_list()
1635 * The new class {@link coursecat} stores the information about course category tree
1636 * To get children categories use:
1637 * coursecat::get($id)->get_children()
1638 * To get list of courses use:
1639 * coursecat::get($id)->get_courses()
1641 * See http://docs.moodle.org/dev/Courses_lists_upgrade_to_2.5
1643 function get_course_category_tree($id = 0, $depth = 0) {
1644 throw new coding_exception('Function get_course_category_tree() is removed, please use course renderer or coursecat class,
1645 see function phpdocs for more info');
1649 * @deprecated since 2.5
1651 * To print a generic list of courses use:
1652 * $renderer = $PAGE->get_renderer('core', 'course');
1653 * echo $renderer->courses_list($courses);
1655 * To print list of all courses:
1656 * $renderer = $PAGE->get_renderer('core', 'course');
1657 * echo $renderer->frontpage_available_courses();
1659 * To print list of courses inside category:
1660 * $renderer = $PAGE->get_renderer('core', 'course');
1661 * echo $renderer->course_category($category); // this will also print subcategories
1663 function print_courses($category) {
1664 throw new coding_exception('Function print_courses() is removed, please use course renderer');
1668 * @deprecated since 2.5
1670 * Please use course renderer to display a course information box.
1671 * $renderer = $PAGE->get_renderer('core', 'course');
1672 * echo $renderer->courses_list($courses); // will print list of courses
1673 * echo $renderer->course_info_box($course); // will print one course wrapped in div.generalbox
1675 function print_course($course, $highlightterms = '') {
1676 throw new coding_exception('Function print_course() is removed, please use course renderer');
1680 * @deprecated since 2.5
1682 * This function is not used any more in moodle core and course renderer does not have render function for it.
1683 * Combo list on the front page is displayed as:
1684 * $renderer = $PAGE->get_renderer('core', 'course');
1685 * echo $renderer->frontpage_combo_list()
1687 * The new class {@link coursecat} stores the information about course category tree
1688 * To get children categories use:
1689 * coursecat::get($id)->get_children()
1690 * To get list of courses use:
1691 * coursecat::get($id)->get_courses()
1693 function get_category_courses_array($categoryid = 0) {
1694 throw new coding_exception('Function get_category_courses_array() is removed, please use methods of coursecat class');
1698 * @deprecated since 2.5
1700 function get_category_courses_array_recursively(array &$flattened, $category) {
1701 throw new coding_exception('Function get_category_courses_array_recursively() is removed, please use methods of coursecat class', DEBUG_DEVELOPER);
1705 * @deprecated since Moodle 2.5 MDL-27814 - please do not use this function any more.
1707 function blog_get_context_url($context=null) {
1708 throw new coding_exception('Function blog_get_context_url() is removed, getting params from context is not reliable for blogs.');
1712 * @deprecated since 2.5
1714 * To get list of all courses with course contacts ('managers') use
1715 * coursecat::get(0)->get_courses(array('recursive' => true, 'coursecontacts' => true));
1717 * To get list of courses inside particular category use
1718 * coursecat::get($id)->get_courses(array('coursecontacts' => true));
1720 * Additionally you can specify sort order, offset and maximum number of courses,
1721 * see {@link coursecat::get_courses()}
1723 function get_courses_wmanagers($categoryid=0, $sort="c.sortorder ASC", $fields=array()) {
1724 throw new coding_exception('Function get_courses_wmanagers() is removed, please use coursecat::get_courses()');
1728 * @deprecated since 2.5
1730 function convert_tree_to_html($tree, $row=0) {
1731 throw new coding_exception('Function convert_tree_to_html() is removed. Consider using class tabtree and core_renderer::render_tabtree()');
1735 * @deprecated since 2.5
1737 function convert_tabrows_to_tree($tabrows, $selected, $inactive, $activated) {
1738 throw new coding_exception('Function convert_tabrows_to_tree() is removed. Consider using class tabtree');
1742 * @deprecated since 2.5 - do not use, the textrotate.js will work it out automatically
1744 function can_use_rotated_text() {
1745 debugging('can_use_rotated_text() is removed. JS feature detection is used automatically.');
1749 * @deprecated since Moodle 2.2 MDL-35009 - please do not use this function any more.
1750 * @see context::instance_by_id($id)
1752 function get_context_instance_by_id($id, $strictness = IGNORE_MISSING) {
1753 throw new coding_exception('get_context_instance_by_id() is now removed, please use context::instance_by_id($id) instead.');
1757 * Returns system context or null if can not be created yet.
1759 * @see context_system::instance()
1760 * @deprecated since 2.2
1761 * @param bool $cache use caching
1762 * @return context system context (null if context table not created yet)
1764 function get_system_context($cache = true) {
1765 debugging('get_system_context() is deprecated, please use context_system::instance() instead.', DEBUG_DEVELOPER);
1766 return context_system::instance(0, IGNORE_MISSING, $cache);
1770 * @see context::get_parent_context_ids()
1771 * @deprecated since 2.2, use $context->get_parent_context_ids() instead
1773 function get_parent_contexts(context $context, $includeself = false) {
1774 throw new coding_exception('get_parent_contexts() is removed, please use $context->get_parent_context_ids() instead.');
1778 * @deprecated since Moodle 2.2
1779 * @see context::get_parent_context()
1781 function get_parent_contextid(context $context) {
1782 throw new coding_exception('get_parent_contextid() is removed, please use $context->get_parent_context() instead.');
1786 * @see context::get_child_contexts()
1787 * @deprecated since 2.2
1789 function get_child_contexts(context $context) {
1790 throw new coding_exception('get_child_contexts() is removed, please use $context->get_child_contexts() instead.');
1794 * @see context_helper::create_instances()
1795 * @deprecated since 2.2
1797 function create_contexts($contextlevel = null, $buildpaths = true) {
1798 throw new coding_exception('create_contexts() is removed, please use context_helper::create_instances() instead.');
1802 * @see context_helper::cleanup_instances()
1803 * @deprecated since 2.2
1805 function cleanup_contexts() {
1806 throw new coding_exception('cleanup_contexts() is removed, please use context_helper::cleanup_instances() instead.');
1810 * Populate context.path and context.depth where missing.
1812 * @deprecated since 2.2
1814 function build_context_path($force = false) {
1815 throw new coding_exception('build_context_path() is removed, please use context_helper::build_all_paths() instead.');
1819 * @deprecated since 2.2
1821 function rebuild_contexts(array $fixcontexts) {
1822 throw new coding_exception('rebuild_contexts() is removed, please use $context->reset_paths(true) instead.');
1826 * @deprecated since Moodle 2.2
1827 * @see context_helper::preload_course()
1829 function preload_course_contexts($courseid) {
1830 throw new coding_exception('preload_course_contexts() is removed, please use context_helper::preload_course() instead.');
1834 * @deprecated since Moodle 2.2
1835 * @see context::update_moved()
1837 function context_moved(context $context, context $newparent) {
1838 throw new coding_exception('context_moved() is removed, please use context::update_moved() instead.');
1842 * @see context::get_capabilities()
1843 * @deprecated since 2.2
1845 function fetch_context_capabilities(context $context) {
1846 throw new coding_exception('fetch_context_capabilities() is removed, please use $context->get_capabilities() instead.');
1850 * @deprecated since 2.2
1851 * @see context_helper::preload_from_record()
1853 function context_instance_preload(stdClass $rec) {
1854 throw new coding_exception('context_instance_preload() is removed, please use context_helper::preload_from_record() instead.');
1858 * Returns context level name
1860 * @deprecated since 2.2
1861 * @see context_helper::get_level_name()
1863 function get_contextlevel_name($contextlevel) {
1864 throw new coding_exception('get_contextlevel_name() is removed, please use context_helper::get_level_name() instead.');
1868 * @deprecated since 2.2
1869 * @see context::get_context_name()
1871 function print_context_name(context $context, $withprefix = true, $short = false) {
1872 throw new coding_exception('print_context_name() is removed, please use $context->get_context_name() instead.');
1876 * @deprecated since 2.2, use $context->mark_dirty() instead
1877 * @see context::mark_dirty()
1879 function mark_context_dirty($path) {
1880 throw new coding_exception('mark_context_dirty() is removed, please use $context->mark_dirty() instead.');
1884 * @deprecated since Moodle 2.2
1885 * @see context_helper::delete_instance() or context::delete_content()
1887 function delete_context($contextlevel, $instanceid, $deleterecord = true) {
1888 if ($deleterecord) {
1889 throw new coding_exception('delete_context() is removed, please use context_helper::delete_instance() instead.');
1891 throw new coding_exception('delete_context() is removed, please use $context->delete_content() instead.');
1896 * @deprecated since 2.2
1897 * @see context::get_url()
1899 function get_context_url(context $context) {
1900 throw new coding_exception('get_context_url() is removed, please use $context->get_url() instead.');
1904 * @deprecated since 2.2
1905 * @see context::get_course_context()
1907 function get_course_context(context $context) {
1908 throw new coding_exception('get_course_context() is removed, please use $context->get_course_context(true) instead.');
1912 * @deprecated since 2.2
1913 * @see enrol_get_users_courses()
1915 function get_user_courses_bycap($userid, $cap, $accessdata_ignored, $doanything_ignored, $sort = 'c.sortorder ASC', $fields = null, $limit_ignored = 0) {
1917 throw new coding_exception('get_user_courses_bycap() is removed, please use enrol_get_users_courses() instead.');
1921 * @deprecated since Moodle 2.2
1923 function get_role_context_caps($roleid, context $context) {
1924 throw new coding_exception('get_role_context_caps() is removed, it is really slow. Don\'t use it.');
1928 * @see context::get_course_context()
1929 * @deprecated since 2.2
1931 function get_courseid_from_context(context $context) {
1932 throw new coding_exception('get_courseid_from_context() is removed, please use $context->get_course_context(false) instead.');
1936 * If you are using this methid, you should have something like this:
1938 * list($ctxselect, $ctxjoin) = context_instance_preload_sql('c.id', CONTEXT_COURSE, 'ctx');
1940 * To prevent the use of this deprecated function, replace the line above with something similar to this:
1942 * $ctxselect = ', ' . context_helper::get_preload_record_columns_sql('ctx');
1944 * $ctxjoin = "LEFT JOIN {context} ctx ON (ctx.instanceid = c.id AND ctx.contextlevel = :contextlevel)";
1946 * $params = array('contextlevel' => CONTEXT_COURSE);
1948 * @see context_helper:;get_preload_record_columns_sql()
1949 * @deprecated since 2.2
1951 function context_instance_preload_sql($joinon, $contextlevel, $tablealias) {
1952 throw new coding_exception('context_instance_preload_sql() is removed, please use context_helper::get_preload_record_columns_sql() instead.');
1956 * @deprecated since 2.2
1957 * @see context::get_parent_context_ids()
1959 function get_related_contexts_string(context $context) {
1960 throw new coding_exception('get_related_contexts_string() is removed, please use $context->get_parent_context_ids(true) instead.');
1964 * @deprecated since 2.6
1965 * @see core_component::get_plugin_list_with_file()
1967 function get_plugin_list_with_file($plugintype, $file, $include = false) {
1968 throw new coding_exception('get_plugin_list_with_file() is removed, please use core_component::get_plugin_list_with_file() instead.');
1972 * @deprecated since 2.6
1974 function check_browser_operating_system($brand) {
1975 throw new coding_exception('check_browser_operating_system is removed, please update your code to use core_useragent instead.');
1979 * @deprecated since 2.6
1981 function check_browser_version($brand, $version = null) {
1982 throw new coding_exception('check_browser_version is removed, please update your code to use core_useragent instead.');
1986 * @deprecated since 2.6
1988 function get_device_type() {
1989 throw new coding_exception('get_device_type is removed, please update your code to use core_useragent instead.');
1993 * @deprecated since 2.6
1995 function get_device_type_list($incusertypes = true) {
1996 throw new coding_exception('get_device_type_list is removed, please update your code to use core_useragent instead.');
2000 * @deprecated since 2.6
2002 function get_selected_theme_for_device_type($devicetype = null) {
2003 throw new coding_exception('get_selected_theme_for_device_type is removed, please update your code to use core_useragent instead.');
2007 * @deprecated since 2.6
2009 function get_device_cfg_var_name($devicetype = null) {
2010 throw new coding_exception('get_device_cfg_var_name is removed, please update your code to use core_useragent instead.');
2014 * @deprecated since 2.6
2016 function set_user_device_type($newdevice) {
2017 throw new coding_exception('set_user_device_type is removed, please update your code to use core_useragent instead.');
2021 * @deprecated since 2.6
2023 function get_user_device_type() {
2024 throw new coding_exception('get_user_device_type is removed, please update your code to use core_useragent instead.');
2028 * @deprecated since 2.6
2030 function get_browser_version_classes() {
2031 throw new coding_exception('get_browser_version_classes is removed, please update your code to use core_useragent instead.');
2035 * @deprecated since Moodle 2.6
2036 * @see core_user::get_support_user()
2038 function generate_email_supportuser() {
2039 throw new coding_exception('generate_email_supportuser is removed, please use core_user::get_support_user');
2043 * @deprecated since Moodle 2.6
2045 function badges_get_issued_badge_info($hash) {
2046 throw new coding_exception('Function badges_get_issued_badge_info() is removed. Please use core_badges_assertion class and methods to generate badge assertion.');
2050 * @deprecated since 2.6
2052 function can_use_html_editor() {
2053 throw new coding_exception('can_use_html_editor is removed, please update your code to assume it returns true.');
2058 * @deprecated since Moodle 2.7, use {@link user_count_login_failures()} instead.
2060 function count_login_failures($mode, $username, $lastlogin) {
2061 throw new coding_exception('count_login_failures() can not be used any more, please use user_count_login_failures().');
2065 * @deprecated since 2.7 MDL-33099/MDL-44088 - please do not use this function any more.
2067 function ajaxenabled(array $browsers = null) {
2068 throw new coding_exception('ajaxenabled() can not be used anymore. Update your code to work with JS at all times.');
2072 * @deprecated Since Moodle 2.7 MDL-44070
2074 function coursemodule_visible_for_user($cm, $userid=0) {
2075 throw new coding_exception('coursemodule_visible_for_user() can not be used any more,
2076 please use \core_availability\info_module::is_user_visible()');
2080 * @deprecated since Moodle 2.8 MDL-36014, MDL-35618 this functionality is removed
2082 function enrol_cohort_get_cohorts(course_enrolment_manager $manager) {
2083 throw new coding_exception('Function enrol_cohort_get_cohorts() is removed, use enrol_cohort_search_cohorts() or '.
2084 'cohort_get_available_cohorts() instead');
2088 * This function is deprecated, use {@link cohort_can_view_cohort()} instead since it also
2089 * takes into account current context
2091 * @deprecated since Moodle 2.8 MDL-36014 please use cohort_can_view_cohort()
2093 function enrol_cohort_can_view_cohort($cohortid) {
2094 throw new coding_exception('Function enrol_cohort_can_view_cohort() is removed, use cohort_can_view_cohort() instead');
2098 * It is advisable to use {@link cohort_get_available_cohorts()} instead.
2100 * @deprecated since Moodle 2.8 MDL-36014 use cohort_get_available_cohorts() instead
2102 function cohort_get_visible_list($course, $onlyenrolled=true) {
2103 throw new coding_exception('Function cohort_get_visible_list() is removed. Please use function cohort_get_available_cohorts() ".
2104 "that correctly checks capabilities.');
2108 * @deprecated since Moodle 2.8 MDL-35618 this functionality is removed
2110 function enrol_cohort_enrol_all_users(course_enrolment_manager $manager, $cohortid, $roleid) {
2111 throw new coding_exception('enrol_cohort_enrol_all_users() is removed. This functionality is moved to enrol_manual.');
2115 * @deprecated since Moodle 2.8 MDL-35618 this functionality is removed
2117 function enrol_cohort_search_cohorts(course_enrolment_manager $manager, $offset = 0, $limit = 25, $search = '') {
2118 throw new coding_exception('enrol_cohort_search_cohorts() is removed. This functionality is moved to enrol_manual.');
2121 /* === Apis deprecated in since Moodle 2.9 === */
2124 * Is $USER one of the supplied users?
2126 * $user2 will be null if viewing a user's recent conversations
2128 * @deprecated since Moodle 2.9 MDL-49371 - please do not use this function any more.
2130 function message_current_user_is_involved($user1, $user2) {
2131 throw new coding_exception('message_current_user_is_involved() can not be used any more.');
2135 * Print badges on user profile page.
2137 * @deprecated since Moodle 2.9 MDL-45898 - please do not use this function any more.
2139 function profile_display_badges($userid, $courseid = 0) {
2140 throw new coding_exception('profile_display_badges() can not be used any more.');
2144 * Adds user preferences elements to user edit form.
2146 * @deprecated since Moodle 2.9 MDL-45774 - Please do not use this function any more.
2148 function useredit_shared_definition_preferences($user, &$mform, $editoroptions = null, $filemanageroptions = null) {
2149 throw new coding_exception('useredit_shared_definition_preferences() can not be used any more.');
2154 * Convert region timezone to php supported timezone
2156 * @deprecated since Moodle 2.9
2158 function calendar_normalize_tz($tz) {
2159 throw new coding_exception('calendar_normalize_tz() can not be used any more, please use core_date::normalise_timezone() instead.');
2163 * Returns a float which represents the user's timezone difference from GMT in hours
2164 * Checks various settings and picks the most dominant of those which have a value
2165 * @deprecated since Moodle 2.9
2167 function get_user_timezone_offset($tz = 99) {
2168 throw new coding_exception('get_user_timezone_offset() can not be used any more, please use standard PHP DateTimeZone class instead');
2173 * Returns an int which represents the systems's timezone difference from GMT in seconds
2174 * @deprecated since Moodle 2.9
2176 function get_timezone_offset($tz) {
2177 throw new coding_exception('get_timezone_offset() can not be used any more, please use standard PHP DateTimeZone class instead');
2181 * Returns a list of timezones in the current language.
2182 * @deprecated since Moodle 2.9
2184 function get_list_of_timezones() {
2185 throw new coding_exception('get_list_of_timezones() can not be used any more, please use core_date::get_list_of_timezones() instead');
2189 * Previous internal API, it was not supposed to be used anywhere.
2190 * @deprecated since Moodle 2.9
2192 function update_timezone_records($timezones) {
2193 throw new coding_exception('update_timezone_records() can not be used any more, please use standard PHP DateTime class instead');
2197 * Previous internal API, it was not supposed to be used anywhere.
2198 * @deprecated since Moodle 2.9
2200 function calculate_user_dst_table($fromyear = null, $toyear = null, $strtimezone = null) {
2201 throw new coding_exception('calculate_user_dst_table() can not be used any more, please use standard PHP DateTime class instead');
2205 * Previous internal API, it was not supposed to be used anywhere.
2206 * @deprecated since Moodle 2.9
2208 function dst_changes_for_year($year, $timezone) {
2209 throw new coding_exception('dst_changes_for_year() can not be used any more, please use standard DateTime class instead');
2213 * Previous internal API, it was not supposed to be used anywhere.
2214 * @deprecated since Moodle 2.9
2216 function get_timezone_record($timezonename) {
2217 throw new coding_exception('get_timezone_record() can not be used any more, please use standard PHP DateTime class instead');
2220 /* === Apis deprecated since Moodle 3.0 === */
2222 * Returns the URL of the HTTP_REFERER, less the querystring portion if required.
2224 * @deprecated since Moodle 3.0 MDL-49360 - please do not use this function any more.
2225 * @todo MDL-50265 Remove this function in Moodle 3.4.
2226 * @param boolean $stripquery if true, also removes the query part of the url.
2227 * @return string The resulting referer or empty string.
2229 function get_referer($stripquery = true) {
2230 debugging('get_referer() is deprecated. Please use get_local_referer() instead.', DEBUG_DEVELOPER);
2231 if (isset($_SERVER['HTTP_REFERER'])) {
2233 return strip_querystring($_SERVER['HTTP_REFERER']);
2235 return $_SERVER['HTTP_REFERER'];
2243 * Checks if current user is a web crawler.
2245 * This list can not be made complete, this is not a security
2246 * restriction, we make the list only to help these sites
2247 * especially when automatic guest login is disabled.
2249 * If admin needs security they should enable forcelogin
2250 * and disable guest access!!
2253 * @deprecated since Moodle 3.0 use \core_useragent::is_web_crawler instead.
2255 function is_web_crawler() {
2256 debugging('is_web_crawler() has been deprecated, please use core_useragent::is_web_crawler() instead.', DEBUG_DEVELOPER);
2257 return core_useragent::is_web_crawler();
2261 * Update user's course completion statuses
2263 * First update all criteria completions, then aggregate all criteria completions
2264 * and update overall course completions.
2266 * @deprecated since Moodle 3.0 MDL-50287 - please do not use this function any more.
2267 * @todo Remove this function in Moodle 3.2 MDL-51226.
2269 function completion_cron() {
2271 require_once($CFG->dirroot.'/completion/cron.php');
2273 debugging('completion_cron() is deprecated. Functionality has been moved to scheduled tasks.', DEBUG_DEVELOPER);
2274 completion_cron_mark_started();
2276 completion_cron_criteria();
2278 completion_cron_completions();
2282 * Returns an ordered array of tags associated with visible courses
2283 * (boosted replacement of get_all_tags() allowing association with user and tagtype).
2285 * @deprecated since 3.0
2288 * @param int $courseid A course id. Passing 0 will return all distinct tags for all visible courses
2289 * @param int $userid (optional) the user id, a default of 0 will return all users tags for the course
2290 * @param string $tagtype (optional) The type of tag, empty string returns all types. Currently (Moodle 2.2) there are two
2291 * types of tags which are used within Moodle, they are 'official' and 'default'.
2292 * @param int $numtags (optional) number of tags to display, default of 80 is set in the block, 0 returns all
2293 * @param string $unused (optional) was selected sorting, moved to tag_print_cloud()
2296 function coursetag_get_tags($courseid, $userid=0, $tagtype='', $numtags=0, $unused = '') {
2297 debugging('Function coursetag_get_tags() is deprecated. Userid is no longer used for tagging courses.', DEBUG_DEVELOPER);
2301 // get visible course ids
2302 $courselist = array();
2303 if ($courseid === 0) {
2304 if ($courses = $DB->get_records_select('course', 'visible=1 AND category>0', null, '', 'id')) {
2305 foreach ($courses as $key => $value) {
2306 $courselist[] = $key;
2311 // get tags from the db ordered by highest count first
2313 $sql = "SELECT id as tkey, name, id, isstandard, rawname, f.timemodified, flag, count
2315 (SELECT tagid, MAX(timemodified) as timemodified, COUNT(id) as count
2317 WHERE itemtype = 'course' ";
2319 if ($courseid > 0) {
2320 $sql .= " AND itemid = :courseid ";
2321 $params['courseid'] = $courseid;
2323 if (!empty($courselist)) {
2324 list($usql, $uparams) = $DB->get_in_or_equal($courselist, SQL_PARAMS_NAMED);
2325 $sql .= "AND itemid $usql ";
2326 $params = $params + $uparams;
2331 $sql .= " AND tiuserid = :userid ";
2332 $params['userid'] = $userid;
2335 $sql .= " GROUP BY tagid) f
2336 WHERE t.id = f.tagid ";
2337 if ($tagtype != '') {
2338 $sql .= "AND isstandard = :isstandard ";
2339 $params['isstandard'] = ($tagtype === 'official') ? 1 : 0;
2341 $sql .= "ORDER BY count DESC, name ASC";
2343 // limit the number of tags for output
2344 if ($numtags == 0) {
2345 $tags = $DB->get_records_sql($sql, $params);
2347 $tags = $DB->get_records_sql($sql, $params, 0, $numtags);
2350 // prepare the return
2353 // avoid print_tag_cloud()'s ksort upsetting ordering by setting the key here
2354 foreach ($tags as $value) {
2364 * Returns an ordered array of tags
2365 * (replaces popular_tags_count() allowing sorting).
2367 * @deprecated since 3.0
2370 * @param string $unused (optional) was selected sorting - moved to tag_print_cloud()
2371 * @param int $numtags (optional) number of tags to display, default of 20 is set in the block, 0 returns all
2374 function coursetag_get_all_tags($unused='', $numtags=0) {
2375 debugging('Function coursetag_get_all_tag() is deprecated. Userid is no longer used for tagging courses.', DEBUG_DEVELOPER);
2379 // note that this selects all tags except for courses that are not visible
2380 $sql = "SELECT id, name, isstandard, rawname, f.timemodified, flag, count
2382 (SELECT tagid, MAX(timemodified) as timemodified, COUNT(id) as count
2383 FROM {tag_instance} WHERE tagid NOT IN
2384 (SELECT tagid FROM {tag_instance} ti, {course} c
2386 AND ti.itemtype = 'course'
2387 AND ti.itemid = c.id)
2389 WHERE t.id = f.tagid
2390 ORDER BY count DESC, name ASC";
2391 if ($numtags == 0) {
2392 $tags = $DB->get_records_sql($sql);
2394 $tags = $DB->get_records_sql($sql, null, 0, $numtags);
2399 foreach ($tags as $value) {
2408 * Returns javascript for use in tags block and supporting pages
2410 * @deprecated since 3.0
2415 function coursetag_get_jscript() {
2416 debugging('Function coursetag_get_jscript() is deprecated and obsolete.', DEBUG_DEVELOPER);
2421 * Returns javascript to create the links in the tag block footer.
2423 * @deprecated since 3.0
2426 * @param string $elementid the element to attach the footer to
2427 * @param array $coursetagslinks links arrays each consisting of 'title', 'onclick' and 'text' elements
2428 * @return string always returns a blank string
2430 function coursetag_get_jscript_links($elementid, $coursetagslinks) {
2431 debugging('Function coursetag_get_jscript_links() is deprecated and obsolete.', DEBUG_DEVELOPER);
2436 * Returns all tags created by a user for a course
2438 * @deprecated since 3.0
2441 * @param int $courseid tags are returned for the course that has this courseid
2442 * @param int $userid return tags which were created by this user
2444 function coursetag_get_records($courseid, $userid) {
2445 debugging('Function coursetag_get_records() is deprecated. Userid is no longer used for tagging courses.', DEBUG_DEVELOPER);
2449 $sql = "SELECT t.id, name, rawname
2450 FROM {tag} t, {tag_instance} ti
2451 WHERE t.id = ti.tagid
2452 AND ti.tiuserid = :userid
2453 AND ti.itemid = :courseid
2456 return $DB->get_records_sql($sql, array('userid'=>$userid, 'courseid'=>$courseid));
2460 * Stores a tag for a course for a user
2462 * @deprecated since 3.0
2465 * @param array $tags simple array of keywords to be stored
2466 * @param int $courseid the id of the course we wish to store a tag for
2467 * @param int $userid the id of the user we wish to store a tag for
2468 * @param string $tagtype official or default only
2469 * @param string $myurl (optional) for logging creation of course tags
2471 function coursetag_store_keywords($tags, $courseid, $userid=0, $tagtype='official', $myurl='') {
2472 debugging('Function coursetag_store_keywords() is deprecated. Userid is no longer used for tagging courses.', DEBUG_DEVELOPER);
2476 if (is_array($tags) and !empty($tags)) {
2477 if ($tagtype === 'official') {
2478 $tagcoll = core_tag_area::get_collection('core', 'course');
2479 // We don't normally need to create tags, they are created automatically when added to items. but we do here because we want them to be official.
2480 core_tag_tag::create_if_missing($tagcoll, $tags, true);
2482 foreach ($tags as $tag) {
2484 if (strlen($tag) > 0) {
2485 core_tag_tag::add_item_tag('core', 'course', $courseid, context_course::instance($courseid), $tag, $userid);
2493 * Deletes a personal tag for a user for a course.
2495 * @deprecated since 3.0
2498 * @param int $tagid the tag we wish to delete
2499 * @param int $userid the user that the tag is associated with
2500 * @param int $courseid the course that the tag is associated with
2502 function coursetag_delete_keyword($tagid, $userid, $courseid) {
2503 debugging('Function coursetag_delete_keyword() is deprecated. Userid is no longer used for tagging courses.', DEBUG_DEVELOPER);
2505 $tag = core_tag_tag::get($tagid);
2506 core_tag_tag::remove_item_tag('core', 'course', $courseid, $tag->rawname, $userid);
2510 * Get courses tagged with a tag
2512 * @deprecated since 3.0
2516 * @return array of course objects
2518 function coursetag_get_tagged_courses($tagid) {
2519 debugging('Function coursetag_get_tagged_courses() is deprecated. Userid is no longer used for tagging courses.', DEBUG_DEVELOPER);
2525 $ctxselect = context_helper::get_preload_record_columns_sql('ctx');
2527 $sql = "SELECT c.*, $ctxselect
2529 JOIN {tag_instance} t ON t.itemid = c.id
2530 JOIN {context} ctx ON ctx.instanceid = c.id
2531 WHERE t.tagid = :tagid AND
2532 t.itemtype = 'course' AND
2533 ctx.contextlevel = :contextlevel
2534 ORDER BY c.sortorder ASC";
2535 $params = array('tagid' => $tagid, 'contextlevel' => CONTEXT_COURSE);
2536 $rs = $DB->get_recordset_sql($sql, $params);
2537 foreach ($rs as $course) {
2538 context_helper::preload_from_record($course);
2539 if ($course->visible == 1 || has_capability('moodle/course:viewhiddencourses', context_course::instance($course->id))) {
2540 $courses[$course->id] = $course;
2547 * Course tagging function used only during the deletion of a course (called by lib/moodlelib.php) to clean up associated tags
2550 * @deprecated since 3.0
2551 * @param int $courseid the course we wish to delete tag instances from
2552 * @param bool $showfeedback if we should output a notification of the delete to the end user
2554 function coursetag_delete_course_tags($courseid, $showfeedback=false) {
2555 debugging('Function coursetag_delete_course_tags() is deprecated. Use core_tag_tag::remove_all_item_tags().', DEBUG_DEVELOPER);
2558 core_tag_tag::remove_all_item_tags('core', 'course', $courseid);
2560 if ($showfeedback) {
2561 echo $OUTPUT->notification(get_string('deletedcoursetags', 'tag'), 'notifysuccess');
2566 * Set the type of a tag. At this time (version 2.2) the possible values are 'default' or 'official'. Official tags will be
2567 * displayed separately "at tagging time" (while selecting the tags to apply to a record).
2570 * @deprecated since 3.1
2571 * @param string $tagid tagid to modify
2572 * @param string $type either 'default' or 'official'
2573 * @return bool true on success, false otherwise
2575 function tag_type_set($tagid, $type) {
2576 debugging('Function tag_type_set() is deprecated and can be replaced with use core_tag_tag::get($tagid)->update().', DEBUG_DEVELOPER);
2577 if ($tag = core_tag_tag::get($tagid, '*')) {
2578 return $tag->update(array('isstandard' => ($type === 'official') ? 1 : 0));
2584 * Set the description of a tag
2587 * @deprecated since 3.1
2588 * @param int $tagid the id of the tag
2589 * @param string $description the tag's description string to be set
2590 * @param int $descriptionformat the moodle text format of the description
2591 * {@link http://docs.moodle.org/dev/Text_formats_2.0#Database_structure}
2592 * @return bool true on success, false otherwise
2594 function tag_description_set($tagid, $description, $descriptionformat) {
2595 debugging('Function tag_type_set() is deprecated and can be replaced with core_tag_tag::get($tagid)->update().', DEBUG_DEVELOPER);
2596 if ($tag = core_tag_tag::get($tagid, '*')) {
2597 return $tag->update(array('description' => $description, 'descriptionformat' => $descriptionformat));
2603 * Get the array of db record of tags associated to a record (instances).
2606 * @deprecated since 3.1
2607 * @param string $record_type the record type for which we want to get the tags
2608 * @param int $record_id the record id for which we want to get the tags
2609 * @param string $type the tag type (either 'default' or 'official'). By default, all tags are returned.
2610 * @param int $userid (optional) only required for course tagging
2611 * @return array the array of tags
2613 function tag_get_tags($record_type, $record_id, $type=null, $userid=0) {
2614 debugging('Method tag_get_tags() is deprecated and replaced with core_tag_tag::get_item_tags(). ' .
2615 'Component is now required when retrieving tag instances.', DEBUG_DEVELOPER);
2616 $standardonly = ($type === 'official' ? core_tag_tag::STANDARD_ONLY :
2617 (!empty($type) ? core_tag_tag::NOT_STANDARD_ONLY : core_tag_tag::BOTH_STANDARD_AND_NOT));
2618 $tags = core_tag_tag::get_item_tags(null, $record_type, $record_id, $standardonly, $userid);
2620 foreach ($tags as $id => $t) {
2621 $rv[$id] = $t->to_object();
2627 * Get the array of tags display names, indexed by id.
2630 * @deprecated since 3.1
2631 * @param string $record_type the record type for which we want to get the tags
2632 * @param int $record_id the record id for which we want to get the tags
2633 * @param string $type the tag type (either 'default' or 'official'). By default, all tags are returned.
2634 * @return array the array of tags (with the value returned by core_tag_tag::make_display_name), indexed by id
2636 function tag_get_tags_array($record_type, $record_id, $type=null) {
2637 debugging('Method tag_get_tags_array() is deprecated and replaced with core_tag_tag::get_item_tags_array(). ' .
2638 'Component is now required when retrieving tag instances.', DEBUG_DEVELOPER);
2639 $standardonly = ($type === 'official' ? core_tag_tag::STANDARD_ONLY :
2640 (!empty($type) ? core_tag_tag::NOT_STANDARD_ONLY : core_tag_tag::BOTH_STANDARD_AND_NOT));
2641 return core_tag_tag::get_item_tags_array('', $record_type, $record_id, $standardonly);
2645 * Get a comma-separated string of tags associated to a record.
2647 * Use {@link tag_get_tags()} to get the same information in an array.
2650 * @deprecated since 3.1
2651 * @param string $record_type the record type for which we want to get the tags
2652 * @param int $record_id the record id for which we want to get the tags
2653 * @param int $html either TAG_RETURN_HTML or TAG_RETURN_TEXT, depending on the type of output desired
2654 * @param string $type either 'official' or 'default', if null, all tags are returned
2655 * @return string the comma-separated list of tags.
2657 function tag_get_tags_csv($record_type, $record_id, $html=null, $type=null) {
2658 global $CFG, $OUTPUT;
2659 debugging('Method tag_get_tags_csv() is deprecated. Instead you should use either ' .
2660 'core_tag_tag::get_item_tags_array() or $OUTPUT->tag_list(core_tag_tag::get_item_tags()). ' .
2661 'Component is now required when retrieving tag instances.', DEBUG_DEVELOPER);
2662 $standardonly = ($type === 'official' ? core_tag_tag::STANDARD_ONLY :
2663 (!empty($type) ? core_tag_tag::NOT_STANDARD_ONLY : core_tag_tag::BOTH_STANDARD_AND_NOT));
2664 if ($html != TAG_RETURN_TEXT) {
2665 return $OUTPUT->tag_list(core_tag_tag::get_item_tags('', $record_type, $record_id, $standardonly), '');
2667 return join(', ', core_tag_tag::get_item_tags_array('', $record_type, $record_id, $standardonly, 0, false));
2672 * Get an array of tag ids associated to a record.
2675 * @deprecated since 3.1
2676 * @param string $record_type the record type for which we want to get the tags
2677 * @param int $record_id the record id for which we want to get the tags
2678 * @return array tag ids, indexed and sorted by 'ordering'
2680 function tag_get_tags_ids($record_type, $record_id) {
2681 debugging('Method tag_get_tags_ids() is deprecated. Please consider using core_tag_tag::get_item_tags() or similar methods.', DEBUG_DEVELOPER);
2683 $tagobjects = core_tag_tag::get_item_tags(null, $record_type, $record_id);
2684 foreach ($tagobjects as $tagobject) {
2685 $tag = $tagobject->to_object();
2686 if ( array_key_exists($tag->ordering, $tag_ids) ) {
2689 $tag_ids[$tag->ordering] = $tag->id;
2696 * Returns the database ID of a set of tags.
2698 * @deprecated since 3.1
2699 * @param mixed $tags one tag, or array of tags, to look for.
2700 * @param bool $return_value specify the type of the returned value. Either TAG_RETURN_OBJECT, or TAG_RETURN_ARRAY (default).
2701 * If TAG_RETURN_ARRAY is specified, an array will be returned even if only one tag was passed in $tags.
2702 * @return mixed tag-indexed array of ids (or objects, if second parameter is TAG_RETURN_OBJECT), or only an int, if only one tag
2703 * is given *and* the second parameter is null. No value for a key means the tag wasn't found.
2705 function tag_get_id($tags, $return_value = null) {
2707 debugging('Method tag_get_id() is deprecated and can be replaced with core_tag_tag::get_by_name() or core_tag_tag::get_by_name_bulk(). ' .
2708 'You need to specify tag collection when retrieving tag by name', DEBUG_DEVELOPER);
2710 if (!is_array($tags)) {
2711 if(is_null($return_value) || $return_value == TAG_RETURN_OBJECT) {
2712 if ($tagobject = core_tag_tag::get_by_name(core_tag_collection::get_default(), $tags)) {
2713 return $tagobject->id;
2718 $tags = array($tags);
2721 $records = core_tag_tag::get_by_name_bulk(core_tag_collection::get_default(), $tags,
2722 $return_value == TAG_RETURN_OBJECT ? '*' : 'id, name');
2723 foreach ($records as $name => $record) {
2724 if ($return_value != TAG_RETURN_OBJECT) {
2725 $records[$name] = $record->id ? $record->id : null;
2727 $records[$name] = $record->to_object();
2734 * Change the "value" of a tag, and update the associated 'name'.
2737 * @deprecated since 3.1
2738 * @param int $tagid the id of the tag to modify
2739 * @param string $newrawname the new rawname
2740 * @return bool true on success, false otherwise
2742 function tag_rename($tagid, $newrawname) {
2743 debugging('Function tag_rename() is deprecated and may be replaced with core_tag_tag::get($tagid)->update().', DEBUG_DEVELOPER);
2744 if ($tag = core_tag_tag::get($tagid, '*')) {
2745 return $tag->update(array('rawname' => $newrawname));
2751 * Delete one instance of a tag. If the last instance was deleted, it will also delete the tag, unless its type is 'official'.
2754 * @deprecated since 3.1
2755 * @param string $record_type the type of the record for which to remove the instance
2756 * @param int $record_id the id of the record for which to remove the instance
2757 * @param int $tagid the tagid that needs to be removed
2758 * @param int $userid (optional) the userid
2759 * @return bool true on success, false otherwise
2761 function tag_delete_instance($record_type, $record_id, $tagid, $userid = null) {
2762 debugging('Function tag_delete_instance() is deprecated and replaced with core_tag_tag::remove_item_tag() instead. ' .
2763 'Component is required for retrieving instances', DEBUG_DEVELOPER);
2764 $tag = core_tag_tag::get($tagid);
2765 core_tag_tag::remove_item_tag('', $record_type, $record_id, $tag->rawname, $userid);
2769 * Find all records tagged with a tag of a given type ('post', 'user', etc.)
2772 * @deprecated since 3.1
2774 * @param string $tag tag to look for
2775 * @param string $type type to restrict search to. If null, every matching record will be returned
2776 * @param int $limitfrom (optional, required if $limitnum is set) return a subset of records, starting at this point.
2777 * @param int $limitnum (optional, required if $limitfrom is set) return a subset comprising this many records.
2778 * @return array of matching objects, indexed by record id, from the table containing the type requested
2780 function tag_find_records($tag, $type, $limitfrom='', $limitnum='') {
2781 debugging('Function tag_find_records() is deprecated and replaced with core_tag_tag::get_by_name()->get_tagged_items(). '.
2782 'You need to specify tag collection when retrieving tag by name', DEBUG_DEVELOPER);
2784 if (!$tag || !$type) {
2788 $tagobject = core_tag_tag::get_by_name(core_tag_area::get_collection('', $type), $tag);
2789 return $tagobject->get_tagged_items('', $type, $limitfrom, $limitnum);
2793 * Adds one or more tag in the database. This function should not be called directly : you should
2797 * @deprecated since 3.1
2798 * @param mixed $tags one tag, or an array of tags, to be created
2799 * @param string $type type of tag to be created ("default" is the default value and "official" is the only other supported
2800 * value at this time). An official tag is kept even if there are no records tagged with it.
2801 * @return array $tags ids indexed by their lowercase normalized names. Any boolean false in the array indicates an error while
2804 function tag_add($tags, $type="default") {
2805 debugging('Function tag_add() is deprecated. You can use core_tag_tag::create_if_missing(), however it should not be necessary ' .
2806 'since tags are created automatically when assigned to items', DEBUG_DEVELOPER);
2807 if (!is_array($tags)) {
2808 $tags = array($tags);
2810 $objects = core_tag_tag::create_if_missing(core_tag_collection::get_default(), $tags,
2811 $type === 'official');
2813 // New function returns the tags in different format, for BC we keep the format that this function used to have.
2815 foreach ($objects as $name => $tagobject) {
2816 if (isset($tagobject->id)) {
2817 $rv[$tagobject->name] = $tagobject->id;
2826 * Assigns a tag to a record; if the record already exists, the time and ordering will be updated.
2829 * @deprecated since 3.1
2830 * @param string $record_type the type of the record that will be tagged
2831 * @param int $record_id the id of the record that will be tagged
2832 * @param string $tagid the tag id to set on the record.
2833 * @param int $ordering the order of the instance for this record
2834 * @param int $userid (optional) only required for course tagging
2835 * @param string|null $component the component that was tagged
2836 * @param int|null $contextid the context id of where this tag was assigned
2837 * @return bool true on success, false otherwise
2839 function tag_assign($record_type, $record_id, $tagid, $ordering, $userid = 0, $component = null, $contextid = null) {
2841 $message = 'Function tag_assign() is deprecated. Use core_tag_tag::set_item_tags() or core_tag_tag::add_item_tag() instead. ' .
2842 'Tag instance ordering should not be set manually';
2843 if ($component === null || $contextid === null) {
2844 $message .= '. You should specify the component and contextid of the item being tagged in your call to tag_assign.';
2846 debugging($message, DEBUG_DEVELOPER);
2849 $context = context::instance_by_id($contextid);
2851 $context = context_system::instance();
2855 $tag = $DB->get_record('tag', array('id' => $tagid), 'name, rawname', MUST_EXIST);
2857 $taginstanceid = core_tag_tag::add_item_tag($component, $record_type, $record_id, $context, $tag->rawname, $userid);
2859 // Alter the "ordering" of tag_instance. This should never be done manually and only remains here for the backward compatibility.
2860 $taginstance = new stdClass();
2861 $taginstance->id = $taginstanceid;
2862 $taginstance->ordering = $ordering;
2863 $taginstance->timemodified = time();
2865 $DB->update_record('tag_instance', $taginstance);
2871 * Count how many records are tagged with a specific tag.
2874 * @deprecated since 3.1
2875 * @param string $record_type record to look for ('post', 'user', etc.)
2876 * @param int $tagid is a single tag id
2877 * @return int number of mathing tags.
2879 function tag_record_count($record_type, $tagid) {
2880 debugging('Method tag_record_count() is deprecated and replaced with core_tag_tag::get($tagid)->count_tagged_items(). '.
2881 'Component is now required when retrieving tag instances.', DEBUG_DEVELOPER);
2882 return core_tag_tag::get($tagid)->count_tagged_items('', $record_type);
2886 * Determine if a record is tagged with a specific tag
2889 * @deprecated since 3.1
2890 * @param string $record_type the record type to look for
2891 * @param int $record_id the record id to look for
2892 * @param string $tag a tag name
2893 * @return bool/int true if it is tagged, 0 (false) otherwise
2895 function tag_record_tagged_with($record_type, $record_id, $tag) {
2896 debugging('Method tag_record_tagged_with() is deprecated and replaced with core_tag_tag::get($tagid)->is_item_tagged_with(). '.
2897 'Component is now required when retrieving tag instances.', DEBUG_DEVELOPER);
2898 return core_tag_tag::is_item_tagged_with('', $record_type, $record_id, $tag);
2902 * Flag a tag as inappropriate.
2904 * @deprecated since 3.1
2905 * @param int|array $tagids a single tagid, or an array of tagids
2907 function tag_set_flag($tagids) {
2908 debugging('Function tag_set_flag() is deprecated and replaced with core_tag_tag::get($tagid)->flag().', DEBUG_DEVELOPER);
2909 $tagids = (array) $tagids;
2910 foreach ($tagids as $tagid) {
2911 if ($tag = core_tag_tag::get($tagid, '*')) {
2918 * Remove the inappropriate flag on a tag.
2920 * @deprecated since 3.1
2921 * @param int|array $tagids a single tagid, or an array of tagids
2923 function tag_unset_flag($tagids) {
2924 debugging('Function tag_unset_flag() is deprecated and replaced with core_tag_tag::get($tagid)->reset_flag().', DEBUG_DEVELOPER);
2925 $tagids = (array) $tagids;
2926 foreach ($tagids as $tagid) {
2927 if ($tag = core_tag_tag::get($tagid, '*')) {
2934 * Prints or returns a HTML tag cloud with varying classes styles depending on the popularity and type of each tag.
2936 * @deprecated since 3.1
2938 * @param array $tagset Array of tags to display
2939 * @param int $nr_of_tags Limit for the number of tags to return/display, used if $tagset is null
2940 * @param bool $return if true the function will return the generated tag cloud instead of displaying it.
2941 * @param string $sort (optional) selected sorting, default is alpha sort (name) also timemodified or popularity
2942 * @return string|null a HTML string or null if this function does the output
2944 function tag_print_cloud($tagset=null, $nr_of_tags=150, $return=false, $sort='') {
2947 debugging('Function tag_print_cloud() is deprecated and replaced with function core_tag_collection::get_tag_cloud(), '
2948 . 'templateable core_tag\output\tagcloud and template core_tag/tagcloud.', DEBUG_DEVELOPER);
2950 // Set up sort global - used to pass sort type into core_tag_collection::cloud_sort through usort() avoiding multiple sort functions.
2951 if ($sort == 'popularity') {
2953 } else if ($sort == 'date') {
2954 $sort = 'timemodified';
2959 if (is_null($tagset)) {
2960 // No tag set received, so fetch tags from database.
2961 // Always add query by tagcollid even when it's not known to make use of the table index.
2962 $tagcloud = core_tag_collection::get_tag_cloud(0, false, $nr_of_tags, $sort);
2964 $tagsincloud = $tagset;
2967 foreach ($tagsincloud as $tag) {
2971 core_tag_collection::$cloudsortfield = $sort;
2972 usort($tagsincloud, "core_tag_collection::cloud_sort");
2974 $tagcloud = new \core_tag\output\tagcloud($tagsincloud);
2977 $output = $OUTPUT->render_from_template('core_tag/tagcloud', $tagcloud->export_for_template($OUTPUT));
2986 * Function that returns tags that start with some text, for use by the autocomplete feature
2989 * @deprecated since 3.0
2991 * @param string $text string that the tag names will be matched against
2992 * @return mixed an array of objects, or false if no records were found or an error occured.
2994 function tag_autocomplete($text) {
2995 debugging('Function tag_autocomplete() is deprecated without replacement. ' .
2996 'New form element "tags" does proper autocomplete.', DEBUG_DEVELOPER);
2998 return $DB->get_records_sql("SELECT tg.id, tg.name, tg.rawname
3000 WHERE tg.name LIKE ?", array(core_text::strtolower($text)."%"));
3004 * Prints a box with the description of a tag and its related tags
3007 * @deprecated since 3.1
3008 * @param stdClass $tag_object
3009 * @param bool $return if true the function will return the generated tag cloud instead of displaying it.
3010 * @return string/null a HTML box showing a description of the tag object and it's relationsips or null if output is done directly
3013 function tag_print_description_box($tag_object, $return=false) {
3014 global $USER, $CFG, $OUTPUT;
3015 require_once($CFG->libdir.'/filelib.php');
3017 debugging('Function tag_print_description_box() is deprecated without replacement. ' .
3018 'See core_tag_renderer for similar code.', DEBUG_DEVELOPER);
3020 $relatedtags = array();
3021 if ($tag = core_tag_tag::get($tag_object->id)) {
3022 $relatedtags = $tag->get_related_tags();
3025 $content = !empty($tag_object->description);
3029 $output .= $OUTPUT->box_start('generalbox tag-description');
3032 if (!empty($tag_object->description)) {
3033 $options = new stdClass();
3034 $options->para = false;
3035 $options->overflowdiv = true;
3036 $tag_object->description = file_rewrite_pluginfile_urls($tag_object->description, 'pluginfile.php', context_system::instance()->id, 'tag', 'description', $tag_object->id);
3037 $output .= format_text($tag_object->description, $tag_object->descriptionformat, $options);
3041 $output .= $OUTPUT->box_end();
3045 $output .= $OUTPUT->tag_list($relatedtags, get_string('relatedtags', 'tag'), 'tag-relatedtags');
3056 * Prints a box that contains the management links of a tag
3058 * @deprecated since 3.1
3059 * @param core_tag_tag|stdClass $tag_object
3060 * @param bool $return if true the function will return the generated tag cloud instead of displaying it.
3061 * @return string|null a HTML string or null if this function does the output
3063 function tag_print_management_box($tag_object, $return=false) {
3064 global $USER, $CFG, $OUTPUT;
3066 debugging('Function tag_print_description_box() is deprecated without replacement. ' .
3067 'See core_tag_renderer for similar code.', DEBUG_DEVELOPER);
3069 $tagname = core_tag_tag::make_display_name($tag_object);
3072 if (!isguestuser()) {
3073 $output .= $OUTPUT->box_start('box','tag-management-box');
3074 $systemcontext = context_system::instance();
3077 // Add a link for users to add/remove this from their interests
3078 if (core_tag_tag::is_enabled('core', 'user') && core_tag_area::get_collection('core', 'user') == $tag_object->tagcollid) {
3079 if (core_tag_tag::is_item_tagged_with('core', 'user', $USER->id, $tag_object->name)) {
3080 $links[] = '<a href="'. $CFG->wwwroot .'/tag/user.php?action=removeinterest&sesskey='. sesskey() .
3081 '&tag='. rawurlencode($tag_object->name) .'">'.
3082 get_string('removetagfrommyinterests', 'tag', $tagname) .'</a>';
3084 $links[] = '<a href="'. $CFG->wwwroot .'/tag/user.php?action=addinterest&sesskey='. sesskey() .
3085 '&tag='. rawurlencode($tag_object->name) .'">'.
3086 get_string('addtagtomyinterests', 'tag', $tagname) .'</a>';
3090 // Flag as inappropriate link. Only people with moodle/tag:flag capability.
3091 if (has_capability('moodle/tag:flag', $systemcontext)) {
3092 $links[] = '<a href="'. $CFG->wwwroot .'/tag/user.php?action=flaginappropriate&sesskey='.
3093 sesskey() . '&id='. $tag_object->id . '">'. get_string('flagasinappropriate',
3094 'tag', rawurlencode($tagname)) .'</a>';
3097 // Edit tag: Only people with moodle/tag:edit capability who either have it as an interest or can manage tags
3098 if (has_capability('moodle/tag:edit', $systemcontext) ||
3099 has_capability('moodle/tag:manage', $systemcontext)) {
3100 $links[] = '<a href="' . $CFG->wwwroot . '/tag/edit.php?id=' . $tag_object->id . '">' .
3101 get_string('edittag', 'tag') . '</a>';
3104 $output .= implode(' | ', $links);
3105 $output .= $OUTPUT->box_end();
3116 * Prints the tag search box
3118 * @deprecated since 3.1
3119 * @param bool $return if true return html string
3120 * @return string|null a HTML string or null if this function does the output
3122 function tag_print_search_box($return=false) {
3123 global $CFG, $OUTPUT;
3125 debugging('Function tag_print_search_box() is deprecated without replacement. ' .
3126 'See core_tag_renderer for similar code.', DEBUG_DEVELOPER);
3128 $query = optional_param('query', '', PARAM_RAW);
3130 $output = $OUTPUT->box_start('','tag-search-box');
3131 $output .= '<form action="'.$CFG->wwwroot.'/tag/search.php" style="display:inline">';
3133 $output .= '<label class="accesshide" for="searchform_search">'.get_string('searchtags', 'tag').'</label>';
3134 $output .= '<input id="searchform_search" name="query" type="text" size="40" value="'.s($query).'" />';
3135 $output .= '<button id="searchform_button" type="submit">'. get_string('search', 'tag') .'</button><br />';
3136 $output .= '</div>';
3137 $output .= '</form>';
3138 $output .= $OUTPUT->box_end();
3149 * Prints the tag search results
3151 * @deprecated since 3.1
3152 * @param string $query text that tag names will be matched against
3153 * @param int $page current page
3154 * @param int $perpage nr of users displayed per page
3155 * @param bool $return if true return html string
3156 * @return string|null a HTML string or null if this function does the output
3158 function tag_print_search_results($query, $page, $perpage, $return=false) {
3159 global $CFG, $USER, $OUTPUT;
3161 debugging('Function tag_print_search_results() is deprecated without replacement. ' .
3162 'In /tag/search.php the search results are printed using the core_tag/tagcloud template.', DEBUG_DEVELOPER);
3164 $query = clean_param($query, PARAM_TAG);
3166 $count = count(tag_find_tags($query, false));
3169 if ( $found_tags = tag_find_tags($query, true, $page * $perpage, $perpage) ) {
3170 $tags = array_values($found_tags);
3173 $baseurl = $CFG->wwwroot.'/tag/search.php?query='. rawurlencode($query);
3176 // link "Add $query to my interests"
3178 if (core_tag_tag::is_enabled('core', 'user') && !core_tag_tag::is_item_tagged_with('core', 'user', $USER->id, $query)) {
3179 $addtaglink = html_writer::link(new moodle_url('/tag/user.php', array('action' => 'addinterest', 'sesskey' => sesskey(),
3180 'tag' => $query)), get_string('addtagtomyinterests', 'tag', s($query)));
3183 if ( !empty($tags) ) { // there are results to display!!
3184 $output .= $OUTPUT->heading(get_string('searchresultsfor', 'tag', htmlspecialchars($query)) ." : {$count}", 3, 'main');
3186 //print a link "Add $query to my interests"
3187 if (!empty($addtaglink)) {
3188 $output .= $OUTPUT->box($addtaglink, 'box', 'tag-management-box');
3191 $nr_of_lis_per_ul = 6;
3192 $nr_of_uls = ceil( sizeof($tags) / $nr_of_lis_per_ul );
3194 $output .= '<ul id="tag-search-results">';
3195 for($i = 0; $i < $nr_of_uls; $i++) {
3196 foreach (array_slice($tags, $i * $nr_of_lis_per_ul, $nr_of_lis_per_ul) as $tag) {
3198 $tag_link = html_writer::link(core_tag_tag::make_url($tag->tagcollid, $tag->rawname),
3199 core_tag_tag::make_display_name($tag));
3200 $output .= $tag_link;
3205 $output .= '<div> </div>'; // <-- small layout hack in order to look good in Firefox
3207 $output .= $OUTPUT->paging_bar($count, $page, $perpage, $baseurl);
3209 else { //no results were found!!
3210 $output .= $OUTPUT->heading(get_string('noresultsfor', 'tag', htmlspecialchars($query)), 3, 'main');
3212 //print a link "Add $query to my interests"
3213 if (!empty($addtaglink)) {
3214 $output .= $OUTPUT->box($addtaglink, 'box', 'tag-management-box');
3227 * Prints a table of the users tagged with the tag passed as argument
3229 * @deprecated since 3.1
3230 * @param stdClass $tagobject the tag we wish to return data for
3231 * @param int $limitfrom (optional, required if $limitnum is set) prints users starting at this point.
3232 * @param int $limitnum (optional, required if $limitfrom is set) prints this many users.
3233 * @param bool $return if true return html string
3234 * @return string|null a HTML string or null if this function does the output
3236 function tag_print_tagged_users_table($tagobject, $limitfrom='', $limitnum='', $return=false) {
3238 debugging('Function tag_print_tagged_users_table() is deprecated without replacement. ' .
3239 'See core_user_renderer for similar code.', DEBUG_DEVELOPER);
3241 //List of users with this tag
3242 $tagobject = core_tag_tag::get($tagobject->id);
3243 $userlist = $tagobject->get_tagged_items('core', 'user', $limitfrom, $limitnum);
3245 $output = tag_print_user_list($userlist, true);
3256 * Prints an individual user box
3258 * @deprecated since 3.1
3259 * @param user_object $user (contains the following fields: id, firstname, lastname and picture)
3260 * @param bool $return if true return html string
3261 * @return string|null a HTML string or null if this function does the output
3263 function tag_print_user_box($user, $return=false) {
3264 global $CFG, $OUTPUT;
3266 debugging('Function tag_print_user_box() is deprecated without replacement. ' .
3267 'See core_user_renderer for similar code.', DEBUG_DEVELOPER);
3269 $usercontext = context_user::instance($user->id);
3272 if ($usercontext and (has_capability('moodle/user:viewdetails', $usercontext) || has_coursecontact_role($user->id))) {
3273 $profilelink = $CFG->wwwroot .'/user/view.php?id='. $user->id;
3276 $output = $OUTPUT->box_start('user-box', 'user'. $user->id);
3277 $fullname = fullname($user);
3280 if (!empty($profilelink)) {
3281 $output .= '<a href="'. $profilelink .'">';
3285 $output .= $OUTPUT->user_picture($user, array('size'=>100));
3286 $output .= '<br />';
3288 if (!empty($profilelink)) {
3292 //truncate name if it's too big
3293 if (core_text::strlen($fullname) > 26) {
3294 $fullname = core_text::substr($fullname, 0, 26) .'...';
3297 $output .= '<strong>'. $fullname .'</strong>';
3298 $output .= $OUTPUT->box_end();
3309 * Prints a list of users
3311 * @deprecated since 3.1
3312 * @param array $userlist an array of user objects
3313 * @param bool $return if true return html string, otherwise output the result
3314 * @return string|null a HTML string or null if this function does the output
3316 function tag_print_user_list($userlist, $return=false) {
3318 debugging('Function tag_print_user_list() is deprecated without replacement. ' .
3319 'See core_user_renderer for similar code.', DEBUG_DEVELOPER);
3321 $output = '<div><ul class="inline-list">';
3323 foreach ($userlist as $user){
3324 $output .= '<li>'. tag_print_user_box($user, true) ."</li>\n";
3326 $output .= "</ul></div>\n";
3337 * Function that returns the name that should be displayed for a specific tag
3341 * @deprecated since 3.1
3342 * @param stdClass|core_tag_tag $tagobject a line out of tag table, as returned by the adobd functions
3343 * @param int $html TAG_RETURN_HTML (default) will return htmlspecialchars encoded string, TAG_RETURN_TEXT will not encode.
3346 function tag_display_name($tagobject, $html=TAG_RETURN_HTML) {
3347 debugging('Function tag_display_name() is deprecated. Use core_tag_tag::make_display_name().', DEBUG_DEVELOPER);
3348 if (!isset($tagobject->name)) {
3351 return core_tag_tag::make_display_name($tagobject, $html != TAG_RETURN_TEXT);
3355 * Function that normalizes a list of tag names.
3358 * @deprecated since 3.1
3359 * @param array/string $rawtags array of tags, or a single tag.
3360 * @param int $case case to use for returned value (default: lower case). Either TAG_CASE_LOWER (default) or TAG_CASE_ORIGINAL
3361 * @return array lowercased normalized tags, indexed by the normalized tag, in the same order as the original array.
3362 * (Eg: 'Banana' => 'banana').
3364 function tag_normalize($rawtags, $case = TAG_CASE_LOWER) {
3365 debugging('Function tag_normalize() is deprecated. Use core_tag_tag::normalize().', DEBUG_DEVELOPER);
3367 if ( !is_array($rawtags) ) {
3368 $rawtags = array($rawtags);
3371 return core_tag_tag::normalize($rawtags, $case == TAG_CASE_LOWER);
3375 * Get a comma-separated list of tags related to another tag.
3378 * @deprecated since 3.1
3379 * @param array $related_tags the array returned by tag_get_related_tags
3380 * @param int $html either TAG_RETURN_HTML (default) or TAG_RETURN_TEXT : return html links, or just text.
3381 * @return string comma-separated list
3383 function tag_get_related_tags_csv($related_tags, $html=TAG_RETURN_HTML) {
3385 debugging('Method tag_get_related_tags_csv() is deprecated. Consider '
3386 . 'looping through array or using $OUTPUT->tag_list(core_tag_tag::get_item_tags())',
3388 if ($html != TAG_RETURN_TEXT) {
3389 return $OUTPUT->tag_list($related_tags, '');
3392 $tagsnames = array();
3393 foreach ($related_tags as $tag) {
3394 $tagsnames[] = core_tag_tag::make_display_name($tag, false);
3396 return implode(', ', $tagsnames);
3400 * Used to require that the return value from a function is an array.
3401 * Only used in the deprecated function {@link tag_get_id()}
3402 * @deprecated since 3.1
3404 define('TAG_RETURN_ARRAY', 0);
3406 * Used to require that the return value from a function is an object.
3407 * Only used in the deprecated function {@link tag_get_id()}
3408 * @deprecated since 3.1
3410 define('TAG_RETURN_OBJECT', 1);
3412 * Use to specify that HTML free text is expected to be returned from a function.
3413 * Only used in deprecated functions {@link tag_get_tags_csv()}, {@link tag_display_name()},
3414 * {@link tag_get_related_tags_csv()}
3415 * @deprecated since 3.1
3417 define('TAG_RETURN_TEXT', 2);
3419 * Use to specify that encoded HTML is expected to be returned from a function.
3420 * Only used in deprecated functions {@link tag_get_tags_csv()}, {@link tag_display_name()},
3421 * {@link tag_get_related_tags_csv()}
3422 * @deprecated since 3.1
3424 define('TAG_RETURN_HTML', 3);
3427 * Used to specify that we wish a lowercased string to be returned
3428 * Only used in deprecated function {@link tag_normalize()}
3429 * @deprecated since 3.1
3431 define('TAG_CASE_LOWER', 0);
3433 * Used to specify that we do not wish the case of the returned string to change
3434 * Only used in deprecated function {@link tag_normalize()}
3435 * @deprecated since 3.1
3437 define('TAG_CASE_ORIGINAL', 1);
3440 * Used to specify that we want all related tags returned, no matter how they are related.
3441 * Only used in deprecated function {@link tag_get_related_tags()}
3442 * @deprecated since 3.1
3444 define('TAG_RELATED_ALL', 0);
3446 * Used to specify that we only want back tags that were manually related.
3447 * Only used in deprecated function {@link tag_get_related_tags()}
3448 * @deprecated since 3.1
3450 define('TAG_RELATED_MANUAL', 1);
3452 * Used to specify that we only want back tags where the relationship was automatically correlated.
3453 * Only used in deprecated function {@link tag_get_related_tags()}
3454 * @deprecated since 3.1
3456 define('TAG_RELATED_CORRELATED', 2);
3459 * Set the tags assigned to a record. This overwrites the current tags.
3461 * This function is meant to be fed the string coming up from the user interface, which contains all tags assigned to a record.
3463 * Due to API change $component and $contextid are now required. Instead of
3464 * calling this function you can use {@link core_tag_tag::set_item_tags()} or
3465 * {@link core_tag_tag::set_related_tags()}
3468 * @deprecated since 3.1
3469 * @param string $itemtype the type of record to tag ('post' for blogs, 'user' for users, 'tag' for tags, etc.)
3470 * @param int $itemid the id of the record to tag
3471 * @param array $tags the array of tags to set on the record. If given an empty array, all tags will be removed.
3472 * @param string|null $component the component that was tagged
3473 * @param int|null $contextid the context id of where this tag was assigned
3476 function tag_set($itemtype, $itemid, $tags, $component = null, $contextid = null) {
3477 debugging('Function tag_set() is deprecated. Use ' .
3478 ' core_tag_tag::set_item_tags() instead', DEBUG_DEVELOPER);
3480 if ($itemtype === 'tag') {
3481 return core_tag_tag::get($itemid, '*', MUST_EXIST)->set_related_tags($tags);
3483 $context = $contextid ? context::instance_by_id($contextid) : context_system::instance();
3484 return core_tag_tag::set_item_tags($component, $itemtype, $itemid, $context, $tags);
3489 * Adds a tag to a record, without overwriting the current tags.
3491 * This function remains here for backward compatiblity. It is recommended to use
3492 * {@link core_tag_tag::add_item_tag()} or {@link core_tag_tag::add_related_tags()} instead
3495 * @deprecated since 3.1
3496 * @param string $itemtype the type of record to tag ('post' for blogs, 'user' for users, etc.)
3497 * @param int $itemid the id of the record to tag
3498 * @param string $tag the tag to add
3499 * @param string|null $component the component that was tagged
3500 * @param int|null $contextid the context id of where this tag was assigned
3503 function tag_set_add($itemtype, $itemid, $tag, $component = null, $contextid = null) {
3504 debugging('Function tag_set_add() is deprecated. Use ' .
3505 ' core_tag_tag::add_item_tag() instead', DEBUG_DEVELOPER);
3507 if ($itemtype === 'tag') {
3508 return core_tag_tag::get($itemid, '*', MUST_EXIST)->add_related_tags(array($tag));
3510 $context = $contextid ? context::instance_by_id($contextid) : context_system::instance();
3511 return core_tag_tag::add_item_tag($component, $itemtype, $itemid, $context, $tag);
3516 * Removes a tag from a record, without overwriting other current tags.
3518 * This function remains here for backward compatiblity. It is recommended to use
3519 * {@link core_tag_tag::remove_item_tag()} instead
3522 * @deprecated since 3.1
3523 * @param string $itemtype the type of record to tag ('post' for blogs, 'user' for users, etc.)
3524 * @param int $itemid the id of the record to tag
3525 * @param string $tag the tag to delete
3526 * @param string|null $component the component that was tagged
3527 * @param int|null $contextid the context id of where this tag was assigned
3530 function tag_set_delete($itemtype, $itemid, $tag, $component = null, $contextid = null) {
3531 debugging('Function tag_set_delete() is deprecated. Use ' .
3532 ' core_tag_tag::remove_item_tag() instead', DEBUG_DEVELOPER);
3533 return core_tag_tag::remove_item_tag($component, $itemtype, $itemid, $tag);
3537 * Simple function to just return a single tag object when you know the name or something
3539 * See also {@link core_tag_tag::get()} and {@link core_tag_tag::get_by_name()}
3542 * @deprecated since 3.1
3543 * @param string $field which field do we use to identify the tag: id, name or rawname
3544 * @param string $value the required value of the aforementioned field
3545 * @param string $returnfields which fields do we want returned. This is a comma seperated string containing any combination of
3546 * 'id', 'name', 'rawname' or '*' to include all fields.
3547 * @return mixed tag object
3549 function tag_get($field, $value, $returnfields='id, name, rawname, tagcollid') {
3551 debugging('Function tag_get() is deprecated. Use ' .
3552 ' core_tag_tag::get() or core_tag_tag::get_by_name()',
3554 if ($field === 'id') {
3555 $tag = core_tag_tag::get((int)$value, $returnfields);
3556 } else if ($field === 'name') {
3557 $tag = core_tag_tag::get_by_name(0, $value, $returnfields);
3559 $params = array($field => $value);
3560 return $DB->get_record('tag', $params, $returnfields);
3563 return $tag->to_object();
3569 * Returns tags related to a tag
3571 * Related tags of a tag come from two sources:
3572 * - manually added related tags, which are tag_instance entries for that tag
3573 * - correlated tags, which are calculated
3576 * @deprecated since 3.1
3577 * @param string $tagid is a single **normalized** tag name or the id of a tag
3578 * @param int $type the function will return either manually (TAG_RELATED_MANUAL) related tags or correlated
3579 * (TAG_RELATED_CORRELATED) tags. Default is TAG_RELATED_ALL, which returns everything.
3580 * @param int $limitnum (optional) return a subset comprising this many records, the default is 10
3581 * @return array an array of tag objects
3583 function tag_get_related_tags($tagid, $type=TAG_RELATED_ALL, $limitnum=10) {
3584 debugging('Method tag_get_related_tags() is deprecated, '
3585 . 'use core_tag_tag::get_correlated_tags(), core_tag_tag::get_related_tags() or '
3586 . 'core_tag_tag::get_manual_related_tags()', DEBUG_DEVELOPER);
3588 if ($tag = core_tag_tag::get($tagid)) {
3589 if ($type == TAG_RELATED_CORRELATED) {
3590 $tags = $tag->get_correlated_tags();
3591 } else if ($type == TAG_RELATED_MANUAL) {
3592 $tags = $tag->get_manual_related_tags();
3594 $tags = $tag->get_related_tags();
3596 $tags = array_slice($tags, 0, $limitnum);
3597 foreach ($tags as $id => $tag) {
3598 $result[$id] = $tag->to_object();
3605 * Delete one or more tag, and all their instances if there are any left.
3608 * @deprecated since 3.1
3609 * @param mixed $tagids one tagid (int), or one array of tagids to delete
3610 * @return bool true on success, false otherwise
3612 function tag_delete($tagids) {
3613 debugging('Method tag_delete() is deprecated, use core_tag_tag::delete_tags()',
3615 return core_tag_tag::delete_tags($tagids);
3619 * Deletes all the tag instances given a component and an optional contextid.
3621 * @deprecated since 3.1
3622 * @param string $component
3623 * @param int $contextid if null, then we delete all tag instances for the $component
3625 function tag_delete_instances($component, $contextid = null) {
3626 debugging('Method tag_delete() is deprecated, use core_tag_tag::delete_instances()',
3628 core_tag_tag::delete_instances($component, null, $contextid);
3632 * Clean up the tag tables, making sure all tagged object still exists.
3634 * This should normally not be necessary, but in case related tags are not deleted when the tagged record is removed, this should be
3635 * done once in a while, perhaps on an occasional cron run. On a site with lots of tags, this could become an expensive function to
3636 * call: don't run at peak time.
3639 * @deprecated since 3.1
3641 function tag_cleanup() {
3642 debugging('Method tag_cleanup() is deprecated, use \core\task\tag_cron_task::cleanup()',
3645 $task = new \core\task\tag_cron_task();
3646 return $task->cleanup();
3650 * This function will delete numerous tag instances efficiently.
3651 * This removes tag instances only. It doesn't check to see if it is the last use of a tag.
3653 * @deprecated since 3.1
3654 * @param array $instances An array of tag instance objects with the addition of the tagname and tagrawname
3655 * (used for recording a delete event).
3657 function tag_bulk_delete_instances($instances) {
3658 debugging('Method tag_bulk_delete_instances() is deprecated, '
3659 . 'use \core\task\tag_cron_task::bulk_delete_instances()',
3662 $task = new \core\task\tag_cron_task();
3663 return $task->bulk_delete_instances($instances);
3667 * Calculates and stores the correlated tags of all tags. The correlations are stored in the 'tag_correlation' table.
3669 * Two tags are correlated if they appear together a lot. Ex.: Users tagged with "computers" will probably also be tagged with "algorithms".
3671 * The rationale for the 'tag_correlation' table is performance. It works as a cache for a potentially heavy load query done at the
3672 * 'tag_instance' table. So, the 'tag_correlation' table stores redundant information derived from the 'tag_instance' table.
3675 * @deprecated since 3.1
3676 * @param int $mincorrelation Only tags with more than $mincorrelation correlations will be identified.
3678 function tag_compute_correlations($mincorrelation = 2) {
3679 debugging('Method tag_compute_correlations() is deprecated, '
3680 . 'use \core\task\tag_cron_task::compute_correlations()',
3683 $task = new \core\task\tag_cron_task();
3684 return $task->compute_correlations($mincorrelation);
3688 * This function processes a tag correlation and makes changes in the database as required.
3690 * The tag correlation object needs have both a tagid property and a correlatedtags property that is an array.
3693 * @deprecated since 3.1
3694 * @param stdClass $tagcorrelation
3695 * @return int/bool The id of the tag correlation that was just processed or false.
3697 function tag_process_computed_correlation(stdClass $tagcorrelation) {
3698 debugging('Method tag_process_computed_correlation() is deprecated, '
3699 . 'use \core\task\tag_cron_task::process_computed_correlation()',
3702 $task = new \core\task\tag_cron_task();
3703 return $task->process_computed_correlation($tagcorrelation);
3707 * Tasks that should be performed at cron time
3710 * @deprecated since 3.1
3712 function tag_cron() {
3713 debugging('Method tag_cron() is deprecated, use \core\task\tag_cron_task::execute()',
3716 $task = new \core\task\tag_cron_task();
3721 * Search for tags with names that match some text
3724 * @deprecated since 3.1
3725 * @param string $text escaped string that the tag names will be matched against
3726 * @param bool $ordered If true, tags are ordered by their popularity. If false, no ordering.
3727 * @param int/string $limitfrom (optional, required if $limitnum is set) return a subset of records, starting at this point.
3728 * @param int/string $limitnum (optional, required if $limitfrom is set) return a subset comprising this many records.
3729 * @param int $tagcollid
3730 * @return array/boolean an array of objects, or false if no records were found or an error occured.
3732 function tag_find_tags($text, $ordered=true, $limitfrom='', $limitnum='', $tagcollid = null) {
3733 debugging('Method tag_find_tags() is deprecated without replacement', DEBUG_DEVELOPER);
3736 $text = core_text::strtolower(clean_param($text, PARAM_TAG));
3738 list($sql, $params) = $DB->get_in_or_equal($tagcollid ? array($tagcollid) :
3739 array_keys(core_tag_collection::get_collections(true)));
3740 array_unshift($params, "%{$text}%");
3743 $query = "SELECT tg.id, tg.name, tg.rawname, tg.tagcollid, COUNT(ti.id) AS count
3744 FROM {tag} tg LEFT JOIN {tag_instance} ti ON tg.id = ti.tagid
3745 WHERE tg.name LIKE ? AND tg.tagcollid $sql