moodle/mod/data/comment.php

133 lines
4.5 KiB
PHP
Executable File

<?php // $Id$
require_once('../../config.php');
require_once('lib.php');
require_once('comment_form.php');
//param needed to go back to view.php
$rid = required_param('rid', PARAM_INT); // Record ID
$page = optional_param('page', 0, PARAM_INT); // Page ID
//param needed for comment operations
$mode = optional_param('mode','add',PARAM_ALPHA);
$commentid = optional_param('commentid','',PARAM_INT);
$confirm = optional_param('confirm','',PARAM_INT);
if (! $record = get_record('data_records', 'id', $rid)) {
error('Record ID is incorrect');
}
if (! $data = get_record('data', 'id', $record->dataid)) {
error('Data ID is incorrect');
}
if (! $course = get_record('course', 'id', $data->course)) {
error('Course is misconfigured');
}
if (! $cm = get_coursemodule_from_instance('data', $data->id, $course->id)) {
error('Course Module ID was incorrect');
}
require_login($course->id, false, $cm);
$context = get_context_instance(CONTEXT_MODULE, $cm->id);
if ($commentid) {
if (! $comment = get_record('data_comments', 'id', $commentid)) {
error('Comment ID is misconfigured');
}
if ($comment->recordid != $record->id) {
error('Comment ID is misconfigured');
}
if (!has_capability('mod/data:managecomments', $context) && $comment->userid != $USER->id) {
error('Comment is not yours to edit!');
}
} else {
$comment = false;
}
$mform = new mod_data_comment_form();
$mform->set_data(array('mode'=>$mode, 'page'=>$page, 'rid'=>$record->id, 'commentid'=>$commentid));
if ($comment) {
$format = $comment->format;
$content = $comment->content;
if (can_use_html_editor()) {
$options = new object();
$options->smiley = false;
$options->filter = false;
$content = format_text($content, $format, $options);
$format = FORMAT_HTML;
}
$mform->set_data(array('content'=>$content, 'format'=>$format));
}
if ($mform->is_cancelled()) {
redirect('view.php?rid='.$record->id.'&amp;page='.$page);
}
switch ($mode) {
case 'add':
if (!$formadata = $mform->get_data()) {
break; // something is wrong here, try again
}
$newcomment = new object();
$newcomment->userid = $USER->id;
$newcomment->created = time();
$newcomment->modified = time();
$newcomment->content = $formadata->content;
$newcomment->recordid = $formadata->rid;
if (insert_record('data_comments',$newcomment)) {
redirect('view.php?rid='.$record->id.'&amp;page='.$page);
} else {
error('Error while saving comment.');
}
break;
case 'edit': //print edit form
if (!$formadata = $mform->get_data()) {
break; // something is wrong here, try again
}
$updatedcomment = new object();
$updatedcomment->id = $formadata->commentid;
$updatedcomment->content = $formadata->content;
$updatedcomment->format = $formadata->format;
$updatedcomment->modified = time();
if (update_record('data_comments',$updatedcomment)) {
redirect('view.php?rid='.$record->id.'&amp;page='.$page);
} else {
error('Error while saving comment.');
}
break;
case 'delete': //deletes single comment from db
if ($confirm and confirm_sesskey() and $comment) {
delete_records('data_comments','id',$comment->id);
redirect('view.php?rid='.$record->id.'&amp;page='.$page, get_string('commentdeleted', 'data'));
} else { //print confirm delete form
print_header();
data_print_comment($data, $comment, $page);
notice_yesno(get_string('deletecomment','data'),
'comment.php?rid='.$record->id.'&amp;commentid='.$comment->id.'&amp;page='.$page.
'&amp;sesskey='.sesskey().'&amp;mode=delete&amp;confirm=1',
'view.php?rid='.$record->id.'&amp;page='.$page);
print_footer();
}
die;
break;
}
print_header();
data_print_comments($data, $record, $page, $mform);
print_footer();
?>