2009-08-13 20:49:37 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
|
|
//
|
|
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Mandatory public API of url module
|
|
|
|
*
|
2010-07-25 11:20:23 +00:00
|
|
|
* @package mod
|
|
|
|
* @subpackage url
|
|
|
|
* @copyright 2009 Petr Skoda {@link http://skodak.org}
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
2009-08-13 20:49:37 +00:00
|
|
|
*/
|
|
|
|
|
2010-07-25 11:20:23 +00:00
|
|
|
defined('MOODLE_INTERNAL') || die;
|
|
|
|
|
2009-08-13 20:49:37 +00:00
|
|
|
/**
|
|
|
|
* List of features supported in URL module
|
|
|
|
* @param string $feature FEATURE_xx constant for requested feature
|
|
|
|
* @return mixed True if module supports feature, false if not, null if doesn't know
|
|
|
|
*/
|
|
|
|
function url_supports($feature) {
|
|
|
|
switch($feature) {
|
|
|
|
case FEATURE_MOD_ARCHETYPE: return MOD_ARCHETYPE_RESOURCE;
|
|
|
|
case FEATURE_GROUPS: return false;
|
|
|
|
case FEATURE_GROUPINGS: return false;
|
|
|
|
case FEATURE_GROUPMEMBERSONLY: return true;
|
|
|
|
case FEATURE_MOD_INTRO: return true;
|
|
|
|
case FEATURE_COMPLETION_TRACKS_VIEWS: return true;
|
|
|
|
case FEATURE_GRADE_HAS_GRADE: return false;
|
|
|
|
case FEATURE_GRADE_OUTCOMES: return false;
|
2010-05-13 07:45:01 +00:00
|
|
|
case FEATURE_BACKUP_MOODLE2: return true;
|
2011-07-21 15:06:47 +01:00
|
|
|
case FEATURE_SHOW_DESCRIPTION: return true;
|
2009-08-13 20:49:37 +00:00
|
|
|
|
|
|
|
default: return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns all other caps used in module
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
function url_get_extra_capabilities() {
|
|
|
|
return array('moodle/site:accessallgroups');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function is used by the reset_course_userdata function in moodlelib.
|
|
|
|
* @param $data the data submitted from the reset course.
|
|
|
|
* @return array status array
|
|
|
|
*/
|
|
|
|
function url_reset_userdata($data) {
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List of view style log actions
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
function url_get_view_actions() {
|
|
|
|
return array('view', 'view all');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List of update style log actions
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
function url_get_post_actions() {
|
|
|
|
return array('update', 'add');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add url instance.
|
|
|
|
* @param object $data
|
|
|
|
* @param object $mform
|
|
|
|
* @return int new url instance id
|
|
|
|
*/
|
|
|
|
function url_add_instance($data, $mform) {
|
2011-10-30 23:53:17 +01:00
|
|
|
global $CFG, $DB;
|
|
|
|
|
|
|
|
require_once($CFG->dirroot.'/mod/url/locallib.php');
|
2009-08-13 20:49:37 +00:00
|
|
|
|
|
|
|
$parameters = array();
|
|
|
|
for ($i=0; $i < 100; $i++) {
|
|
|
|
$parameter = "parameter_$i";
|
|
|
|
$variable = "variable_$i";
|
|
|
|
if (empty($data->$parameter) or empty($data->$variable)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$parameters[$data->$parameter] = $data->$variable;
|
|
|
|
}
|
|
|
|
$data->parameters = serialize($parameters);
|
|
|
|
|
|
|
|
$displayoptions = array();
|
|
|
|
if ($data->display == RESOURCELIB_DISPLAY_POPUP) {
|
|
|
|
$displayoptions['popupwidth'] = $data->popupwidth;
|
|
|
|
$displayoptions['popupheight'] = $data->popupheight;
|
|
|
|
}
|
|
|
|
if (in_array($data->display, array(RESOURCELIB_DISPLAY_AUTO, RESOURCELIB_DISPLAY_EMBED, RESOURCELIB_DISPLAY_FRAME))) {
|
|
|
|
$displayoptions['printheading'] = (int)!empty($data->printheading);
|
|
|
|
$displayoptions['printintro'] = (int)!empty($data->printintro);
|
|
|
|
}
|
|
|
|
$data->displayoptions = serialize($displayoptions);
|
|
|
|
|
2011-10-30 23:53:17 +01:00
|
|
|
$data->externalurl = url_fix_submitted_url($data->externalurl);
|
2009-08-13 20:49:37 +00:00
|
|
|
|
|
|
|
$data->timemodified = time();
|
|
|
|
$data->id = $DB->insert_record('url', $data);
|
|
|
|
|
|
|
|
return $data->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update url instance.
|
|
|
|
* @param object $data
|
|
|
|
* @param object $mform
|
|
|
|
* @return bool true
|
|
|
|
*/
|
|
|
|
function url_update_instance($data, $mform) {
|
|
|
|
global $CFG, $DB;
|
|
|
|
|
2011-10-30 23:53:17 +01:00
|
|
|
require_once($CFG->dirroot.'/mod/url/locallib.php');
|
|
|
|
|
2009-08-13 20:49:37 +00:00
|
|
|
$parameters = array();
|
|
|
|
for ($i=0; $i < 100; $i++) {
|
|
|
|
$parameter = "parameter_$i";
|
|
|
|
$variable = "variable_$i";
|
|
|
|
if (empty($data->$parameter) or empty($data->$variable)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$parameters[$data->$parameter] = $data->$variable;
|
|
|
|
}
|
|
|
|
$data->parameters = serialize($parameters);
|
|
|
|
|
|
|
|
$displayoptions = array();
|
|
|
|
if ($data->display == RESOURCELIB_DISPLAY_POPUP) {
|
|
|
|
$displayoptions['popupwidth'] = $data->popupwidth;
|
|
|
|
$displayoptions['popupheight'] = $data->popupheight;
|
|
|
|
}
|
|
|
|
if (in_array($data->display, array(RESOURCELIB_DISPLAY_AUTO, RESOURCELIB_DISPLAY_EMBED, RESOURCELIB_DISPLAY_FRAME))) {
|
|
|
|
$displayoptions['printheading'] = (int)!empty($data->printheading);
|
|
|
|
$displayoptions['printintro'] = (int)!empty($data->printintro);
|
|
|
|
}
|
|
|
|
$data->displayoptions = serialize($displayoptions);
|
|
|
|
|
2011-10-30 23:53:17 +01:00
|
|
|
$data->externalurl = url_fix_submitted_url($data->externalurl);
|
2009-08-13 20:49:37 +00:00
|
|
|
|
|
|
|
$data->timemodified = time();
|
|
|
|
$data->id = $data->instance;
|
|
|
|
|
|
|
|
$DB->update_record('url', $data);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete url instance.
|
|
|
|
* @param int $id
|
|
|
|
* @return bool true
|
|
|
|
*/
|
|
|
|
function url_delete_instance($id) {
|
|
|
|
global $DB;
|
|
|
|
|
|
|
|
if (!$url = $DB->get_record('url', array('id'=>$id))) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// note: all context files are deleted automatically
|
|
|
|
|
|
|
|
$DB->delete_records('url', array('id'=>$url->id));
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return use outline
|
|
|
|
* @param object $course
|
|
|
|
* @param object $user
|
|
|
|
* @param object $mod
|
|
|
|
* @param object $url
|
|
|
|
* @return object|null
|
|
|
|
*/
|
|
|
|
function url_user_outline($course, $user, $mod, $url) {
|
|
|
|
global $DB;
|
|
|
|
|
|
|
|
if ($logs = $DB->get_records('log', array('userid'=>$user->id, 'module'=>'url',
|
|
|
|
'action'=>'view', 'info'=>$url->id), 'time ASC')) {
|
|
|
|
|
|
|
|
$numviews = count($logs);
|
|
|
|
$lastlog = array_pop($logs);
|
|
|
|
|
2010-09-21 08:37:36 +00:00
|
|
|
$result = new stdClass();
|
2009-08-13 20:49:37 +00:00
|
|
|
$result->info = get_string('numviews', '', $numviews);
|
|
|
|
$result->time = $lastlog->time;
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return use complete
|
|
|
|
* @param object $course
|
|
|
|
* @param object $user
|
|
|
|
* @param object $mod
|
|
|
|
* @param object $url
|
|
|
|
*/
|
|
|
|
function url_user_complete($course, $user, $mod, $url) {
|
|
|
|
global $CFG, $DB;
|
|
|
|
|
|
|
|
if ($logs = $DB->get_records('log', array('userid'=>$user->id, 'module'=>'url',
|
|
|
|
'action'=>'view', 'info'=>$url->id), 'time ASC')) {
|
|
|
|
$numviews = count($logs);
|
|
|
|
$lastlog = array_pop($logs);
|
|
|
|
|
|
|
|
$strmostrecently = get_string('mostrecently');
|
|
|
|
$strnumviews = get_string('numviews', '', $numviews);
|
|
|
|
|
|
|
|
echo "$strnumviews - $strmostrecently ".userdate($lastlog->time);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
print_string('neverseen', 'url');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Given a course_module object, this function returns any
|
|
|
|
* "extra" information that may be needed when printing
|
|
|
|
* this activity in a course listing.
|
|
|
|
*
|
|
|
|
* See {@link get_array_of_activities()} in course/lib.php
|
|
|
|
*
|
|
|
|
* @param object $coursemodule
|
|
|
|
* @return object info
|
|
|
|
*/
|
|
|
|
function url_get_coursemodule_info($coursemodule) {
|
|
|
|
global $CFG, $DB;
|
|
|
|
require_once("$CFG->dirroot/mod/url/locallib.php");
|
|
|
|
|
2011-07-21 15:06:47 +01:00
|
|
|
if (!$url = $DB->get_record('url', array('id'=>$coursemodule->instance),
|
|
|
|
'id, name, display, displayoptions, externalurl, parameters, intro, introformat')) {
|
2009-08-13 20:49:37 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-07-21 15:06:47 +01:00
|
|
|
$info = new cached_cm_info();
|
2009-08-13 20:49:37 +00:00
|
|
|
$info->name = $url->name;
|
|
|
|
|
|
|
|
//note: there should be a way to differentiate links from normal resources
|
|
|
|
$info->icon = url_guess_icon($url->externalurl);
|
|
|
|
|
|
|
|
$display = url_get_final_display_type($url);
|
|
|
|
|
|
|
|
if ($display == RESOURCELIB_DISPLAY_POPUP) {
|
|
|
|
$fullurl = "$CFG->wwwroot/mod/url/view.php?id=$coursemodule->id&redirect=1";
|
|
|
|
$options = empty($url->displayoptions) ? array() : unserialize($url->displayoptions);
|
|
|
|
$width = empty($options['popupwidth']) ? 620 : $options['popupwidth'];
|
|
|
|
$height = empty($options['popupheight']) ? 450 : $options['popupheight'];
|
|
|
|
$wh = "width=$width,height=$height,toolbar=no,location=no,menubar=no,copyhistory=no,status=no,directories=no,scrollbars=yes,resizable=yes";
|
2011-07-21 15:06:47 +01:00
|
|
|
$info->onclick = "window.open('$fullurl', '', '$wh'); return false;";
|
2009-08-13 20:49:37 +00:00
|
|
|
|
|
|
|
} else if ($display == RESOURCELIB_DISPLAY_NEW) {
|
|
|
|
$fullurl = "$CFG->wwwroot/mod/url/view.php?id=$coursemodule->id&redirect=1";
|
2011-07-21 15:06:47 +01:00
|
|
|
$info->onclick = "window.open('$fullurl'); return false;";
|
2009-08-13 20:49:37 +00:00
|
|
|
|
2011-07-21 15:06:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($coursemodule->showdescription) {
|
|
|
|
// Convert intro to html. Do not filter cached version, filters run at display time.
|
|
|
|
$info->content = format_module_intro('url', $url, $coursemodule->id, false);
|
2009-08-13 20:49:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $info;
|
|
|
|
}
|
|
|
|
|
MDL-26105 Block settings should contains less options, and be more user friendly
AMOS BEGIN
MOV [page-blog-index, pagetype], [page-blog-index, blog]
MOV [page-blog-x, pagetype], [page-blog-x, blog]
MOV [page-tag-x, pagetype], [page-tag-x, tag]
MOV [page-course-view-weeks, pagetype], [page-course-view-weeks, format_weeks]
MOV [page-course-view-weeks-x, pagetype], [page-course-view-weeks-x, format_weeks]
MOV [page-course-view-topics, pagetype], [page-course-view-topics, format_topics]
MOV [page-course-view-topics-x, pagetype], [page-course-view-topics-x, format_topics]
AMOS END
2011-04-28 11:20:30 +08:00
|
|
|
/**
|
|
|
|
* Return a list of page types
|
|
|
|
* @param string $pagetype current page type
|
|
|
|
* @param stdClass $parentcontext Block's parent context
|
|
|
|
* @param stdClass $currentcontext Current context of block
|
|
|
|
*/
|
2011-06-17 16:23:10 +08:00
|
|
|
function url_page_type_list($pagetype, $parentcontext, $currentcontext) {
|
MDL-26105 Block settings should contains less options, and be more user friendly
AMOS BEGIN
MOV [page-blog-index, pagetype], [page-blog-index, blog]
MOV [page-blog-x, pagetype], [page-blog-x, blog]
MOV [page-tag-x, pagetype], [page-tag-x, tag]
MOV [page-course-view-weeks, pagetype], [page-course-view-weeks, format_weeks]
MOV [page-course-view-weeks-x, pagetype], [page-course-view-weeks-x, format_weeks]
MOV [page-course-view-topics, pagetype], [page-course-view-topics, format_topics]
MOV [page-course-view-topics-x, pagetype], [page-course-view-topics-x, format_topics]
AMOS END
2011-04-28 11:20:30 +08:00
|
|
|
$module_pagetype = array('mod-url-*'=>get_string('page-mod-url-x', 'url'));
|
|
|
|
return $module_pagetype;
|
|
|
|
}
|
2011-11-25 14:44:13 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Export URL resource contents
|
|
|
|
*
|
|
|
|
* @return array of file content
|
|
|
|
*/
|
|
|
|
function url_export_contents($cm, $baseurl) {
|
|
|
|
global $CFG, $DB;
|
|
|
|
require_once("$CFG->dirroot/mod/url/locallib.php");
|
|
|
|
$contents = array();
|
|
|
|
$context = get_context_instance(CONTEXT_MODULE, $cm->id);
|
|
|
|
|
|
|
|
$course = $DB->get_record('course', array('id'=>$cm->course), '*', MUST_EXIST);
|
|
|
|
$url = $DB->get_record('url', array('id'=>$cm->instance), '*', MUST_EXIST);
|
|
|
|
|
|
|
|
$fullurl = str_replace('&', '&', url_get_full_url($url, $cm, $course));
|
|
|
|
$isurl = clean_param($fullurl, PARAM_URL);
|
|
|
|
if (empty($isurl)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$url = array();
|
|
|
|
$url['type'] = 'url';
|
|
|
|
$url['filename'] = $url->name;
|
|
|
|
$url['filepath'] = null;
|
|
|
|
$url['filesize'] = 0;
|
|
|
|
$url['fileurl'] = $fullurl;
|
|
|
|
$url['timecreated'] = null;
|
|
|
|
$url['timemodified'] = $url->timemodified;
|
|
|
|
$url['sortorder'] = null;
|
|
|
|
$url['userid'] = null;
|
|
|
|
$url['author'] = null;
|
|
|
|
$url['license'] = null;
|
|
|
|
$contents[] = $url;
|
|
|
|
|
|
|
|
return $contents;
|
|
|
|
}
|
2012-02-17 21:23:28 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Register the ability to handle drag and drop file uploads
|
|
|
|
* @return array containing details of the files / types the mod can handle
|
|
|
|
*/
|
2012-05-04 12:12:52 +01:00
|
|
|
function mod_url_dndupload_register() {
|
2012-02-17 21:23:28 +00:00
|
|
|
return array('types' => array(
|
|
|
|
array('identifier' => 'url', 'message' => get_string('createurl', 'url'))
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle a file that has been uploaded
|
|
|
|
* @param object $uploadinfo details of the file / content that has been uploaded
|
|
|
|
* @return int instance id of the newly created mod
|
|
|
|
*/
|
2012-05-04 12:12:52 +01:00
|
|
|
function mod_url_dndupload_handle($uploadinfo) {
|
|
|
|
// Gather all the required data.
|
|
|
|
$data = new stdClass();
|
|
|
|
$data->course = $uploadinfo->course->id;
|
|
|
|
$data->name = $uploadinfo->displayname;
|
|
|
|
$data->intro = '<p>'.$uploadinfo->displayname.'</p>';
|
|
|
|
$data->introformat = FORMAT_HTML;
|
|
|
|
$data->externalurl = clean_param($uploadinfo->content, PARAM_URL);
|
|
|
|
$data->timemodified = time();
|
2012-02-17 21:23:28 +00:00
|
|
|
|
2012-05-04 12:12:52 +01:00
|
|
|
// Set the display options to the site defaults.
|
2012-02-17 21:23:28 +00:00
|
|
|
$config = get_config('url');
|
2012-05-04 12:12:52 +01:00
|
|
|
$data->display = $config->display;
|
|
|
|
$data->popupwidth = $config->popupwidth;
|
|
|
|
$data->popupheight = $config->popupheight;
|
|
|
|
$data->printheading = $config->printheading;
|
|
|
|
$data->printintro = $config->printintro;
|
2012-02-17 21:23:28 +00:00
|
|
|
|
2012-05-04 12:12:52 +01:00
|
|
|
return url_add_instance($data, null);
|
2012-02-17 21:23:28 +00:00
|
|
|
}
|