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.');
755 * @deprecated since Moodle 2.0 MDL-14617 - please do not use this function any more.
757 function groupmode($course, $cm=null) {
758 throw new coding_exception('groupmode() can not be used any more, please use groups_get_* instead.');
762 * @deprecated Since year 2006 - please do not use this function any more.
764 function set_current_group($courseid, $groupid) {
765 throw new coding_exception('set_current_group() can not be used anymore, please use $SESSION->currentgroup[$courseid] instead');
769 * @deprecated Since year 2006 - please do not use this function any more.
771 function get_current_group($courseid, $full = false) {
772 throw new coding_exception('get_current_group() can not be used any more, please use groups_get_* instead');
776 * @deprecated Since Moodle 2.8
778 function groups_filter_users_by_course_module_visible($cm, $users) {
779 throw new coding_exception('groups_filter_users_by_course_module_visible() is removed. ' .
780 'Replace with a call to \core_availability\info_module::filter_user_list(), ' .
781 'which does basically the same thing but includes other restrictions such ' .
782 'as profile restrictions.');
786 * @deprecated Since Moodle 2.8
788 function groups_course_module_visible($cm, $userid=null) {
789 throw new coding_exception('groups_course_module_visible() is removed, use $cm->uservisible to decide whether the current
790 user can ' . 'access an activity.', DEBUG_DEVELOPER);
794 * @deprecated since 2.0
796 function error($message, $link='') {
797 throw new coding_exception('notlocalisederrormessage', 'error', $link, $message, 'error() is a removed, please call
798 print_error() instead of error()');
803 * @deprecated use $PAGE->theme->name instead.
805 function current_theme() {
806 throw new coding_exception('current_theme() can not be used any more, please use $PAGE->theme->name instead');
812 function formerr($error) {
813 throw new coding_exception('formerr() is removed. Please change your code to use $OUTPUT->error_text($string).');
817 * @deprecated use $OUTPUT->skip_link_target() in instead.
819 function skip_main_destination() {
820 throw new coding_exception('skip_main_destination() can not be used any more, please use $OUTPUT->skip_link_target() instead.');
824 * @deprecated use $OUTPUT->container() instead.
826 function print_container($message, $clearfix=false, $classes='', $idbase='', $return=false) {
827 throw new coding_exception('print_container() can not be used any more. Please use $OUTPUT->container() instead.');
831 * @deprecated use $OUTPUT->container_start() instead.
833 function print_container_start($clearfix=false, $classes='', $idbase='', $return=false) {
834 throw new coding_exception('print_container_start() can not be used any more. Please use $OUTPUT->container_start() instead.');
838 * @deprecated use $OUTPUT->container_end() instead.
840 function print_container_end($return=false) {
841 throw new coding_exception('print_container_end() can not be used any more. Please use $OUTPUT->container_end() instead.');
845 * Print a bold message in an optional color.
847 * @deprecated since Moodle 2.0 MDL-19077 - use $OUTPUT->notification instead.
848 * @todo MDL-50469 This will be deleted in Moodle 3.3.
849 * @param string $message The message to print out
850 * @param string $classes Optional style to display message text in
851 * @param string $align Alignment option
852 * @param bool $return whether to return an output string or echo now
853 * @return string|bool Depending on $result
855 function notify($message, $classes = 'error', $align = 'center', $return = false) {
858 debugging('notify() is deprecated, please use $OUTPUT->notification() instead', DEBUG_DEVELOPER);
860 if ($classes == 'green') {
861 debugging('Use of deprecated class name "green" in notify. Please change to "success".', DEBUG_DEVELOPER);
862 $classes = 'success'; // Backward compatible with old color system.
865 $output = $OUTPUT->notification($message, $classes);
874 * @deprecated use $OUTPUT->continue_button() instead.
876 function print_continue($link, $return = false) {
877 throw new coding_exception('print_continue() can not be used any more. Please use $OUTPUT->continue_button() instead.');
881 * @deprecated use $PAGE methods instead.
883 function print_header($title='', $heading='', $navigation='', $focus='',
884 $meta='', $cache=true, $button=' ', $menu=null,
885 $usexml=false, $bodytags='', $return=false) {
887 throw new coding_exception('print_header() can not be used any more. Please use $PAGE methods instead.');
891 * @deprecated use $PAGE methods instead.
893 function print_header_simple($title='', $heading='', $navigation='', $focus='', $meta='',
894 $cache=true, $button=' ', $menu='', $usexml=false, $bodytags='', $return=false) {
896 throw new coding_exception('print_header_simple() can not be used any more. Please use $PAGE methods instead.');
900 * @deprecated use $OUTPUT->block() instead.
902 function print_side_block($heading='', $content='', $list=NULL, $icons=NULL, $footer='', $attributes = array(), $title='') {
903 throw new coding_exception('print_side_block() can not be used any more, please use $OUTPUT->block() instead.');
907 * Prints a basic textarea field.
909 * @deprecated since Moodle 2.0
911 * When using this function, you should
914 * @param bool $unused No longer used.
915 * @param int $rows Number of rows to display (minimum of 10 when $height is non-null)
916 * @param int $cols Number of columns to display (minimum of 65 when $width is non-null)
917 * @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.
918 * @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.
919 * @param string $name Name to use for the textarea element.
920 * @param string $value Initial content to display in the textarea.
921 * @param int $obsolete deprecated
922 * @param bool $return If false, will output string. If true, will return string value.
923 * @param string $id CSS ID to add to the textarea element.
924 * @return string|void depending on the value of $return
926 function print_textarea($unused, $rows, $cols, $width, $height, $name, $value='', $obsolete=0, $return=false, $id='') {
927 /// $width and height are legacy fields and no longer used as pixels like they used to be.
928 /// However, you can set them to zero to override the mincols and minrows values below.
930 // Disabling because there is not yet a viable $OUTPUT option for cases when mforms can't be used
931 // debugging('print_textarea() has been deprecated. You should be using mforms and the editor element.');
943 if ($height && ($rows < $minrows)) {
946 if ($width && ($cols < $mincols)) {
950 editors_head_setup();
951 $editor = editors_get_preferred_editor(FORMAT_HTML);
952 $editor->set_text($value);
953 $editor->use_editor($id, array('legacy'=>true));
955 $str .= "\n".'<textarea class="form-textarea" id="'. $id .'" name="'. $name .'" rows="'. $rows .'" cols="'. $cols .'" spellcheck="true">'."\n";
956 $str .= htmlspecialchars($value); // needed for editing of cleaned text!
957 $str .= '</textarea>'."\n";
966 * Returns an image of an up or down arrow, used for column sorting. To avoid unnecessary DB accesses, please
967 * provide this function with the language strings for sortasc and sortdesc.
969 * @deprecated use $OUTPUT->arrow() instead.
970 * @todo final deprecation of this function once MDL-45448 is resolved
972 * If no sort string is associated with the direction, an arrow with no alt text will be printed/returned.
975 * @param string $direction 'up' or 'down'
976 * @param string $strsort The language string used for the alt attribute of this image
977 * @param bool $return Whether to print directly or return the html string
978 * @return string|void depending on $return
981 function print_arrow($direction='up', $strsort=null, $return=false) {
984 debugging('print_arrow() is deprecated. Please use $OUTPUT->arrow() instead.', DEBUG_DEVELOPER);
986 if (!in_array($direction, array('up', 'down', 'right', 'left', 'move'))) {
992 switch ($direction) {
1007 // Prepare language string
1009 if (empty($strsort) && !empty($sortdir)) {
1010 $strsort = get_string('sort' . $sortdir, 'grades');
1013 $return = ' ' . $OUTPUT->pix_icon('t/' . $direction, $strsort) . ' ';
1023 * @deprecated since Moodle 2.0
1025 function choose_from_menu ($options, $name, $selected='', $nothing='choose', $script='',
1026 $nothingvalue='0', $return=false, $disabled=false, $tabindex=0,
1027 $id='', $listbox=false, $multiple=false, $class='') {
1028 throw new coding_exception('choose_from_menu() is removed. Please change your code to use html_writer::select().');
1033 * @deprecated use $OUTPUT->help_icon_scale($courseid, $scale) instead.
1035 function print_scale_menu_helpbutton($courseid, $scale, $return=false) {
1036 throw new coding_exception('print_scale_menu_helpbutton() can not be used any more. '.
1037 'Please use $OUTPUT->help_icon_scale($courseid, $scale) instead.');
1041 * @deprecated use html_writer::checkbox() instead.
1043 function print_checkbox($name, $value, $checked = true, $label = '', $alt = '', $script='', $return=false) {
1044 throw new coding_exception('print_checkbox() can not be used any more. Please use html_writer::checkbox() instead.');
1048 * Prints the 'update this xxx' button that appears on module pages.
1050 * @deprecated since Moodle 3.2
1052 * @param string $cmid the course_module id.
1053 * @param string $ignored not used any more. (Used to be courseid.)
1054 * @param string $string the module name - get_string('modulename', 'xxx')
1055 * @return string the HTML for the button, if this user has permission to edit it, else an empty string.
1057 function update_module_button($cmid, $ignored, $string) {
1058 global $CFG, $OUTPUT;
1060 debugging('update_module_button() has been deprecated and should not be used anymore. Activity modules should not add the ' .
1061 'edit module button, the link is already available in the Administration block. Themes can choose to display the link ' .
1062 'in the buttons row consistently for all module types.', DEBUG_DEVELOPER);
1064 if (has_capability('moodle/course:manageactivities', context_module::instance($cmid))) {
1065 $string = get_string('updatethis', '', $string);
1067 $url = new moodle_url("$CFG->wwwroot/course/mod.php", array('update' => $cmid, 'return' => true, 'sesskey' => sesskey()));
1068 return $OUTPUT->single_button($url, $string);
1075 * @deprecated use $OUTPUT->navbar() instead
1077 function print_navigation ($navigation, $separator=0, $return=false) {
1078 throw new coding_exception('print_navigation() can not be used any more, please update use $OUTPUT->navbar() instead.');
1082 * @deprecated Please use $PAGE->navabar methods instead.
1084 function build_navigation($extranavlinks, $cm = null) {
1085 throw new coding_exception('build_navigation() can not be used any more, please use $PAGE->navbar methods instead.');
1089 * @deprecated not relevant with global navigation in Moodle 2.x+
1091 function navmenu($course, $cm=NULL, $targetwindow='self') {
1092 throw new coding_exception('navmenu() can not be used any more, it is no longer relevant with global navigation.');
1095 /// CALENDAR MANAGEMENT ////////////////////////////////////////////////////////////////
1099 * @deprecated please use calendar_event::create() instead.
1101 function add_event($event) {
1102 throw new coding_exception('add_event() can not be used any more, please use calendar_event::create() instead.');
1106 * @deprecated please calendar_event->update() instead.
1108 function update_event($event) {
1109 throw new coding_exception('update_event() is removed, please use calendar_event->update() instead.');
1113 * @deprecated please use calendar_event->delete() instead.
1115 function delete_event($id) {
1116 throw new coding_exception('delete_event() can not be used any more, please use '.
1117 'calendar_event->delete() instead.');
1121 * @deprecated please use calendar_event->toggle_visibility(false) instead.
1123 function hide_event($event) {
1124 throw new coding_exception('hide_event() can not be used any more, please use '.
1125 'calendar_event->toggle_visibility(false) instead.');
1129 * @deprecated please use calendar_event->toggle_visibility(true) instead.
1131 function show_event($event) {
1132 throw new coding_exception('show_event() can not be used any more, please use '.
1133 'calendar_event->toggle_visibility(true) instead.');
1137 * @deprecated since Moodle 2.2 use core_text::xxxx() instead.
1140 function textlib_get_instance() {
1141 throw new coding_exception('textlib_get_instance() can not be used any more, please use '.
1142 'core_text::functioname() instead.');
1146 * @deprecated since 2.4
1147 * @see get_section_name()
1148 * @see format_base::get_section_name()
1151 function get_generic_section_name($format, stdClass $section) {
1152 throw new coding_exception('get_generic_section_name() is deprecated. Please use appropriate functionality from class format_base');
1156 * Returns an array of sections for the requested course id
1158 * It is usually not recommended to display the list of sections used
1159 * in course because the course format may have it's own way to do it.
1161 * If you need to just display the name of the section please call:
1162 * get_section_name($course, $section)
1163 * {@link get_section_name()}
1164 * from 2.4 $section may also be just the field course_sections.section
1166 * If you need the list of all sections it is more efficient to get this data by calling
1167 * $modinfo = get_fast_modinfo($courseorid);
1168 * $sections = $modinfo->get_section_info_all()
1169 * {@link get_fast_modinfo()}
1170 * {@link course_modinfo::get_section_info_all()}
1172 * Information about one section (instance of section_info):
1173 * get_fast_modinfo($courseorid)->get_sections_info($section)
1174 * {@link course_modinfo::get_section_info()}
1176 * @deprecated since 2.4
1178 function get_all_sections($courseid) {
1180 throw new coding_exception('get_all_sections() is removed. See phpdocs for this function');
1184 * This function is deprecated, please use {@link course_add_cm_to_section()}
1185 * Note that course_add_cm_to_section() also updates field course_modules.section and
1186 * calls rebuild_course_cache()
1188 * @deprecated since 2.4
1190 function add_mod_to_section($mod, $beforemod = null) {
1191 throw new coding_exception('Function add_mod_to_section() is removed, please use course_add_cm_to_section()');
1195 * Returns a number of useful structures for course displays
1197 * Function get_all_mods() is deprecated in 2.4
1200 * get_all_mods($courseid, $mods, $modnames, $modnamesplural, $modnamesused);
1204 * $mods = get_fast_modinfo($courseorid)->get_cms();
1205 * $modnames = get_module_types_names();
1206 * $modnamesplural = get_module_types_names(true);
1207 * $modnamesused = get_fast_modinfo($courseorid)->get_used_module_names();
1210 * @deprecated since 2.4
1212 function get_all_mods($courseid, &$mods, &$modnames, &$modnamesplural, &$modnamesused) {
1213 throw new coding_exception('Function get_all_mods() is removed. Use get_fast_modinfo() and get_module_types_names() instead. See phpdocs for details');
1217 * Returns course section - creates new if does not exist yet
1219 * This function is deprecated. To create a course section call:
1220 * course_create_sections_if_missing($courseorid, $sections);
1221 * to get the section call:
1222 * get_fast_modinfo($courseorid)->get_section_info($sectionnum);
1224 * @see course_create_sections_if_missing()
1225 * @see get_fast_modinfo()
1226 * @deprecated since 2.4
1228 function get_course_section($section, $courseid) {
1229 throw new coding_exception('Function get_course_section() is removed. Please use course_create_sections_if_missing() and get_fast_modinfo() instead.');
1233 * @deprecated since 2.4
1234 * @see format_weeks::get_section_dates()
1236 function format_weeks_get_section_dates($section, $course) {
1237 throw new coding_exception('Function format_weeks_get_section_dates() is removed. It is not recommended to'.
1238 ' use it outside of format_weeks plugin');
1242 * Deprecated. Instead of:
1243 * list($content, $name) = get_print_section_cm_text($cm, $course);
1245 * $content = $cm->get_formatted_content(array('overflowdiv' => true, 'noclean' => true));
1246 * $name = $cm->get_formatted_name();
1248 * @deprecated since 2.5
1249 * @see cm_info::get_formatted_content()
1250 * @see cm_info::get_formatted_name()
1252 function get_print_section_cm_text(cm_info $cm, $course) {
1253 throw new coding_exception('Function get_print_section_cm_text() is removed. Please use '.
1254 'cm_info::get_formatted_content() and cm_info::get_formatted_name()');
1258 * Deprecated. Please use:
1259 * $courserenderer = $PAGE->get_renderer('core', 'course');
1260 * $output = $courserenderer->course_section_add_cm_control($course, $section, $sectionreturn,
1261 * array('inblock' => $vertical));
1264 * @deprecated since 2.5
1265 * @see core_course_renderer::course_section_add_cm_control()
1267 function print_section_add_menus($course, $section, $modnames = null, $vertical=false, $return=false, $sectionreturn=null) {
1268 throw new coding_exception('Function print_section_add_menus() is removed. Please use course renderer '.
1269 'function course_section_add_cm_control()');
1273 * Deprecated. Please use:
1274 * $courserenderer = $PAGE->get_renderer('core', 'course');
1275 * $actions = course_get_cm_edit_actions($mod, $indent, $section);
1276 * return ' ' . $courserenderer->course_section_cm_edit_actions($actions);
1278 * @deprecated since 2.5
1279 * @see course_get_cm_edit_actions()
1280 * @see core_course_renderer->course_section_cm_edit_actions()
1282 function make_editing_buttons(stdClass $mod, $absolute_ignored = true, $moveselect = true, $indent=-1, $section=null) {
1283 throw new coding_exception('Function make_editing_buttons() is removed, please see PHPdocs in '.
1284 'lib/deprecatedlib.php on how to replace it');
1288 * Deprecated. Please use:
1289 * $courserenderer = $PAGE->get_renderer('core', 'course');
1290 * echo $courserenderer->course_section_cm_list($course, $section, $sectionreturn,
1291 * array('hidecompletion' => $hidecompletion));
1293 * @deprecated since 2.5
1294 * @see core_course_renderer::course_section_cm_list()
1296 function print_section($course, $section, $mods, $modnamesused, $absolute=false, $width="100%", $hidecompletion=false, $sectionreturn=null) {
1297 throw new coding_exception('Function print_section() is removed. Please use course renderer function '.
1298 'course_section_cm_list() instead.');
1302 * @deprecated since 2.5
1304 function print_overview($courses, array $remote_courses=array()) {
1305 throw new coding_exception('Function print_overview() is removed. Use block course_overview to display this information');
1309 * @deprecated since 2.5
1311 function print_recent_activity($course) {
1312 throw new coding_exception('Function print_recent_activity() is removed. It is not recommended to'.
1313 ' use it outside of block_recent_activity');
1317 * @deprecated since 2.5
1319 function delete_course_module($id) {
1320 throw new coding_exception('Function delete_course_module() is removed. Please use course_delete_module() instead.');
1324 * @deprecated since 2.5
1326 function update_category_button($categoryid = 0) {
1327 throw new coding_exception('Function update_category_button() is removed. Pages to view '.
1328 'and edit courses are now separate and no longer depend on editing mode.');
1332 * This function is deprecated! For list of categories use
1333 * coursecat::make_all_categories($requiredcapability, $excludeid, $separator)
1334 * For parents of one particular category use
1335 * coursecat::get($id)->get_parents()
1337 * @deprecated since 2.5
1339 function make_categories_list(&$list, &$parents, $requiredcapability = '',
1340 $excludeid = 0, $category = NULL, $path = "") {
1341 throw new coding_exception('Global function make_categories_list() is removed. Please use '.
1342 'coursecat::make_categories_list() and coursecat::get_parents()');
1346 * @deprecated since 2.5
1348 function category_delete_move($category, $newparentid, $showfeedback=true) {
1349 throw new coding_exception('Function category_delete_move() is removed. Please use coursecat::delete_move() instead.');
1353 * @deprecated since 2.5
1355 function category_delete_full($category, $showfeedback=true) {
1356 throw new coding_exception('Function category_delete_full() is removed. Please use coursecat::delete_full() instead.');
1360 * This function is deprecated. Please use
1361 * $coursecat = coursecat::get($category->id);
1362 * if ($coursecat->can_change_parent($newparentcat->id)) {
1363 * $coursecat->change_parent($newparentcat->id);
1366 * Alternatively you can use
1367 * $coursecat->update(array('parent' => $newparentcat->id));
1369 * @see coursecat::change_parent()
1370 * @see coursecat::update()
1371 * @deprecated since 2.5
1373 function move_category($category, $newparentcat) {
1374 throw new coding_exception('Function move_category() is removed. Please use coursecat::change_parent() instead.');
1378 * This function is deprecated. Please use
1379 * coursecat::get($category->id)->hide();
1381 * @see coursecat::hide()
1382 * @deprecated since 2.5
1384 function course_category_hide($category) {
1385 throw new coding_exception('Function course_category_hide() is removed. Please use coursecat::hide() instead.');
1389 * This function is deprecated. Please use
1390 * coursecat::get($category->id)->show();
1392 * @see coursecat::show()
1393 * @deprecated since 2.5
1395 function course_category_show($category) {
1396 throw new coding_exception('Function course_category_show() is removed. Please use coursecat::show() instead.');
1400 * This function is deprecated.
1401 * To get the category with the specified it please use:
1402 * coursecat::get($catid, IGNORE_MISSING);
1404 * coursecat::get($catid, MUST_EXIST);
1406 * To get the first available category please use
1407 * coursecat::get_default();
1409 * @deprecated since 2.5
1411 function get_course_category($catid=0) {
1412 throw new coding_exception('Function get_course_category() is removed. Please use coursecat::get(), see phpdocs for more details');
1416 * This function is deprecated. It is replaced with the method create() in class coursecat.
1417 * {@link coursecat::create()} also verifies the data, fixes sortorder and logs the action
1419 * @deprecated since 2.5
1421 function create_course_category($category) {
1422 throw new coding_exception('Function create_course_category() is removed. Please use coursecat::create(), see phpdocs for more details');
1426 * This function is deprecated.
1428 * To get visible children categories of the given category use:
1429 * coursecat::get($categoryid)->get_children();
1430 * This function will return the array or coursecat objects, on each of them
1431 * you can call get_children() again
1433 * @see coursecat::get()
1434 * @see coursecat::get_children()
1436 * @deprecated since 2.5
1438 function get_all_subcategories($catid) {
1439 throw new coding_exception('Function get_all_subcategories() is removed. Please use appropriate methods() of coursecat
1440 class. See phpdocs for more details');
1444 * This function is deprecated. Please use functions in class coursecat:
1445 * - coursecat::get($parentid)->has_children()
1446 * tells if the category has children (visible or not to the current user)
1448 * - coursecat::get($parentid)->get_children()
1449 * returns an array of coursecat objects, each of them represents a children category visible
1450 * to the current user (i.e. visible=1 or user has capability to view hidden categories)
1452 * - coursecat::get($parentid)->get_children_count()
1453 * returns number of children categories visible to the current user
1455 * - coursecat::count_all()
1456 * returns total count of all categories in the system (both visible and not)
1458 * - coursecat::get_default()
1459 * returns the first category (usually to be used if count_all() == 1)
1461 * @deprecated since 2.5
1463 function get_child_categories($parentid) {
1464 throw new coding_exception('Function get_child_categories() is removed. Use coursecat::get_children() or see phpdocs for
1470 * @deprecated since 2.5
1472 * This function is deprecated. Use appropriate functions from class coursecat.
1475 * coursecat::get($categoryid)->get_children()
1476 * - returns all children of the specified category as instances of class
1477 * coursecat, which means on each of them method get_children() can be called again.
1478 * Only categories visible to the current user are returned.
1480 * coursecat::get(0)->get_children()
1481 * - returns all top-level categories visible to the current user.
1483 * Sort fields can be specified, see phpdocs to {@link coursecat::get_children()}
1485 * coursecat::make_categories_list()
1486 * - returns an array of all categories id/names in the system.
1487 * Also only returns categories visible to current user and can additionally be
1488 * filetered by capability, see phpdocs to {@link coursecat::make_categories_list()}
1490 * make_categories_options()
1491 * - Returns full course categories tree to be used in html_writer::select()
1493 * Also see functions {@link coursecat::get_children_count()}, {@link coursecat::count_all()},
1494 * {@link coursecat::get_default()}
1496 function get_categories($parent='none', $sort=NULL, $shallow=true) {
1497 throw new coding_exception('Function get_categories() is removed. Please use coursecat::get_children() or see phpdocs for other alternatives');
1501 * This function is deprecated, please use course renderer:
1502 * $renderer = $PAGE->get_renderer('core', 'course');
1503 * echo $renderer->course_search_form($value, $format);
1505 * @deprecated since 2.5
1507 function print_course_search($value="", $return=false, $format="plain") {
1508 throw new coding_exception('Function print_course_search() is removed, please use course renderer');
1512 * This function is deprecated, please use:
1513 * $renderer = $PAGE->get_renderer('core', 'course');
1514 * echo $renderer->frontpage_my_courses()
1516 * @deprecated since 2.5
1518 function print_my_moodle() {
1519 throw new coding_exception('Function print_my_moodle() is removed, please use course renderer function frontpage_my_courses()');
1523 * This function is deprecated, it is replaced with protected function
1524 * {@link core_course_renderer::frontpage_remote_course()}
1525 * It is only used from function {@link core_course_renderer::frontpage_my_courses()}
1527 * @deprecated since 2.5
1529 function print_remote_course($course, $width="100%") {
1530 throw new coding_exception('Function print_remote_course() is removed, please use course renderer');
1534 * This function is deprecated, it is replaced with protected function
1535 * {@link core_course_renderer::frontpage_remote_host()}
1536 * It is only used from function {@link core_course_renderer::frontpage_my_courses()}
1538 * @deprecated since 2.5
1540 function print_remote_host($host, $width="100%") {
1541 throw new coding_exception('Function print_remote_host() is removed, please use course renderer');
1545 * @deprecated since 2.5
1547 * See http://docs.moodle.org/dev/Courses_lists_upgrade_to_2.5
1549 function print_whole_category_list($category=NULL, $displaylist=NULL, $parentslist=NULL, $depth=-1, $showcourses = true, $categorycourses=NULL) {
1550 throw new coding_exception('Function print_whole_category_list() is removed, please use course renderer');
1554 * @deprecated since 2.5
1556 function print_category_info($category, $depth = 0, $showcourses = false, array $courses = null) {
1557 throw new coding_exception('Function print_category_info() is removed, please use course renderer');
1561 * @deprecated since 2.5
1563 * This function is not used any more in moodle core and course renderer does not have render function for it.
1564 * Combo list on the front page is displayed as:
1565 * $renderer = $PAGE->get_renderer('core', 'course');
1566 * echo $renderer->frontpage_combo_list()
1568 * The new class {@link coursecat} stores the information about course category tree
1569 * To get children categories use:
1570 * coursecat::get($id)->get_children()
1571 * To get list of courses use:
1572 * coursecat::get($id)->get_courses()
1574 * See http://docs.moodle.org/dev/Courses_lists_upgrade_to_2.5
1576 function get_course_category_tree($id = 0, $depth = 0) {
1577 throw new coding_exception('Function get_course_category_tree() is removed, please use course renderer or coursecat class,
1578 see function phpdocs for more info');
1582 * @deprecated since 2.5
1584 * To print a generic list of courses use:
1585 * $renderer = $PAGE->get_renderer('core', 'course');
1586 * echo $renderer->courses_list($courses);
1588 * To print list of all courses:
1589 * $renderer = $PAGE->get_renderer('core', 'course');
1590 * echo $renderer->frontpage_available_courses();
1592 * To print list of courses inside category:
1593 * $renderer = $PAGE->get_renderer('core', 'course');
1594 * echo $renderer->course_category($category); // this will also print subcategories
1596 function print_courses($category) {
1597 throw new coding_exception('Function print_courses() is removed, please use course renderer');
1601 * @deprecated since 2.5
1603 * Please use course renderer to display a course information box.
1604 * $renderer = $PAGE->get_renderer('core', 'course');
1605 * echo $renderer->courses_list($courses); // will print list of courses
1606 * echo $renderer->course_info_box($course); // will print one course wrapped in div.generalbox
1608 function print_course($course, $highlightterms = '') {
1609 throw new coding_exception('Function print_course() is removed, please use course renderer');
1613 * @deprecated since 2.5
1615 * This function is not used any more in moodle core and course renderer does not have render function for it.
1616 * Combo list on the front page is displayed as:
1617 * $renderer = $PAGE->get_renderer('core', 'course');
1618 * echo $renderer->frontpage_combo_list()
1620 * The new class {@link coursecat} stores the information about course category tree
1621 * To get children categories use:
1622 * coursecat::get($id)->get_children()
1623 * To get list of courses use:
1624 * coursecat::get($id)->get_courses()
1626 function get_category_courses_array($categoryid = 0) {
1627 throw new coding_exception('Function get_category_courses_array() is removed, please use methods of coursecat class');
1631 * @deprecated since 2.5
1633 function get_category_courses_array_recursively(array &$flattened, $category) {
1634 throw new coding_exception('Function get_category_courses_array_recursively() is removed, please use methods of coursecat class', DEBUG_DEVELOPER);
1638 * @deprecated since Moodle 2.5 MDL-27814 - please do not use this function any more.
1640 function blog_get_context_url($context=null) {
1641 throw new coding_exception('Function blog_get_context_url() is removed, getting params from context is not reliable for blogs.');
1645 * @deprecated since 2.5
1647 * To get list of all courses with course contacts ('managers') use
1648 * coursecat::get(0)->get_courses(array('recursive' => true, 'coursecontacts' => true));
1650 * To get list of courses inside particular category use
1651 * coursecat::get($id)->get_courses(array('coursecontacts' => true));
1653 * Additionally you can specify sort order, offset and maximum number of courses,
1654 * see {@link coursecat::get_courses()}
1656 function get_courses_wmanagers($categoryid=0, $sort="c.sortorder ASC", $fields=array()) {
1657 throw new coding_exception('Function get_courses_wmanagers() is removed, please use coursecat::get_courses()');
1661 * @deprecated since 2.5
1663 function convert_tree_to_html($tree, $row=0) {
1664 throw new coding_exception('Function convert_tree_to_html() is removed. Consider using class tabtree and core_renderer::render_tabtree()');
1668 * @deprecated since 2.5
1670 function convert_tabrows_to_tree($tabrows, $selected, $inactive, $activated) {
1671 throw new coding_exception('Function convert_tabrows_to_tree() is removed. Consider using class tabtree');
1675 * @deprecated since 2.5 - do not use, the textrotate.js will work it out automatically
1677 function can_use_rotated_text() {
1678 debugging('can_use_rotated_text() is removed. JS feature detection is used automatically.');
1682 * @deprecated since Moodle 2.2 MDL-35009 - please do not use this function any more.
1683 * @see context::instance_by_id($id)
1685 function get_context_instance_by_id($id, $strictness = IGNORE_MISSING) {
1686 throw new coding_exception('get_context_instance_by_id() is now removed, please use context::instance_by_id($id) instead.');
1690 * Returns system context or null if can not be created yet.
1692 * @see context_system::instance()
1693 * @deprecated since 2.2
1694 * @param bool $cache use caching
1695 * @return context system context (null if context table not created yet)
1697 function get_system_context($cache = true) {
1698 debugging('get_system_context() is deprecated, please use context_system::instance() instead.', DEBUG_DEVELOPER);
1699 return context_system::instance(0, IGNORE_MISSING, $cache);
1703 * @see context::get_parent_context_ids()
1704 * @deprecated since 2.2, use $context->get_parent_context_ids() instead
1706 function get_parent_contexts(context $context, $includeself = false) {
1707 throw new coding_exception('get_parent_contexts() is removed, please use $context->get_parent_context_ids() instead.');
1711 * @deprecated since Moodle 2.2
1712 * @see context::get_parent_context()
1714 function get_parent_contextid(context $context) {
1715 throw new coding_exception('get_parent_contextid() is removed, please use $context->get_parent_context() instead.');
1719 * @see context::get_child_contexts()
1720 * @deprecated since 2.2
1722 function get_child_contexts(context $context) {
1723 throw new coding_exception('get_child_contexts() is removed, please use $context->get_child_contexts() instead.');
1727 * @see context_helper::create_instances()
1728 * @deprecated since 2.2
1730 function create_contexts($contextlevel = null, $buildpaths = true) {
1731 throw new coding_exception('create_contexts() is removed, please use context_helper::create_instances() instead.');
1735 * @see context_helper::cleanup_instances()
1736 * @deprecated since 2.2
1738 function cleanup_contexts() {
1739 throw new coding_exception('cleanup_contexts() is removed, please use context_helper::cleanup_instances() instead.');
1743 * Populate context.path and context.depth where missing.
1745 * @deprecated since 2.2
1747 function build_context_path($force = false) {
1748 throw new coding_exception('build_context_path() is removed, please use context_helper::build_all_paths() instead.');
1752 * @deprecated since 2.2
1754 function rebuild_contexts(array $fixcontexts) {
1755 throw new coding_exception('rebuild_contexts() is removed, please use $context->reset_paths(true) instead.');
1759 * @deprecated since Moodle 2.2
1760 * @see context_helper::preload_course()
1762 function preload_course_contexts($courseid) {
1763 throw new coding_exception('preload_course_contexts() is removed, please use context_helper::preload_course() instead.');
1767 * @deprecated since Moodle 2.2
1768 * @see context::update_moved()
1770 function context_moved(context $context, context $newparent) {
1771 throw new coding_exception('context_moved() is removed, please use context::update_moved() instead.');
1775 * @see context::get_capabilities()
1776 * @deprecated since 2.2
1778 function fetch_context_capabilities(context $context) {
1779 throw new coding_exception('fetch_context_capabilities() is removed, please use $context->get_capabilities() instead.');
1783 * @deprecated since 2.2
1784 * @see context_helper::preload_from_record()
1786 function context_instance_preload(stdClass $rec) {
1787 throw new coding_exception('context_instance_preload() is removed, please use context_helper::preload_from_record() instead.');
1791 * Returns context level name
1793 * @deprecated since 2.2
1794 * @see context_helper::get_level_name()
1796 function get_contextlevel_name($contextlevel) {
1797 throw new coding_exception('get_contextlevel_name() is removed, please use context_helper::get_level_name() instead.');
1801 * @deprecated since 2.2
1802 * @see context::get_context_name()
1804 function print_context_name(context $context, $withprefix = true, $short = false) {
1805 throw new coding_exception('print_context_name() is removed, please use $context->get_context_name() instead.');
1809 * @deprecated since 2.2, use $context->mark_dirty() instead
1810 * @see context::mark_dirty()
1812 function mark_context_dirty($path) {
1813 throw new coding_exception('mark_context_dirty() is removed, please use $context->mark_dirty() instead.');
1817 * @deprecated since Moodle 2.2
1818 * @see context_helper::delete_instance() or context::delete_content()
1820 function delete_context($contextlevel, $instanceid, $deleterecord = true) {
1821 if ($deleterecord) {
1822 throw new coding_exception('delete_context() is removed, please use context_helper::delete_instance() instead.');
1824 throw new coding_exception('delete_context() is removed, please use $context->delete_content() instead.');
1829 * @deprecated since 2.2
1830 * @see context::get_url()
1832 function get_context_url(context $context) {
1833 throw new coding_exception('get_context_url() is removed, please use $context->get_url() instead.');
1837 * @deprecated since 2.2
1838 * @see context::get_course_context()
1840 function get_course_context(context $context) {
1841 throw new coding_exception('get_course_context() is removed, please use $context->get_course_context(true) instead.');
1845 * @deprecated since 2.2
1846 * @see enrol_get_users_courses()
1848 function get_user_courses_bycap($userid, $cap, $accessdata_ignored, $doanything_ignored, $sort = 'c.sortorder ASC', $fields = null, $limit_ignored = 0) {
1850 throw new coding_exception('get_user_courses_bycap() is removed, please use enrol_get_users_courses() instead.');
1854 * @deprecated since Moodle 2.2
1856 function get_role_context_caps($roleid, context $context) {
1857 throw new coding_exception('get_role_context_caps() is removed, it is really slow. Don\'t use it.');
1861 * @see context::get_course_context()
1862 * @deprecated since 2.2
1864 function get_courseid_from_context(context $context) {
1865 throw new coding_exception('get_courseid_from_context() is removed, please use $context->get_course_context(false) instead.');
1869 * If you are using this methid, you should have something like this:
1871 * list($ctxselect, $ctxjoin) = context_instance_preload_sql('c.id', CONTEXT_COURSE, 'ctx');
1873 * To prevent the use of this deprecated function, replace the line above with something similar to this:
1875 * $ctxselect = ', ' . context_helper::get_preload_record_columns_sql('ctx');
1877 * $ctxjoin = "LEFT JOIN {context} ctx ON (ctx.instanceid = c.id AND ctx.contextlevel = :contextlevel)";
1879 * $params = array('contextlevel' => CONTEXT_COURSE);
1881 * @see context_helper:;get_preload_record_columns_sql()
1882 * @deprecated since 2.2
1884 function context_instance_preload_sql($joinon, $contextlevel, $tablealias) {
1885 throw new coding_exception('context_instance_preload_sql() is removed, please use context_helper::get_preload_record_columns_sql() instead.');
1889 * @deprecated since 2.2
1890 * @see context::get_parent_context_ids()
1892 function get_related_contexts_string(context $context) {
1893 throw new coding_exception('get_related_contexts_string() is removed, please use $context->get_parent_context_ids(true) instead.');
1897 * @deprecated since 2.6
1898 * @see core_component::get_plugin_list_with_file()
1900 function get_plugin_list_with_file($plugintype, $file, $include = false) {
1901 throw new coding_exception('get_plugin_list_with_file() is removed, please use core_component::get_plugin_list_with_file() instead.');
1905 * @deprecated since 2.6
1907 function check_browser_operating_system($brand) {
1908 throw new coding_exception('check_browser_operating_system is removed, please update your code to use core_useragent instead.');
1912 * @deprecated since 2.6
1914 function check_browser_version($brand, $version = null) {
1915 throw new coding_exception('check_browser_version is removed, please update your code to use core_useragent instead.');
1919 * @deprecated since 2.6
1921 function get_device_type() {
1922 throw new coding_exception('get_device_type is removed, please update your code to use core_useragent instead.');
1926 * @deprecated since 2.6
1928 function get_device_type_list($incusertypes = true) {
1929 throw new coding_exception('get_device_type_list is removed, please update your code to use core_useragent instead.');
1933 * @deprecated since 2.6
1935 function get_selected_theme_for_device_type($devicetype = null) {
1936 throw new coding_exception('get_selected_theme_for_device_type is removed, please update your code to use core_useragent instead.');
1940 * @deprecated since 2.6
1942 function get_device_cfg_var_name($devicetype = null) {
1943 throw new coding_exception('get_device_cfg_var_name is removed, please update your code to use core_useragent instead.');
1947 * @deprecated since 2.6
1949 function set_user_device_type($newdevice) {
1950 throw new coding_exception('set_user_device_type is removed, please update your code to use core_useragent instead.');
1954 * @deprecated since 2.6
1956 function get_user_device_type() {
1957 throw new coding_exception('get_user_device_type is removed, please update your code to use core_useragent instead.');
1961 * @deprecated since 2.6
1963 function get_browser_version_classes() {
1964 throw new coding_exception('get_browser_version_classes is removed, please update your code to use core_useragent instead.');
1968 * @deprecated since Moodle 2.6
1969 * @see core_user::get_support_user()
1971 function generate_email_supportuser() {
1972 throw new coding_exception('generate_email_supportuser is removed, please use core_user::get_support_user');
1976 * @deprecated since Moodle 2.6
1978 function badges_get_issued_badge_info($hash) {
1979 throw new coding_exception('Function badges_get_issued_badge_info() is removed. Please use core_badges_assertion class and methods to generate badge assertion.');
1983 * @deprecated since 2.6
1985 function can_use_html_editor() {
1986 throw new coding_exception('can_use_html_editor is removed, please update your code to assume it returns true.');
1991 * @deprecated since Moodle 2.7, use {@link user_count_login_failures()} instead.
1993 function count_login_failures($mode, $username, $lastlogin) {
1994 throw new coding_exception('count_login_failures() can not be used any more, please use user_count_login_failures().');
1998 * @deprecated since 2.7 MDL-33099/MDL-44088 - please do not use this function any more.
2000 function ajaxenabled(array $browsers = null) {
2001 throw new coding_exception('ajaxenabled() can not be used anymore. Update your code to work with JS at all times.');
2005 * @deprecated Since Moodle 2.7 MDL-44070
2007 function coursemodule_visible_for_user($cm, $userid=0) {
2008 throw new coding_exception('coursemodule_visible_for_user() can not be used any more,
2009 please use \core_availability\info_module::is_user_visible()');
2013 * @deprecated since Moodle 2.8 MDL-36014, MDL-35618 this functionality is removed
2015 function enrol_cohort_get_cohorts(course_enrolment_manager $manager) {
2016 throw new coding_exception('Function enrol_cohort_get_cohorts() is removed, use enrol_cohort_search_cohorts() or '.
2017 'cohort_get_available_cohorts() instead');
2021 * This function is deprecated, use {@link cohort_can_view_cohort()} instead since it also
2022 * takes into account current context
2024 * @deprecated since Moodle 2.8 MDL-36014 please use cohort_can_view_cohort()
2026 function enrol_cohort_can_view_cohort($cohortid) {
2027 throw new coding_exception('Function enrol_cohort_can_view_cohort() is removed, use cohort_can_view_cohort() instead');
2031 * It is advisable to use {@link cohort_get_available_cohorts()} instead.
2033 * @deprecated since Moodle 2.8 MDL-36014 use cohort_get_available_cohorts() instead
2035 function cohort_get_visible_list($course, $onlyenrolled=true) {
2036 throw new coding_exception('Function cohort_get_visible_list() is removed. Please use function cohort_get_available_cohorts() ".
2037 "that correctly checks capabilities.');
2041 * @deprecated since Moodle 2.8 MDL-35618 this functionality is removed
2043 function enrol_cohort_enrol_all_users(course_enrolment_manager $manager, $cohortid, $roleid) {
2044 throw new coding_exception('enrol_cohort_enrol_all_users() is removed. This functionality is moved to enrol_manual.');
2048 * @deprecated since Moodle 2.8 MDL-35618 this functionality is removed
2050 function enrol_cohort_search_cohorts(course_enrolment_manager $manager, $offset = 0, $limit = 25, $search = '') {
2051 throw new coding_exception('enrol_cohort_search_cohorts() is removed. This functionality is moved to enrol_manual.');
2054 /* === Apis deprecated in since Moodle 2.9 === */
2057 * Is $USER one of the supplied users?
2059 * $user2 will be null if viewing a user's recent conversations
2061 * @deprecated since Moodle 2.9 MDL-49371 - please do not use this function any more.
2063 function message_current_user_is_involved($user1, $user2) {
2064 throw new coding_exception('message_current_user_is_involved() can not be used any more.');
2068 * Print badges on user profile page.
2070 * @deprecated since Moodle 2.9 MDL-45898 - please do not use this function any more.
2072 function profile_display_badges($userid, $courseid = 0) {
2073 throw new coding_exception('profile_display_badges() can not be used any more.');
2077 * Adds user preferences elements to user edit form.
2079 * @deprecated since Moodle 2.9 MDL-45774 - Please do not use this function any more.
2081 function useredit_shared_definition_preferences($user, &$mform, $editoroptions = null, $filemanageroptions = null) {
2082 throw new coding_exception('useredit_shared_definition_preferences() can not be used any more.');
2087 * Convert region timezone to php supported timezone
2089 * @deprecated since Moodle 2.9
2091 function calendar_normalize_tz($tz) {
2092 throw new coding_exception('calendar_normalize_tz() can not be used any more, please use core_date::normalise_timezone() instead.');
2096 * Returns a float which represents the user's timezone difference from GMT in hours
2097 * Checks various settings and picks the most dominant of those which have a value
2098 * @deprecated since Moodle 2.9
2100 function get_user_timezone_offset($tz = 99) {
2101 throw new coding_exception('get_user_timezone_offset() can not be used any more, please use standard PHP DateTimeZone class instead');
2106 * Returns an int which represents the systems's timezone difference from GMT in seconds
2107 * @deprecated since Moodle 2.9
2109 function get_timezone_offset($tz) {
2110 throw new coding_exception('get_timezone_offset() can not be used any more, please use standard PHP DateTimeZone class instead');
2114 * Returns a list of timezones in the current language.
2115 * @deprecated since Moodle 2.9
2117 function get_list_of_timezones() {
2118 throw new coding_exception('get_list_of_timezones() can not be used any more, please use core_date::get_list_of_timezones() instead');
2122 * Previous internal API, it was not supposed to be used anywhere.
2123 * @deprecated since Moodle 2.9
2125 function update_timezone_records($timezones) {
2126 throw new coding_exception('update_timezone_records() can not be used any more, please use standard PHP DateTime class instead');
2130 * Previous internal API, it was not supposed to be used anywhere.
2131 * @deprecated since Moodle 2.9
2133 function calculate_user_dst_table($fromyear = null, $toyear = null, $strtimezone = null) {
2134 throw new coding_exception('calculate_user_dst_table() can not be used any more, please use standard PHP DateTime class instead');
2138 * Previous internal API, it was not supposed to be used anywhere.
2139 * @deprecated since Moodle 2.9
2141 function dst_changes_for_year($year, $timezone) {
2142 throw new coding_exception('dst_changes_for_year() can not be used any more, please use standard DateTime class instead');
2146 * Previous internal API, it was not supposed to be used anywhere.
2147 * @deprecated since Moodle 2.9
2149 function get_timezone_record($timezonename) {
2150 throw new coding_exception('get_timezone_record() can not be used any more, please use standard PHP DateTime class instead');
2153 /* === Apis deprecated since Moodle 3.0 === */
2155 * @deprecated since Moodle 3.0 MDL-49360 - please do not use this function any more.
2157 function get_referer($stripquery = true) {
2158 throw new coding_exception('get_referer() can not be used any more. Please use get_local_referer() instead.');
2162 * @deprecated since Moodle 3.0 use \core_useragent::is_web_crawler instead.
2164 function is_web_crawler() {
2165 throw new coding_exception('is_web_crawler() can not be used any more. Please use core_useragent::is_web_crawler() instead.');
2169 * @deprecated since Moodle 3.0 MDL-50287 - please do not use this function any more.
2171 function completion_cron() {
2172 throw new coding_exception('completion_cron() can not be used any more. Functionality has been moved to scheduled tasks.');
2176 * @deprecated since 3.0
2178 function coursetag_get_tags($courseid, $userid=0, $tagtype='', $numtags=0, $unused = '') {
2179 throw new coding_exception('Function coursetag_get_tags() can not be used any more. Userid is no longer used for tagging courses.');
2183 * @deprecated since 3.0
2185 function coursetag_get_all_tags($unused='', $numtags=0) {
2186 throw new coding_exception('Function coursetag_get_all_tag() can not be used any more. Userid is no longer used for tagging courses.');
2190 * @deprecated since 3.0
2192 function coursetag_get_jscript() {
2193 throw new coding_exception('Function coursetag_get_jscript() can not be used any more and is obsolete.');
2197 * @deprecated since 3.0
2199 function coursetag_get_jscript_links($elementid, $coursetagslinks) {
2200 throw new coding_exception('Function coursetag_get_jscript_links() can not be used any more and is obsolete.');
2204 * @deprecated since 3.0
2206 function coursetag_get_records($courseid, $userid) {
2207 throw new coding_exception('Function coursetag_get_records() can not be used any more. Userid is no longer used for tagging courses.');
2211 * @deprecated since 3.0
2213 function coursetag_store_keywords($tags, $courseid, $userid=0, $tagtype='official', $myurl='') {
2214 throw new coding_exception('Function coursetag_store_keywords() can not be used any more. Userid is no longer used for tagging courses.');
2218 * @deprecated since 3.0
2220 function coursetag_delete_keyword($tagid, $userid, $courseid) {
2221 throw new coding_exception('Function coursetag_delete_keyword() can not be used any more. Userid is no longer used for tagging courses.');
2225 * @deprecated since 3.0
2227 function coursetag_get_tagged_courses($tagid) {
2228 throw new coding_exception('Function coursetag_get_tagged_courses() can not be used any more. Userid is no longer used for tagging courses.');
2232 * @deprecated since 3.0
2234 function coursetag_delete_course_tags($courseid, $showfeedback=false) {
2235 throw new coding_exception('Function coursetag_delete_course_tags() is deprecated. Use core_tag_tag::remove_all_item_tags().');
2239 * Set the type of a tag. At this time (version 2.2) the possible values are 'default' or 'official'. Official tags will be
2240 * displayed separately "at tagging time" (while selecting the tags to apply to a record).
2243 * @deprecated since 3.1
2244 * @param string $tagid tagid to modify
2245 * @param string $type either 'default' or 'official'
2246 * @return bool true on success, false otherwise
2248 function tag_type_set($tagid, $type) {
2249 debugging('Function tag_type_set() is deprecated and can be replaced with use core_tag_tag::get($tagid)->update().', DEBUG_DEVELOPER);
2250 if ($tag = core_tag_tag::get($tagid, '*')) {
2251 return $tag->update(array('isstandard' => ($type === 'official') ? 1 : 0));
2257 * Set the description of a tag
2260 * @deprecated since 3.1
2261 * @param int $tagid the id of the tag
2262 * @param string $description the tag's description string to be set
2263 * @param int $descriptionformat the moodle text format of the description
2264 * {@link http://docs.moodle.org/dev/Text_formats_2.0#Database_structure}
2265 * @return bool true on success, false otherwise
2267 function tag_description_set($tagid, $description, $descriptionformat) {
2268 debugging('Function tag_type_set() is deprecated and can be replaced with core_tag_tag::get($tagid)->update().', DEBUG_DEVELOPER);
2269 if ($tag = core_tag_tag::get($tagid, '*')) {
2270 return $tag->update(array('description' => $description, 'descriptionformat' => $descriptionformat));
2276 * Get the array of db record of tags associated to a record (instances).
2279 * @deprecated since 3.1
2280 * @param string $record_type the record type for which we want to get the tags
2281 * @param int $record_id the record id for which we want to get the tags
2282 * @param string $type the tag type (either 'default' or 'official'). By default, all tags are returned.
2283 * @param int $userid (optional) only required for course tagging
2284 * @return array the array of tags
2286 function tag_get_tags($record_type, $record_id, $type=null, $userid=0) {
2287 debugging('Method tag_get_tags() is deprecated and replaced with core_tag_tag::get_item_tags(). ' .
2288 'Component is now required when retrieving tag instances.', DEBUG_DEVELOPER);
2289 $standardonly = ($type === 'official' ? core_tag_tag::STANDARD_ONLY :
2290 (!empty($type) ? core_tag_tag::NOT_STANDARD_ONLY : core_tag_tag::BOTH_STANDARD_AND_NOT));
2291 $tags = core_tag_tag::get_item_tags(null, $record_type, $record_id, $standardonly, $userid);
2293 foreach ($tags as $id => $t) {
2294 $rv[$id] = $t->to_object();
2300 * Get the array of tags display names, indexed by id.
2303 * @deprecated since 3.1
2304 * @param string $record_type the record type for which we want to get the tags
2305 * @param int $record_id the record id for which we want to get the tags
2306 * @param string $type the tag type (either 'default' or 'official'). By default, all tags are returned.
2307 * @return array the array of tags (with the value returned by core_tag_tag::make_display_name), indexed by id
2309 function tag_get_tags_array($record_type, $record_id, $type=null) {
2310 debugging('Method tag_get_tags_array() is deprecated and replaced with core_tag_tag::get_item_tags_array(). ' .
2311 'Component is now required when retrieving tag instances.', DEBUG_DEVELOPER);
2312 $standardonly = ($type === 'official' ? core_tag_tag::STANDARD_ONLY :
2313 (!empty($type) ? core_tag_tag::NOT_STANDARD_ONLY : core_tag_tag::BOTH_STANDARD_AND_NOT));
2314 return core_tag_tag::get_item_tags_array('', $record_type, $record_id, $standardonly);
2318 * Get a comma-separated string of tags associated to a record.
2320 * Use {@link tag_get_tags()} to get the same information in an array.
2323 * @deprecated since 3.1
2324 * @param string $record_type the record type for which we want to get the tags
2325 * @param int $record_id the record id for which we want to get the tags
2326 * @param int $html either TAG_RETURN_HTML or TAG_RETURN_TEXT, depending on the type of output desired
2327 * @param string $type either 'official' or 'default', if null, all tags are returned
2328 * @return string the comma-separated list of tags.
2330 function tag_get_tags_csv($record_type, $record_id, $html=null, $type=null) {
2331 global $CFG, $OUTPUT;
2332 debugging('Method tag_get_tags_csv() is deprecated. Instead you should use either ' .
2333 'core_tag_tag::get_item_tags_array() or $OUTPUT->tag_list(core_tag_tag::get_item_tags()). ' .
2334 'Component is now required when retrieving tag instances.', DEBUG_DEVELOPER);
2335 $standardonly = ($type === 'official' ? core_tag_tag::STANDARD_ONLY :
2336 (!empty($type) ? core_tag_tag::NOT_STANDARD_ONLY : core_tag_tag::BOTH_STANDARD_AND_NOT));
2337 if ($html != TAG_RETURN_TEXT) {
2338 return $OUTPUT->tag_list(core_tag_tag::get_item_tags('', $record_type, $record_id, $standardonly), '');
2340 return join(', ', core_tag_tag::get_item_tags_array('', $record_type, $record_id, $standardonly, 0, false));
2345 * Get an array of tag ids associated to a record.
2348 * @deprecated since 3.1
2349 * @param string $record_type the record type for which we want to get the tags
2350 * @param int $record_id the record id for which we want to get the tags
2351 * @return array tag ids, indexed and sorted by 'ordering'
2353 function tag_get_tags_ids($record_type, $record_id) {
2354 debugging('Method tag_get_tags_ids() is deprecated. Please consider using core_tag_tag::get_item_tags() or similar methods.', DEBUG_DEVELOPER);
2356 $tagobjects = core_tag_tag::get_item_tags(null, $record_type, $record_id);
2357 foreach ($tagobjects as $tagobject) {
2358 $tag = $tagobject->to_object();
2359 if ( array_key_exists($tag->ordering, $tag_ids) ) {
2362 $tag_ids[$tag->ordering] = $tag->id;
2369 * Returns the database ID of a set of tags.
2371 * @deprecated since 3.1
2372 * @param mixed $tags one tag, or array of tags, to look for.
2373 * @param bool $return_value specify the type of the returned value. Either TAG_RETURN_OBJECT, or TAG_RETURN_ARRAY (default).
2374 * If TAG_RETURN_ARRAY is specified, an array will be returned even if only one tag was passed in $tags.
2375 * @return mixed tag-indexed array of ids (or objects, if second parameter is TAG_RETURN_OBJECT), or only an int, if only one tag
2376 * is given *and* the second parameter is null. No value for a key means the tag wasn't found.
2378 function tag_get_id($tags, $return_value = null) {
2380 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(). ' .
2381 'You need to specify tag collection when retrieving tag by name', DEBUG_DEVELOPER);
2383 if (!is_array($tags)) {
2384 if(is_null($return_value) || $return_value == TAG_RETURN_OBJECT) {
2385 if ($tagobject = core_tag_tag::get_by_name(core_tag_collection::get_default(), $tags)) {
2386 return $tagobject->id;
2391 $tags = array($tags);
2394 $records = core_tag_tag::get_by_name_bulk(core_tag_collection::get_default(), $tags,
2395 $return_value == TAG_RETURN_OBJECT ? '*' : 'id, name');
2396 foreach ($records as $name => $record) {
2397 if ($return_value != TAG_RETURN_OBJECT) {
2398 $records[$name] = $record->id ? $record->id : null;
2400 $records[$name] = $record->to_object();
2407 * Change the "value" of a tag, and update the associated 'name'.
2410 * @deprecated since 3.1
2411 * @param int $tagid the id of the tag to modify
2412 * @param string $newrawname the new rawname
2413 * @return bool true on success, false otherwise
2415 function tag_rename($tagid, $newrawname) {
2416 debugging('Function tag_rename() is deprecated and may be replaced with core_tag_tag::get($tagid)->update().', DEBUG_DEVELOPER);
2417 if ($tag = core_tag_tag::get($tagid, '*')) {
2418 return $tag->update(array('rawname' => $newrawname));
2424 * Delete one instance of a tag. If the last instance was deleted, it will also delete the tag, unless its type is 'official'.
2427 * @deprecated since 3.1
2428 * @param string $record_type the type of the record for which to remove the instance
2429 * @param int $record_id the id of the record for which to remove the instance
2430 * @param int $tagid the tagid that needs to be removed
2431 * @param int $userid (optional) the userid
2432 * @return bool true on success, false otherwise
2434 function tag_delete_instance($record_type, $record_id, $tagid, $userid = null) {
2435 debugging('Function tag_delete_instance() is deprecated and replaced with core_tag_tag::remove_item_tag() instead. ' .
2436 'Component is required for retrieving instances', DEBUG_DEVELOPER);
2437 $tag = core_tag_tag::get($tagid);
2438 core_tag_tag::remove_item_tag('', $record_type, $record_id, $tag->rawname, $userid);
2442 * Find all records tagged with a tag of a given type ('post', 'user', etc.)
2445 * @deprecated since 3.1
2447 * @param string $tag tag to look for
2448 * @param string $type type to restrict search to. If null, every matching record will be returned
2449 * @param int $limitfrom (optional, required if $limitnum is set) return a subset of records, starting at this point.
2450 * @param int $limitnum (optional, required if $limitfrom is set) return a subset comprising this many records.
2451 * @return array of matching objects, indexed by record id, from the table containing the type requested
2453 function tag_find_records($tag, $type, $limitfrom='', $limitnum='') {
2454 debugging('Function tag_find_records() is deprecated and replaced with core_tag_tag::get_by_name()->get_tagged_items(). '.
2455 'You need to specify tag collection when retrieving tag by name', DEBUG_DEVELOPER);
2457 if (!$tag || !$type) {
2461 $tagobject = core_tag_tag::get_by_name(core_tag_area::get_collection('', $type), $tag);
2462 return $tagobject->get_tagged_items('', $type, $limitfrom, $limitnum);
2466 * Adds one or more tag in the database. This function should not be called directly : you should
2470 * @deprecated since 3.1
2471 * @param mixed $tags one tag, or an array of tags, to be created
2472 * @param string $type type of tag to be created ("default" is the default value and "official" is the only other supported
2473 * value at this time). An official tag is kept even if there are no records tagged with it.
2474 * @return array $tags ids indexed by their lowercase normalized names. Any boolean false in the array indicates an error while
2477 function tag_add($tags, $type="default") {
2478 debugging('Function tag_add() is deprecated. You can use core_tag_tag::create_if_missing(), however it should not be necessary ' .
2479 'since tags are created automatically when assigned to items', DEBUG_DEVELOPER);
2480 if (!is_array($tags)) {
2481 $tags = array($tags);
2483 $objects = core_tag_tag::create_if_missing(core_tag_collection::get_default(), $tags,
2484 $type === 'official');
2486 // New function returns the tags in different format, for BC we keep the format that this function used to have.
2488 foreach ($objects as $name => $tagobject) {
2489 if (isset($tagobject->id)) {
2490 $rv[$tagobject->name] = $tagobject->id;
2499 * Assigns a tag to a record; if the record already exists, the time and ordering will be updated.
2502 * @deprecated since 3.1
2503 * @param string $record_type the type of the record that will be tagged
2504 * @param int $record_id the id of the record that will be tagged
2505 * @param string $tagid the tag id to set on the record.
2506 * @param int $ordering the order of the instance for this record
2507 * @param int $userid (optional) only required for course tagging
2508 * @param string|null $component the component that was tagged
2509 * @param int|null $contextid the context id of where this tag was assigned
2510 * @return bool true on success, false otherwise
2512 function tag_assign($record_type, $record_id, $tagid, $ordering, $userid = 0, $component = null, $contextid = null) {
2514 $message = 'Function tag_assign() is deprecated. Use core_tag_tag::set_item_tags() or core_tag_tag::add_item_tag() instead. ' .
2515 'Tag instance ordering should not be set manually';
2516 if ($component === null || $contextid === null) {
2517 $message .= '. You should specify the component and contextid of the item being tagged in your call to tag_assign.';
2519 debugging($message, DEBUG_DEVELOPER);
2522 $context = context::instance_by_id($contextid);
2524 $context = context_system::instance();
2528 $tag = $DB->get_record('tag', array('id' => $tagid), 'name, rawname', MUST_EXIST);
2530 $taginstanceid = core_tag_tag::add_item_tag($component, $record_type, $record_id, $context, $tag->rawname, $userid);
2532 // Alter the "ordering" of tag_instance. This should never be done manually and only remains here for the backward compatibility.
2533 $taginstance = new stdClass();
2534 $taginstance->id = $taginstanceid;
2535 $taginstance->ordering = $ordering;
2536 $taginstance->timemodified = time();
2538 $DB->update_record('tag_instance', $taginstance);
2544 * Count how many records are tagged with a specific tag.
2547 * @deprecated since 3.1
2548 * @param string $record_type record to look for ('post', 'user', etc.)
2549 * @param int $tagid is a single tag id
2550 * @return int number of mathing tags.
2552 function tag_record_count($record_type, $tagid) {
2553 debugging('Method tag_record_count() is deprecated and replaced with core_tag_tag::get($tagid)->count_tagged_items(). '.
2554 'Component is now required when retrieving tag instances.', DEBUG_DEVELOPER);
2555 return core_tag_tag::get($tagid)->count_tagged_items('', $record_type);
2559 * Determine if a record is tagged with a specific tag
2562 * @deprecated since 3.1
2563 * @param string $record_type the record type to look for
2564 * @param int $record_id the record id to look for
2565 * @param string $tag a tag name
2566 * @return bool/int true if it is tagged, 0 (false) otherwise
2568 function tag_record_tagged_with($record_type, $record_id, $tag) {
2569 debugging('Method tag_record_tagged_with() is deprecated and replaced with core_tag_tag::get($tagid)->is_item_tagged_with(). '.
2570 'Component is now required when retrieving tag instances.', DEBUG_DEVELOPER);
2571 return core_tag_tag::is_item_tagged_with('', $record_type, $record_id, $tag);
2575 * Flag a tag as inappropriate.
2577 * @deprecated since 3.1
2578 * @param int|array $tagids a single tagid, or an array of tagids
2580 function tag_set_flag($tagids) {
2581 debugging('Function tag_set_flag() is deprecated and replaced with core_tag_tag::get($tagid)->flag().', DEBUG_DEVELOPER);
2582 $tagids = (array) $tagids;
2583 foreach ($tagids as $tagid) {
2584 if ($tag = core_tag_tag::get($tagid, '*')) {
2591 * Remove the inappropriate flag on a tag.
2593 * @deprecated since 3.1
2594 * @param int|array $tagids a single tagid, or an array of tagids
2596 function tag_unset_flag($tagids) {
2597 debugging('Function tag_unset_flag() is deprecated and replaced with core_tag_tag::get($tagid)->reset_flag().', DEBUG_DEVELOPER);
2598 $tagids = (array) $tagids;
2599 foreach ($tagids as $tagid) {
2600 if ($tag = core_tag_tag::get($tagid, '*')) {
2607 * Prints or returns a HTML tag cloud with varying classes styles depending on the popularity and type of each tag.
2609 * @deprecated since 3.1
2611 * @param array $tagset Array of tags to display
2612 * @param int $nr_of_tags Limit for the number of tags to return/display, used if $tagset is null
2613 * @param bool $return if true the function will return the generated tag cloud instead of displaying it.
2614 * @param string $sort (optional) selected sorting, default is alpha sort (name) also timemodified or popularity
2615 * @return string|null a HTML string or null if this function does the output
2617 function tag_print_cloud($tagset=null, $nr_of_tags=150, $return=false, $sort='') {
2620 debugging('Function tag_print_cloud() is deprecated and replaced with function core_tag_collection::get_tag_cloud(), '
2621 . 'templateable core_tag\output\tagcloud and template core_tag/tagcloud.', DEBUG_DEVELOPER);
2623 // Set up sort global - used to pass sort type into core_tag_collection::cloud_sort through usort() avoiding multiple sort functions.
2624 if ($sort == 'popularity') {
2626 } else if ($sort == 'date') {
2627 $sort = 'timemodified';
2632 if (is_null($tagset)) {
2633 // No tag set received, so fetch tags from database.
2634 // Always add query by tagcollid even when it's not known to make use of the table index.
2635 $tagcloud = core_tag_collection::get_tag_cloud(0, false, $nr_of_tags, $sort);
2637 $tagsincloud = $tagset;
2640 foreach ($tagsincloud as $tag) {
2644 core_tag_collection::$cloudsortfield = $sort;
2645 usort($tagsincloud, "core_tag_collection::cloud_sort");
2647 $tagcloud = new \core_tag\output\tagcloud($tagsincloud);
2650 $output = $OUTPUT->render_from_template('core_tag/tagcloud', $tagcloud->export_for_template($OUTPUT));
2659 * Function that returns tags that start with some text, for use by the autocomplete feature
2662 * @deprecated since 3.0
2664 * @param string $text string that the tag names will be matched against
2665 * @return mixed an array of objects, or false if no records were found or an error occured.
2667 function tag_autocomplete($text) {
2668 debugging('Function tag_autocomplete() is deprecated without replacement. ' .
2669 'New form element "tags" does proper autocomplete.', DEBUG_DEVELOPER);
2671 return $DB->get_records_sql("SELECT tg.id, tg.name, tg.rawname
2673 WHERE tg.name LIKE ?", array(core_text::strtolower($text)."%"));
2677 * Prints a box with the description of a tag and its related tags
2680 * @deprecated since 3.1
2681 * @param stdClass $tag_object
2682 * @param bool $return if true the function will return the generated tag cloud instead of displaying it.
2683 * @return string/null a HTML box showing a description of the tag object and it's relationsips or null if output is done directly
2686 function tag_print_description_box($tag_object, $return=false) {
2687 global $USER, $CFG, $OUTPUT;
2688 require_once($CFG->libdir.'/filelib.php');
2690 debugging('Function tag_print_description_box() is deprecated without replacement. ' .
2691 'See core_tag_renderer for similar code.', DEBUG_DEVELOPER);
2693 $relatedtags = array();
2694 if ($tag = core_tag_tag::get($tag_object->id)) {
2695 $relatedtags = $tag->get_related_tags();
2698 $content = !empty($tag_object->description);
2702 $output .= $OUTPUT->box_start('generalbox tag-description');
2705 if (!empty($tag_object->description)) {
2706 $options = new stdClass();
2707 $options->para = false;
2708 $options->overflowdiv = true;
2709 $tag_object->description = file_rewrite_pluginfile_urls($tag_object->description, 'pluginfile.php', context_system::instance()->id, 'tag', 'description', $tag_object->id);
2710 $output .= format_text($tag_object->description, $tag_object->descriptionformat, $options);
2714 $output .= $OUTPUT->box_end();
2718 $output .= $OUTPUT->tag_list($relatedtags, get_string('relatedtags', 'tag'), 'tag-relatedtags');
2729 * Prints a box that contains the management links of a tag
2731 * @deprecated since 3.1
2732 * @param core_tag_tag|stdClass $tag_object
2733 * @param bool $return if true the function will return the generated tag cloud instead of displaying it.
2734 * @return string|null a HTML string or null if this function does the output
2736 function tag_print_management_box($tag_object, $return=false) {
2737 global $USER, $CFG, $OUTPUT;
2739 debugging('Function tag_print_description_box() is deprecated without replacement. ' .
2740 'See core_tag_renderer for similar code.', DEBUG_DEVELOPER);
2742 $tagname = core_tag_tag::make_display_name($tag_object);
2745 if (!isguestuser()) {
2746 $output .= $OUTPUT->box_start('box','tag-management-box');
2747 $systemcontext = context_system::instance();
2750 // Add a link for users to add/remove this from their interests
2751 if (core_tag_tag::is_enabled('core', 'user') && core_tag_area::get_collection('core', 'user') == $tag_object->tagcollid) {
2752 if (core_tag_tag::is_item_tagged_with('core', 'user', $USER->id, $tag_object->name)) {
2753 $links[] = '<a href="'. $CFG->wwwroot .'/tag/user.php?action=removeinterest&sesskey='. sesskey() .
2754 '&tag='. rawurlencode($tag_object->name) .'">'.
2755 get_string('removetagfrommyinterests', 'tag', $tagname) .'</a>';
2757 $links[] = '<a href="'. $CFG->wwwroot .'/tag/user.php?action=addinterest&sesskey='. sesskey() .
2758 '&tag='. rawurlencode($tag_object->name) .'">'.
2759 get_string('addtagtomyinterests', 'tag', $tagname) .'</a>';
2763 // Flag as inappropriate link. Only people with moodle/tag:flag capability.
2764 if (has_capability('moodle/tag:flag', $systemcontext)) {
2765 $links[] = '<a href="'. $CFG->wwwroot .'/tag/user.php?action=flaginappropriate&sesskey='.
2766 sesskey() . '&id='. $tag_object->id . '">'. get_string('flagasinappropriate',
2767 'tag', rawurlencode($tagname)) .'</a>';
2770 // Edit tag: Only people with moodle/tag:edit capability who either have it as an interest or can manage tags
2771 if (has_capability('moodle/tag:edit', $systemcontext) ||
2772 has_capability('moodle/tag:manage', $systemcontext)) {
2773 $links[] = '<a href="' . $CFG->wwwroot . '/tag/edit.php?id=' . $tag_object->id . '">' .
2774 get_string('edittag', 'tag') . '</a>';
2777 $output .= implode(' | ', $links);
2778 $output .= $OUTPUT->box_end();
2789 * Prints the tag search box
2791 * @deprecated since 3.1
2792 * @param bool $return if true return html string
2793 * @return string|null a HTML string or null if this function does the output
2795 function tag_print_search_box($return=false) {
2796 global $CFG, $OUTPUT;
2798 debugging('Function tag_print_search_box() is deprecated without replacement. ' .
2799 'See core_tag_renderer for similar code.', DEBUG_DEVELOPER);
2801 $query = optional_param('query', '', PARAM_RAW);
2803 $output = $OUTPUT->box_start('','tag-search-box');
2804 $output .= '<form action="'.$CFG->wwwroot.'/tag/search.php" style="display:inline">';
2806 $output .= '<label class="accesshide" for="searchform_search">'.get_string('searchtags', 'tag').'</label>';
2807 $output .= '<input id="searchform_search" name="query" type="text" size="40" value="'.s($query).'" />';
2808 $output .= '<button id="searchform_button" type="submit">'. get_string('search', 'tag') .'</button><br />';
2809 $output .= '</div>';
2810 $output .= '</form>';
2811 $output .= $OUTPUT->box_end();
2822 * Prints the tag search results
2824 * @deprecated since 3.1
2825 * @param string $query text that tag names will be matched against
2826 * @param int $page current page
2827 * @param int $perpage nr of users displayed per page
2828 * @param bool $return if true return html string
2829 * @return string|null a HTML string or null if this function does the output
2831 function tag_print_search_results($query, $page, $perpage, $return=false) {
2832 global $CFG, $USER, $OUTPUT;
2834 debugging('Function tag_print_search_results() is deprecated without replacement. ' .
2835 'In /tag/search.php the search results are printed using the core_tag/tagcloud template.', DEBUG_DEVELOPER);
2837 $query = clean_param($query, PARAM_TAG);
2839 $count = count(tag_find_tags($query, false));
2842 if ( $found_tags = tag_find_tags($query, true, $page * $perpage, $perpage) ) {
2843 $tags = array_values($found_tags);
2846 $baseurl = $CFG->wwwroot.'/tag/search.php?query='. rawurlencode($query);
2849 // link "Add $query to my interests"
2851 if (core_tag_tag::is_enabled('core', 'user') && !core_tag_tag::is_item_tagged_with('core', 'user', $USER->id, $query)) {
2852 $addtaglink = html_writer::link(new moodle_url('/tag/user.php', array('action' => 'addinterest', 'sesskey' => sesskey(),
2853 'tag' => $query)), get_string('addtagtomyinterests', 'tag', s($query)));
2856 if ( !empty($tags) ) { // there are results to display!!
2857 $output .= $OUTPUT->heading(get_string('searchresultsfor', 'tag', htmlspecialchars($query)) ." : {$count}", 3, 'main');
2859 //print a link "Add $query to my interests"
2860 if (!empty($addtaglink)) {
2861 $output .= $OUTPUT->box($addtaglink, 'box', 'tag-management-box');
2864 $nr_of_lis_per_ul = 6;
2865 $nr_of_uls = ceil( sizeof($tags) / $nr_of_lis_per_ul );
2867 $output .= '<ul id="tag-search-results">';
2868 for($i = 0; $i < $nr_of_uls; $i++) {
2869 foreach (array_slice($tags, $i * $nr_of_lis_per_ul, $nr_of_lis_per_ul) as $tag) {
2871 $tag_link = html_writer::link(core_tag_tag::make_url($tag->tagcollid, $tag->rawname),
2872 core_tag_tag::make_display_name($tag));
2873 $output .= $tag_link;
2878 $output .= '<div> </div>'; // <-- small layout hack in order to look good in Firefox
2880 $output .= $OUTPUT->paging_bar($count, $page, $perpage, $baseurl);
2882 else { //no results were found!!
2883 $output .= $OUTPUT->heading(get_string('noresultsfor', 'tag', htmlspecialchars($query)), 3, 'main');
2885 //print a link "Add $query to my interests"
2886 if (!empty($addtaglink)) {
2887 $output .= $OUTPUT->box($addtaglink, 'box', 'tag-management-box');
2900 * Prints a table of the users tagged with the tag passed as argument
2902 * @deprecated since 3.1
2903 * @param stdClass $tagobject the tag we wish to return data for
2904 * @param int $limitfrom (optional, required if $limitnum is set) prints users starting at this point.
2905 * @param int $limitnum (optional, required if $limitfrom is set) prints this many users.
2906 * @param bool $return if true return html string
2907 * @return string|null a HTML string or null if this function does the output
2909 function tag_print_tagged_users_table($tagobject, $limitfrom='', $limitnum='', $return=false) {
2911 debugging('Function tag_print_tagged_users_table() is deprecated without replacement. ' .
2912 'See core_user_renderer for similar code.', DEBUG_DEVELOPER);
2914 //List of users with this tag
2915 $tagobject = core_tag_tag::get($tagobject->id);
2916 $userlist = $tagobject->get_tagged_items('core', 'user', $limitfrom, $limitnum);
2918 $output = tag_print_user_list($userlist, true);
2929 * Prints an individual user box
2931 * @deprecated since 3.1
2932 * @param user_object $user (contains the following fields: id, firstname, lastname and picture)
2933 * @param bool $return if true return html string
2934 * @return string|null a HTML string or null if this function does the output
2936 function tag_print_user_box($user, $return=false) {
2937 global $CFG, $OUTPUT;
2939 debugging('Function tag_print_user_box() is deprecated without replacement. ' .
2940 'See core_user_renderer for similar code.', DEBUG_DEVELOPER);
2942 $usercontext = context_user::instance($user->id);
2945 if ($usercontext and (has_capability('moodle/user:viewdetails', $usercontext) || has_coursecontact_role($user->id))) {
2946 $profilelink = $CFG->wwwroot .'/user/view.php?id='. $user->id;
2949 $output = $OUTPUT->box_start('user-box', 'user'. $user->id);
2950 $fullname = fullname($user);
2953 if (!empty($profilelink)) {
2954 $output .= '<a href="'. $profilelink .'">';
2958 $output .= $OUTPUT->user_picture($user, array('size'=>100));
2959 $output .= '<br />';
2961 if (!empty($profilelink)) {
2965 //truncate name if it's too big
2966 if (core_text::strlen($fullname) > 26) {
2967 $fullname = core_text::substr($fullname, 0, 26) .'...';
2970 $output .= '<strong>'. $fullname .'</strong>';
2971 $output .= $OUTPUT->box_end();
2982 * Prints a list of users
2984 * @deprecated since 3.1
2985 * @param array $userlist an array of user objects
2986 * @param bool $return if true return html string, otherwise output the result
2987 * @return string|null a HTML string or null if this function does the output
2989 function tag_print_user_list($userlist, $return=false) {
2991 debugging('Function tag_print_user_list() is deprecated without replacement. ' .
2992 'See core_user_renderer for similar code.', DEBUG_DEVELOPER);
2994 $output = '<div><ul class="inline-list">';
2996 foreach ($userlist as $user){
2997 $output .= '<li>'. tag_print_user_box($user, true) ."</li>\n";
2999 $output .= "</ul></div>\n";
3010 * Function that returns the name that should be displayed for a specific tag
3014 * @deprecated since 3.1
3015 * @param stdClass|core_tag_tag $tagobject a line out of tag table, as returned by the adobd functions
3016 * @param int $html TAG_RETURN_HTML (default) will return htmlspecialchars encoded string, TAG_RETURN_TEXT will not encode.
3019 function tag_display_name($tagobject, $html=TAG_RETURN_HTML) {
3020 debugging('Function tag_display_name() is deprecated. Use core_tag_tag::make_display_name().', DEBUG_DEVELOPER);
3021 if (!isset($tagobject->name)) {
3024 return core_tag_tag::make_display_name($tagobject, $html != TAG_RETURN_TEXT);
3028 * Function that normalizes a list of tag names.
3031 * @deprecated since 3.1
3032 * @param array/string $rawtags array of tags, or a single tag.
3033 * @param int $case case to use for returned value (default: lower case). Either TAG_CASE_LOWER (default) or TAG_CASE_ORIGINAL
3034 * @return array lowercased normalized tags, indexed by the normalized tag, in the same order as the original array.
3035 * (Eg: 'Banana' => 'banana').
3037 function tag_normalize($rawtags, $case = TAG_CASE_LOWER) {
3038 debugging('Function tag_normalize() is deprecated. Use core_tag_tag::normalize().', DEBUG_DEVELOPER);
3040 if ( !is_array($rawtags) ) {
3041 $rawtags = array($rawtags);
3044 return core_tag_tag::normalize($rawtags, $case == TAG_CASE_LOWER);
3048 * Get a comma-separated list of tags related to another tag.
3051 * @deprecated since 3.1
3052 * @param array $related_tags the array returned by tag_get_related_tags
3053 * @param int $html either TAG_RETURN_HTML (default) or TAG_RETURN_TEXT : return html links, or just text.
3054 * @return string comma-separated list
3056 function tag_get_related_tags_csv($related_tags, $html=TAG_RETURN_HTML) {
3058 debugging('Method tag_get_related_tags_csv() is deprecated. Consider '
3059 . 'looping through array or using $OUTPUT->tag_list(core_tag_tag::get_item_tags())',
3061 if ($html != TAG_RETURN_TEXT) {
3062 return $OUTPUT->tag_list($related_tags, '');
3065 $tagsnames = array();
3066 foreach ($related_tags as $tag) {
3067 $tagsnames[] = core_tag_tag::make_display_name($tag, false);
3069 return implode(', ', $tagsnames);
3073 * Used to require that the return value from a function is an array.
3074 * Only used in the deprecated function {@link tag_get_id()}
3075 * @deprecated since 3.1
3077 define('TAG_RETURN_ARRAY', 0);
3079 * Used to require that the return value from a function is an object.
3080 * Only used in the deprecated function {@link tag_get_id()}
3081 * @deprecated since 3.1
3083 define('TAG_RETURN_OBJECT', 1);
3085 * Use to specify that HTML free text is expected to be returned from a function.
3086 * Only used in deprecated functions {@link tag_get_tags_csv()}, {@link tag_display_name()},
3087 * {@link tag_get_related_tags_csv()}
3088 * @deprecated since 3.1
3090 define('TAG_RETURN_TEXT', 2);
3092 * Use to specify that encoded HTML is expected to be returned from a function.
3093 * Only used in deprecated functions {@link tag_get_tags_csv()}, {@link tag_display_name()},
3094 * {@link tag_get_related_tags_csv()}
3095 * @deprecated since 3.1
3097 define('TAG_RETURN_HTML', 3);
3100 * Used to specify that we wish a lowercased string to be returned
3101 * Only used in deprecated function {@link tag_normalize()}
3102 * @deprecated since 3.1
3104 define('TAG_CASE_LOWER', 0);
3106 * Used to specify that we do not wish the case of the returned string to change
3107 * Only used in deprecated function {@link tag_normalize()}
3108 * @deprecated since 3.1
3110 define('TAG_CASE_ORIGINAL', 1);
3113 * Used to specify that we want all related tags returned, no matter how they are related.
3114 * Only used in deprecated function {@link tag_get_related_tags()}
3115 * @deprecated since 3.1
3117 define('TAG_RELATED_ALL', 0);
3119 * Used to specify that we only want back tags that were manually related.
3120 * Only used in deprecated function {@link tag_get_related_tags()}
3121 * @deprecated since 3.1
3123 define('TAG_RELATED_MANUAL', 1);
3125 * Used to specify that we only want back tags where the relationship was automatically correlated.
3126 * Only used in deprecated function {@link tag_get_related_tags()}
3127 * @deprecated since 3.1
3129 define('TAG_RELATED_CORRELATED', 2);
3132 * Set the tags assigned to a record. This overwrites the current tags.
3134 * This function is meant to be fed the string coming up from the user interface, which contains all tags assigned to a record.
3136 * Due to API change $component and $contextid are now required. Instead of
3137 * calling this function you can use {@link core_tag_tag::set_item_tags()} or
3138 * {@link core_tag_tag::set_related_tags()}
3141 * @deprecated since 3.1
3142 * @param string $itemtype the type of record to tag ('post' for blogs, 'user' for users, 'tag' for tags, etc.)
3143 * @param int $itemid the id of the record to tag
3144 * @param array $tags the array of tags to set on the record. If given an empty array, all tags will be removed.
3145 * @param string|null $component the component that was tagged
3146 * @param int|null $contextid the context id of where this tag was assigned
3149 function tag_set($itemtype, $itemid, $tags, $component = null, $contextid = null) {
3150 debugging('Function tag_set() is deprecated. Use ' .
3151 ' core_tag_tag::set_item_tags() instead', DEBUG_DEVELOPER);
3153 if ($itemtype === 'tag') {
3154 return core_tag_tag::get($itemid, '*', MUST_EXIST)->set_related_tags($tags);
3156 $context = $contextid ? context::instance_by_id($contextid) : context_system::instance();
3157 return core_tag_tag::set_item_tags($component, $itemtype, $itemid, $context, $tags);
3162 * Adds a tag to a record, without overwriting the current tags.
3164 * This function remains here for backward compatiblity. It is recommended to use
3165 * {@link core_tag_tag::add_item_tag()} or {@link core_tag_tag::add_related_tags()} instead
3168 * @deprecated since 3.1
3169 * @param string $itemtype the type of record to tag ('post' for blogs, 'user' for users, etc.)
3170 * @param int $itemid the id of the record to tag
3171 * @param string $tag the tag to add
3172 * @param string|null $component the component that was tagged
3173 * @param int|null $contextid the context id of where this tag was assigned
3176 function tag_set_add($itemtype, $itemid, $tag, $component = null, $contextid = null) {
3177 debugging('Function tag_set_add() is deprecated. Use ' .
3178 ' core_tag_tag::add_item_tag() instead', DEBUG_DEVELOPER);
3180 if ($itemtype === 'tag') {
3181 return core_tag_tag::get($itemid, '*', MUST_EXIST)->add_related_tags(array($tag));
3183 $context = $contextid ? context::instance_by_id($contextid) : context_system::instance();
3184 return core_tag_tag::add_item_tag($component, $itemtype, $itemid, $context, $tag);
3189 * Removes a tag from a record, without overwriting other current tags.
3191 * This function remains here for backward compatiblity. It is recommended to use
3192 * {@link core_tag_tag::remove_item_tag()} instead
3195 * @deprecated since 3.1
3196 * @param string $itemtype the type of record to tag ('post' for blogs, 'user' for users, etc.)
3197 * @param int $itemid the id of the record to tag
3198 * @param string $tag the tag to delete
3199 * @param string|null $component the component that was tagged
3200 * @param int|null $contextid the context id of where this tag was assigned
3203 function tag_set_delete($itemtype, $itemid, $tag, $component = null, $contextid = null) {
3204 debugging('Function tag_set_delete() is deprecated. Use ' .
3205 ' core_tag_tag::remove_item_tag() instead', DEBUG_DEVELOPER);
3206 return core_tag_tag::remove_item_tag($component, $itemtype, $itemid, $tag);
3210 * Simple function to just return a single tag object when you know the name or something
3212 * See also {@link core_tag_tag::get()} and {@link core_tag_tag::get_by_name()}
3215 * @deprecated since 3.1
3216 * @param string $field which field do we use to identify the tag: id, name or rawname
3217 * @param string $value the required value of the aforementioned field
3218 * @param string $returnfields which fields do we want returned. This is a comma seperated string containing any combination of
3219 * 'id', 'name', 'rawname' or '*' to include all fields.
3220 * @return mixed tag object
3222 function tag_get($field, $value, $returnfields='id, name, rawname, tagcollid') {
3224 debugging('Function tag_get() is deprecated. Use ' .
3225 ' core_tag_tag::get() or core_tag_tag::get_by_name()',
3227 if ($field === 'id') {
3228 $tag = core_tag_tag::get((int)$value, $returnfields);
3229 } else if ($field === 'name') {
3230 $tag = core_tag_tag::get_by_name(0, $value, $returnfields);
3232 $params = array($field => $value);
3233 return $DB->get_record('tag', $params, $returnfields);
3236 return $tag->to_object();
3242 * Returns tags related to a tag
3244 * Related tags of a tag come from two sources:
3245 * - manually added related tags, which are tag_instance entries for that tag
3246 * - correlated tags, which are calculated
3249 * @deprecated since 3.1
3250 * @param string $tagid is a single **normalized** tag name or the id of a tag
3251 * @param int $type the function will return either manually (TAG_RELATED_MANUAL) related tags or correlated
3252 * (TAG_RELATED_CORRELATED) tags. Default is TAG_RELATED_ALL, which returns everything.
3253 * @param int $limitnum (optional) return a subset comprising this many records, the default is 10
3254 * @return array an array of tag objects
3256 function tag_get_related_tags($tagid, $type=TAG_RELATED_ALL, $limitnum=10) {
3257 debugging('Method tag_get_related_tags() is deprecated, '
3258 . 'use core_tag_tag::get_correlated_tags(), core_tag_tag::get_related_tags() or '
3259 . 'core_tag_tag::get_manual_related_tags()', DEBUG_DEVELOPER);
3261 if ($tag = core_tag_tag::get($tagid)) {
3262 if ($type == TAG_RELATED_CORRELATED) {
3263 $tags = $tag->get_correlated_tags();
3264 } else if ($type == TAG_RELATED_MANUAL) {
3265 $tags = $tag->get_manual_related_tags();
3267 $tags = $tag->get_related_tags();
3269 $tags = array_slice($tags, 0, $limitnum);
3270 foreach ($tags as $id => $tag) {
3271 $result[$id] = $tag->to_object();
3278 * Delete one or more tag, and all their instances if there are any left.
3281 * @deprecated since 3.1
3282 * @param mixed $tagids one tagid (int), or one array of tagids to delete
3283 * @return bool true on success, false otherwise
3285 function tag_delete($tagids) {
3286 debugging('Method tag_delete() is deprecated, use core_tag_tag::delete_tags()',
3288 return core_tag_tag::delete_tags($tagids);
3292 * Deletes all the tag instances given a component and an optional contextid.
3294 * @deprecated since 3.1
3295 * @param string $component
3296 * @param int $contextid if null, then we delete all tag instances for the $component
3298 function tag_delete_instances($component, $contextid = null) {
3299 debugging('Method tag_delete() is deprecated, use core_tag_tag::delete_instances()',
3301 core_tag_tag::delete_instances($component, null, $contextid);
3305 * Clean up the tag tables, making sure all tagged object still exists.
3307 * This should normally not be necessary, but in case related tags are not deleted when the tagged record is removed, this should be
3308 * 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
3309 * call: don't run at peak time.
3312 * @deprecated since 3.1
3314 function tag_cleanup() {
3315 debugging('Method tag_cleanup() is deprecated, use \core\task\tag_cron_task::cleanup()',
3318 $task = new \core\task\tag_cron_task();
3319 return $task->cleanup();
3323 * This function will delete numerous tag instances efficiently.
3324 * This removes tag instances only. It doesn't check to see if it is the last use of a tag.
3326 * @deprecated since 3.1
3327 * @param array $instances An array of tag instance objects with the addition of the tagname and tagrawname
3328 * (used for recording a delete event).
3330 function tag_bulk_delete_instances($instances) {
3331 debugging('Method tag_bulk_delete_instances() is deprecated, '
3332 . 'use \core\task\tag_cron_task::bulk_delete_instances()',
3335 $task = new \core\task\tag_cron_task();
3336 return $task->bulk_delete_instances($instances);
3340 * Calculates and stores the correlated tags of all tags. The correlations are stored in the 'tag_correlation' table.
3342 * Two tags are correlated if they appear together a lot. Ex.: Users tagged with "computers" will probably also be tagged with "algorithms".
3344 * The rationale for the 'tag_correlation' table is performance. It works as a cache for a potentially heavy load query done at the
3345 * 'tag_instance' table. So, the 'tag_correlation' table stores redundant information derived from the 'tag_instance' table.
3348 * @deprecated since 3.1
3349 * @param int $mincorrelation Only tags with more than $mincorrelation correlations will be identified.
3351 function tag_compute_correlations($mincorrelation = 2) {
3352 debugging('Method tag_compute_correlations() is deprecated, '
3353 . 'use \core\task\tag_cron_task::compute_correlations()',
3356 $task = new \core\task\tag_cron_task();
3357 return $task->compute_correlations($mincorrelation);
3361 * This function processes a tag correlation and makes changes in the database as required.
3363 * The tag correlation object needs have both a tagid property and a correlatedtags property that is an array.
3366 * @deprecated since 3.1
3367 * @param stdClass $tagcorrelation
3368 * @return int/bool The id of the tag correlation that was just processed or false.
3370 function tag_process_computed_correlation(stdClass $tagcorrelation) {
3371 debugging('Method tag_process_computed_correlation() is deprecated, '
3372 . 'use \core\task\tag_cron_task::process_computed_correlation()',
3375 $task = new \core\task\tag_cron_task();
3376 return $task->process_computed_correlation($tagcorrelation);
3380 * Tasks that should be performed at cron time
3383 * @deprecated since 3.1
3385 function tag_cron() {
3386 debugging('Method tag_cron() is deprecated, use \core\task\tag_cron_task::execute()',
3389 $task = new \core\task\tag_cron_task();
3394 * Search for tags with names that match some text
3397 * @deprecated since 3.1
3398 * @param string $text escaped string that the tag names will be matched against
3399 * @param bool $ordered If true, tags are ordered by their popularity. If false, no ordering.
3400 * @param int/string $limitfrom (optional, required if $limitnum is set) return a subset of records, starting at this point.
3401 * @param int/string $limitnum (optional, required if $limitfrom is set) return a subset comprising this many records.
3402 * @param int $tagcollid
3403 * @return array/boolean an array of objects, or false if no records were found or an error occured.
3405 function tag_find_tags($text, $ordered=true, $limitfrom='', $limitnum='', $tagcollid = null) {
3406 debugging('Method tag_find_tags() is deprecated without replacement', DEBUG_DEVELOPER);
3409 $text = core_text::strtolower(clean_param($text, PARAM_TAG));
3411 list($sql, $params) = $DB->get_in_or_equal($tagcollid ? array($tagcollid) :
3412 array_keys(core_tag_collection::get_collections(true)));
3413 array_unshift($params, "%{$text}%");
3416 $query = "SELECT tg.id, tg.name, tg.rawname, tg.tagcollid, COUNT(ti.id) AS count
3417 FROM {tag} tg LEFT JOIN {tag_instance} ti ON tg.id = ti.tagid
3418 WHERE tg.name LIKE ? AND tg.tagcollid $sql
3419 GROUP BY tg.id, tg.name, tg.rawname
3420 ORDER BY count DESC";
3422 $query = "SELECT tg.id, tg.name, tg.rawname, tg.tagcollid
3424 WHERE tg.name LIKE ? AND tg.tagcollid $sql";
3426 return $DB->get_records_sql($query, $params, $limitfrom , $limitnum);
3430 * Get the name of a tag
3433 * @deprecated since 3.1
3434 * @param mixed $tagids the id of the tag, or an array of ids
3435 * @return mixed string name of one tag, or id-indexed array of strings
3437 function tag_get_name($tagids) {
3438 debugging('Method tag_get_name() is deprecated without replacement', DEBUG_DEVELOPER);
3441 if (!is_array($tagids)) {
3442 if ($tag = $DB->get_record('tag', array('id'=>$tagids))) {
3448 $tag_names = array();
3449 foreach($DB->get_records_list('tag', 'id', $tagids) as $tag) {
3450 $tag_names[$tag->id] = $tag->name;
3457 * Returns the correlated tags of a tag, retrieved from the tag_correlation table. Make sure cron runs, otherwise the table will be
3458 * empty and this function won't return anything.
3460 * Correlated tags are calculated in cron based on existing tag instances.
3463 * @deprecated since 3.1
3464 * @param int $tagid is a single tag id
3465 * @param int $notused this argument is no longer used
3466 * @return array an array of tag objects or an empty if no correlated tags are found
3468 function tag_get_correlated($tagid, $notused = null) {
3469 debugging('Method tag_get_correlated() is deprecated, '
3470 . 'use core_tag_tag::get_correlated_tags()', DEBUG_DEVELOPER);
3472 if ($tag = core_tag_tag::get($tagid)) {
3473 $tags = $tag->get_correlated_tags(true);
3474 // Convert to objects for backward-compatibility.
3475 foreach ($tags as $id => $tag) {
3476 $result[$id] = $tag->to_object();
3483 * This function is used by print_tag_cloud, to usort() the tags in the cloud. See php.net/usort for the parameters documentation.
3484 * This was originally in blocks/blog_tags/block_blog_tags.php, named blog_tags_sort().
3487 * @deprecated since 3.1
3488 * @param string $a Tag name to compare against $b
3489 * @param string $b Tag name to compare against $a
3490 * @return int The result of the comparison/validation 1, 0 or -1
3492 function tag_cloud_sort($a, $b) {
3493 debugging('Method tag_cloud_sort() is deprecated, similar method can be found in core_tag_collection::cloud_sort()', DEBUG_DEVELOPER);
3496 if (empty($CFG->tagsort)) {
3497 $tagsort = 'name'; // by default, sort by name
3499 $tagsort = $CFG->tagsort;
3502 if (is_numeric($a->$tagsort)) {
3503 return ($a->$tagsort == $b->$tagsort) ? 0 : ($a->$tagsort > $b->$tagsort) ? 1 : -1;
3504 } elseif (is_string($a->$tagsort)) {
3505 return strcmp($a->$tagsort, $b->$tagsort);
3512 * Loads the events definitions for the component (from file). If no
3513 * events are defined for the component, we simply return an empty array.
3515 * @access protected To be used from eventslib only
3516 * @deprecated since Moodle 3.1
3517 * @param string $component examples: 'moodle', 'mod_forum', 'block_quiz_results'
3518 * @return array Array of capabilities or empty array if not exists
3520 function events_load_def($component) {
3522 if ($component === 'unittest') {
3523 $defpath = $CFG->dirroot.'/lib/tests/fixtures/events.php';
3525 $defpath = core_component::get_component_directory($component).'/db/events.php';
3528 $handlers = array();
3530 if (file_exists($defpath)) {
3534 // make sure the definitions are valid and complete; tell devs what is wrong
3535 foreach ($handlers as $eventname => $handler) {
3536 if ($eventname === 'reset') {
3537 debugging("'reset' can not be used as event name.");
3538 unset($handlers['reset']);
3541 if (!is_array($handler)) {
3542 debugging("Handler of '$eventname' must be specified as array'");
3543 unset($handlers[$eventname]);
3546 if (!isset($handler['handlerfile'])) {
3547 debugging("Handler of '$eventname' must include 'handlerfile' key'");
3548 unset($handlers[$eventname]);
3551 if (!isset($handler['handlerfunction'])) {
3552 debugging("Handler of '$eventname' must include 'handlerfunction' key'");
3553 unset($handlers[$eventname]);
3556 if (!isset($handler['schedule'])) {
3557 $handler['schedule'] = 'instant';
3559 if ($handler['schedule'] !== 'instant' and $handler['schedule'] !== 'cron') {
3560 debugging("Handler of '$eventname' must include valid 'schedule' type (instant or cron)'");
3561 unset($handlers[$eventname]);
3564 if (!isset($handler['internal'])) {
3565 $handler['internal'] = 1;
3567 $handlers[$eventname] = $handler;
3574 * Puts a handler on queue
3576 * @access protected To be used from eventslib only
3577 * @deprecated since Moodle 3.1
3578 * @param stdClass $handler event handler object from db
3579 * @param stdClass $event event data object
3580 * @param string $errormessage The error message indicating the problem
3581 * @return int id number of new queue handler
3583 function events_queue_handler($handler, $event, $errormessage) {
3586 if ($qhandler = $DB->get_record('events_queue_handlers', array('queuedeventid'=>$event->id, 'handlerid'=>$handler->id))) {
3587 debugging("Please check code: Event id $event->id is already queued in handler id $qhandler->id");
3588 return $qhandler->id;
3591 // make a new queue handler
3592 $qhandler = new stdClass();
3593 $qhandler->queuedeventid = $event->id;
3594 $qhandler->handlerid = $handler->id;
3595 $qhandler->errormessage = $errormessage;
3596 $qhandler->timemodified = time();
3597 if ($handler->schedule === 'instant' and $handler->status == 1) {
3598 $qhandler->status = 1; //already one failed attempt to dispatch this event
3600 $qhandler->status = 0;
3603 return $DB->insert_record('events_queue_handlers', $qhandler);
3607 * trigger a single event with a specified handler
3609 * @access protected To be used from eventslib only
3610 * @deprecated since Moodle 3.1
3611 * @param stdClass $handler This shoudl be a row from the events_handlers table.
3612 * @param stdClass $eventdata An object containing information about the event
3613 * @param string $errormessage error message indicating problem
3614 * @return bool|null True means event processed, false means retry event later; may throw exception, NULL means internal error
3616 function events_dispatch($handler, $eventdata, &$errormessage) {
3619 debugging('Events API using $handlers array has been deprecated in favour of Events 2 API, please use it instead.', DEBUG_DEVELOPER);
3621 $function = unserialize($handler->handlerfunction);
3623 if (is_callable($function)) {
3624 // oki, no need for includes
3626 } else if (file_exists($CFG->dirroot.$handler->handlerfile)) {
3627 include_once($CFG->dirroot.$handler->handlerfile);
3630 $errormessage = "Handler file of component $handler->component: $handler->handlerfile can not be found!";
3634 // checks for handler validity
3635 if (is_callable($function)) {
3636 $result = call_user_func($function, $eventdata);
3637 if ($result === false) {
3638 $errormessage = "Handler function of component $handler->component: $handler->handlerfunction requested resending of event!";
3644 $errormessage = "Handler function of component $handler->component: $handler->handlerfunction not callable function or class method!";
3650 * given a queued handler, call the respective event handler to process the event
3652 * @access protected To be used from eventslib only
3653 * @deprecated since Moodle 3.1
3654 * @param stdClass $qhandler events_queued_handler row from db
3655 * @return boolean true means event processed, false means retry later, NULL means fatal failure
3657 function events_process_queued_handler($qhandler) {
3661 if (!$handler = $DB->get_record('events_handlers', array('id'=>$qhandler->handlerid))) {
3662 debugging("Error processing queue handler $qhandler->id, missing handler id: $qhandler->handlerid");
3663 //irrecoverable error, remove broken queue handler
3664 events_dequeue($qhandler);
3669 if (!$event = $DB->get_record('events_queue', array('id'=>$qhandler->queuedeventid))) {
3670 // can't proceed with no event object - might happen when two crons running at the same time
3671 debugging("Error processing queue handler $qhandler->id, missing event id: $qhandler->queuedeventid");
3672 //irrecoverable error, remove broken queue handler
3673 events_dequeue($qhandler);
3677 // call the function specified by the handler
3679 $errormessage = 'Unknown error';
3680 if (events_dispatch($handler, unserialize(base64_decode($event->eventdata)), $errormessage)) {
3682 events_dequeue($qhandler);
3685 } catch (Exception $e) {
3686 // the problem here is that we do not want one broken handler to stop all others,
3687 // cron handlers are very tricky because the needed data might have been deleted before the cron execution
3688 $errormessage = "Handler function of component $handler->component: $handler->handlerfunction threw exception :" .
3689 $e->getMessage() . "\n" . format_backtrace($e->getTrace(), true);
3690 if (!empty($e->debuginfo)) {
3691 $errormessage .= $e->debuginfo;
3695 //dispatching failed
3696 $qh = new stdClass();
3697 $qh->id = $qhandler->id;
3698 $qh->errormessage = $errormessage;
3699 $qh->timemodified = time();
3700 $qh->status = $qhandler->status + 1;
3701 $DB->update_record('events_queue_handlers', $qh);
3703 debugging($errormessage);
3709 * Updates all of the event definitions within the database.
3711 * Unfortunately this isn't as simple as removing them all and then readding
3712 * the updated event definitions. Chances are queued items are referencing the
3713 * existing definitions.
3715 * Note that the absence of the db/events.php event definition file
3716 * will cause any queued events for the component to be removed from
3720 * @deprecated since Moodle 3.1
3721 * @param string $component examples: 'moodle', 'mod_forum', 'block_quiz_results'
3722 * @return boolean always returns true
3724 function events_update_definition($component='moodle') {
3727 // load event definition from events.php
3728 $filehandlers = events_load_def($component);
3730 if ($filehandlers) {
3731 debugging('Events API using $handlers array has been deprecated in favour of Events 2 API, please use it instead.', DEBUG_DEVELOPER);
3734 // load event definitions from db tables
3735 // if we detect an event being already stored, we discard from this array later
3736 // the remaining needs to be removed
3737 $cachedhandlers = events_get_cached($component);
3739 foreach ($filehandlers as $eventname => $filehandler) {
3740 if (!empty($cachedhandlers[$eventname])) {
3741 if ($cachedhandlers[$eventname]['handlerfile'] === $filehandler['handlerfile'] &&
3742 $cachedhandlers[$eventname]['handlerfunction'] === serialize($filehandler['handlerfunction']) &&
3743 $cachedhandlers[$eventname]['schedule'] === $filehandler['schedule'] &&
3744 $cachedhandlers[$eventname]['internal'] == $filehandler['internal']) {
3745 // exact same event handler already presen