Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Feature/topicmove #119

Merged
merged 14 commits into from
Mar 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions backup/moodle2/backup_moodleoverflow_activity_task.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,27 +63,27 @@ public static function encode_content_links($content) {
$base = preg_quote($CFG->wwwroot, '/');

// Link to the list of moodleoverflows.
$search = '/(' . $base . '\/mod\/moodleoverflow\/index.php\?id\=)([0-9]+)/';
$search = '/(' . $base . '\/mod\/moodleoverflow\/index.php\?id\=)([0-9]+)/';
$content = preg_replace($search, '$@MOODLEOVERFLOWINDEX*$2@$', $content);

// Link to moodleoverflow view by moduleid.
$search = '/(' . $base . '\/mod\/moodleoverflow\/view.php\?id\=)([0-9]+)/';
$search = '/(' . $base . '\/mod\/moodleoverflow\/view.php\?id\=)([0-9]+)/';
$content = preg_replace($search, '$@MOODLEOVERFLOWVIEWBYID*$2@$', $content);

// Link to moodleoverflow view by forumid.
$search = "/(" . $base . "\/mod\/forum\/view.php\?f\=)([0-9]+)/";
$search = "/(" . $base . "\/mod\/forum\/view.php\?f\=)([0-9]+)/";
$content = preg_replace($search, '$@MOODLEOVERFLOWVIEWBYF*$2@$', $content);

// Link to moodleoverflow discussion with parent syntax.
$search = "/(" . $base . "\/mod\/forum\/discuss.php\?d\=)([0-9]+)(?:\&|\&)parent\=([0-9]+)/";
$search = "/(" . $base . "\/mod\/forum\/discuss.php\?d\=)([0-9]+)(?:\&|\&)parent\=([0-9]+)/";
$content = preg_replace($search, '$@MOODLEOVERFLOWDISCUSSIONVIEWPARENT*$2*$3@$', $content);

// Link to moodleoverflow discussion with relative syntax.
$search = "/(" . $base . "\/mod\/forum\/discuss.php\?d\=)([0-9]+)\#([0-9]+)/";
$search = "/(" . $base . "\/mod\/forum\/discuss.php\?d\=)([0-9]+)\#([0-9]+)/";
$content = preg_replace($search, '$@MOODLEOVERFLOWDISCUSSIONVIEWINSIDE*$2*$3@$', $content);

// Link to moodleoverflow discussion by discussionid.
$search = "/(" . $base . "\/mod\/forum\/discuss.php\?d\=)([0-9]+)/";
$search = "/(" . $base . "\/mod\/forum\/discuss.php\?d\=)([0-9]+)/";
$content = preg_replace($search, '$@MOODLEOVERFLOWDISCUSSIONVIEW*$2@$', $content);

return $content;
Expand Down
2 changes: 1 addition & 1 deletion backup/moodle2/backup_moodleoverflow_stepslib.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ protected function define_structure() {

// Define each element separated.
$discussions = new backup_nested_element('discussions');
$discussion = new backup_nested_element('discussion', array('id'), array(
$discussion = new backup_nested_element('discussion', array('id'), array(
'name', 'firstpost', 'userid', 'timemodified', 'usermodified', 'timestart'));

$posts = new backup_nested_element('posts');
Expand Down
8 changes: 4 additions & 4 deletions backup/moodle2/restore_moodleoverflow_activity_task.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ public static function define_decode_rules() {

/**
* Define the restore log rules that will be applied
* by the {@link restore_logs_processor} when restoring
* by the {restore_logs_processor} when restoring
* moodleoverflow logs. It must return one array
* of {@link restore_log_rule} objects
* of { restore_log_rule} objects
*/
public static function define_restore_log_rules() {
$rules = array();
Expand Down Expand Up @@ -151,9 +151,9 @@ public static function define_restore_log_rules() {

/**
* Define the restore log rules that will be applied
* by the {@link restore_logs_processor} when restoring
* by the { restore_logs_processor} when restoring
* course logs. It must return one array
* of {@link restore_log_rule} objects
* of { restore_log_rule} objects
*
* Note this rules are applied when restoring course logs
* by the restore final task, but are defined here at
Expand Down
52 changes: 26 additions & 26 deletions backup/moodle2/restore_moodleoverflow_stepslib.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ class restore_moodleoverflow_activity_structure_step extends restore_activity_st
/**
* Defines structure of path elements to be processed during the restore.
*
* @return array of {@link restore_path_element}
* @return array of {restore_path_element}
*/
protected function define_structure() {

$paths = array();
$paths = array();
$userinfo = $this->get_setting_value('userinfo');

$paths[] = new restore_path_element('moodleoverflow', '/activity/moodleoverflow');
Expand Down Expand Up @@ -73,7 +73,7 @@ protected function define_structure() {
protected function process_moodleoverflow($data) {
global $DB;

$data = (object) $data;
$data = (object) $data;
$data->course = $this->get_courseid();

if (empty($data->timecreated)) {
Expand All @@ -99,15 +99,15 @@ protected function process_moodleoverflow($data) {
protected function process_moodleoverflow_discussion($data) {
global $DB;

$data = (object) $data;
$oldid = $data->id;
$data = (object) $data;
$oldid = $data->id;
$data->course = $this->get_courseid();

$data->moodleoverflow = $this->get_new_parentid('moodleoverflow');
$data->timemodified = $this->apply_date_offset($data->timemodified);
$data->timestart = $this->apply_date_offset($data->timestart);
$data->userid = $this->get_mappingid('user', $data->userid);
$data->usermodified = $this->get_mappingid('user', $data->usermodified);
$data->timemodified = $this->apply_date_offset($data->timemodified);
$data->timestart = $this->apply_date_offset($data->timestart);
$data->userid = $this->get_mappingid('user', $data->userid);
$data->usermodified = $this->get_mappingid('user', $data->usermodified);

$newitemid = $DB->insert_record('moodleoverflow_discussions', $data);
$this->set_mapping('moodleoverflow_discussion', $oldid, $newitemid);
Expand All @@ -121,13 +121,13 @@ protected function process_moodleoverflow_discussion($data) {
protected function process_moodleoverflow_post($data) {
global $DB;

$data = (object) $data;
$data = (object) $data;
$oldid = $data->id;

$data->discussion = $this->get_new_parentid('moodleoverflow_discussion');
$data->created = $this->apply_date_offset($data->created);
$data->modified = $this->apply_date_offset($data->modified);
$data->userid = $this->get_mappingid('user', $data->userid);
$data->created = $this->apply_date_offset($data->created);
$data->modified = $this->apply_date_offset($data->modified);
$data->userid = $this->get_mappingid('user', $data->userid);
// If post has parent, map it (it has been already restored).
if (!empty($data->parent)) {
$data->parent = $this->get_mappingid('moodleoverflow_post', $data->parent);
Expand All @@ -150,12 +150,12 @@ protected function process_moodleoverflow_post($data) {
protected function process_moodleoverflow_rating($data) {
global $DB;

$data = (object) $data;
$data = (object) $data;
$oldid = $data->id;

$data->userid = $this->get_mappingid('user', $data->userid);
$data->postid = $this->get_new_parentid('moodleoverflow_post');
$data->discussionid = $this->get_new_parentid('moodleoverflow_discussion');
$data->userid = $this->get_mappingid('user', $data->userid);
$data->postid = $this->get_new_parentid('moodleoverflow_post');
$data->discussionid = $this->get_new_parentid('moodleoverflow_discussion');
$data->moodleoverflowid = $this->get_new_parentid('moodleoverflow');

$newitemid = $DB->insert_record('moodleoverflow_ratings', $data);
Expand All @@ -170,11 +170,11 @@ protected function process_moodleoverflow_rating($data) {
protected function process_moodleoverflow_subscription($data) {
global $DB;

$data = (object) $data;
$data = (object) $data;
$oldid = $data->id;

$data->moodleoverflow = $this->get_new_parentid('moodleoverflow');
$data->userid = $this->get_mappingid('user', $data->userid);
$data->userid = $this->get_mappingid('user', $data->userid);

$newitemid = $DB->insert_record('moodleoverflow_subscriptions', $data);
$this->set_mapping('moodleoverflow_subscription', $oldid, $newitemid, true);
Expand All @@ -189,12 +189,12 @@ protected function process_moodleoverflow_subscription($data) {
protected function process_moodleoverflow_discuss_sub($data) {
global $DB;

$data = (object) $data;
$data = (object) $data;
$oldid = $data->id;

$data->discussion = $this->get_new_parentid('moodleoverflow_discussion');
$data->discussion = $this->get_new_parentid('moodleoverflow_discussion');
$data->moodleoverflow = $this->get_new_parentid('moodleoverflow');
$data->userid = $this->get_mappingid('user', $data->userid);
$data->userid = $this->get_mappingid('user', $data->userid);

$newitemid = $DB->insert_record('moodleoverflow_discuss_subs', $data);
$this->set_mapping('moodleoverflow_discuss_sub', $oldid, $newitemid, true);
Expand All @@ -211,9 +211,9 @@ protected function process_moodleoverflow_read($data) {
$data = (object) $data;

$data->moodleoverflowid = $this->get_new_parentid('moodleoverflow');
$data->discussionid = $this->get_mappingid('moodleoverflow_discussion', $data->discussionid);
$data->postid = $this->get_mappingid('moodleoverflow_post', $data->postid);
$data->userid = $this->get_mappingid('user', $data->userid);
$data->discussionid = $this->get_mappingid('moodleoverflow_discussion', $data->discussionid);
$data->postid = $this->get_mappingid('moodleoverflow_post', $data->postid);
$data->userid = $this->get_mappingid('user', $data->userid);

$DB->insert_record('moodleoverflow_read', $data);
}
Expand All @@ -229,7 +229,7 @@ protected function process_moodleoverflow_track($data) {
$data = (object) $data;

$data->moodleoverflowid = $this->get_new_parentid('moodleoverflow');
$data->userid = $this->get_mappingid('user', $data->userid);
$data->userid = $this->get_mappingid('user', $data->userid);

$DB->insert_record('moodleoverflow_tracking', $data);
}
Expand Down
4 changes: 2 additions & 2 deletions classes/event/discussion_created.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ class discussion_created extends \core\event\base {
* @return void
*/
protected function init() {
$this->data['crud'] = 'c';
$this->data['edulevel'] = self::LEVEL_PARTICIPATING;
$this->data['crud'] = 'c';
$this->data['edulevel'] = self::LEVEL_PARTICIPATING;
$this->data['objecttable'] = 'moodleoverflow_discussions';
}

Expand Down
4 changes: 2 additions & 2 deletions classes/event/discussion_deleted.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ class discussion_deleted extends \core\event\base {
* @return void
*/
protected function init() {
$this->data['crud'] = 'd';
$this->data['edulevel'] = self::LEVEL_OTHER;
$this->data['crud'] = 'd';
$this->data['edulevel'] = self::LEVEL_OTHER;
$this->data['objecttable'] = 'moodleoverflow_discussions';
}

Expand Down
4 changes: 2 additions & 2 deletions classes/event/discussion_subscription_created.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ class discussion_subscription_created extends \core\event\base {
* @return void
*/
protected function init() {
$this->data['crud'] = 'c';
$this->data['edulevel'] = self::LEVEL_PARTICIPATING;
$this->data['crud'] = 'c';
$this->data['edulevel'] = self::LEVEL_PARTICIPATING;
$this->data['objecttable'] = 'moodleoverflow_discuss_subs';
}

Expand Down
4 changes: 2 additions & 2 deletions classes/event/discussion_subscription_deleted.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ class discussion_subscription_deleted extends \core\event\base {
* @return void
*/
protected function init() {
$this->data['crud'] = 'd';
$this->data['edulevel'] = self::LEVEL_PARTICIPATING;
$this->data['crud'] = 'd';
$this->data['edulevel'] = self::LEVEL_PARTICIPATING;
$this->data['objecttable'] = 'moodleoverflow_discuss_subs';
}

Expand Down
4 changes: 2 additions & 2 deletions classes/event/discussion_viewed.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ class discussion_viewed extends \core\event\base {
* @return void
*/
protected function init() {
$this->data['crud'] = 'r';
$this->data['edulevel'] = self::LEVEL_PARTICIPATING;
$this->data['crud'] = 'r';
$this->data['edulevel'] = self::LEVEL_PARTICIPATING;
$this->data['objecttable'] = 'moodleoverflow_discussions';
}

Expand Down
4 changes: 2 additions & 2 deletions classes/event/post_created.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ class post_created extends \core\event\base {
* @return void
*/
protected function init() {
$this->data['crud'] = 'c';
$this->data['edulevel'] = self::LEVEL_PARTICIPATING;
$this->data['crud'] = 'c';
$this->data['edulevel'] = self::LEVEL_PARTICIPATING;
$this->data['objecttable'] = 'moodleoverflow_posts';
}

Expand Down
4 changes: 2 additions & 2 deletions classes/event/post_deleted.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ class post_deleted extends \core\event\base {
* @return void
*/
protected function init() {
$this->data['crud'] = 'd';
$this->data['edulevel'] = self::LEVEL_OTHER;
$this->data['crud'] = 'd';
$this->data['edulevel'] = self::LEVEL_OTHER;
$this->data['objecttable'] = 'moodleoverflow_posts';
}

Expand Down
4 changes: 2 additions & 2 deletions classes/event/post_updated.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ class post_updated extends \core\event\base {
* @return void
*/
protected function init() {
$this->data['crud'] = 'u';
$this->data['edulevel'] = self::LEVEL_PARTICIPATING;
$this->data['crud'] = 'u';
$this->data['edulevel'] = self::LEVEL_PARTICIPATING;
$this->data['objecttable'] = 'moodleoverflow_posts';
}

Expand Down
4 changes: 2 additions & 2 deletions classes/event/rating_created.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ class rating_created extends \core\event\base {
* @return void
*/
protected function init() {
$this->data['crud'] = 'c';
$this->data['edulevel'] = self::LEVEL_PARTICIPATING;
$this->data['crud'] = 'c';
$this->data['edulevel'] = self::LEVEL_PARTICIPATING;
$this->data['objecttable'] = 'moodleoverflow_ratings';
}

Expand Down
4 changes: 2 additions & 2 deletions classes/event/rating_deleted.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ class rating_deleted extends \core\event\base {
* @return void
*/
protected function init() {
$this->data['crud'] = 'd';
$this->data['edulevel'] = self::LEVEL_OTHER;
$this->data['crud'] = 'd';
$this->data['edulevel'] = self::LEVEL_OTHER;
$this->data['objecttable'] = 'moodleoverflow_ratings';
}

Expand Down
4 changes: 2 additions & 2 deletions classes/event/rating_updated.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ class rating_updated extends \core\event\base {
* @return void
*/
protected function init() {
$this->data['crud'] = 'u';
$this->data['edulevel'] = self::LEVEL_OTHER;
$this->data['crud'] = 'u';
$this->data['edulevel'] = self::LEVEL_OTHER;
$this->data['objecttable'] = 'moodleoverflow_ratings';
}

Expand Down
2 changes: 1 addition & 1 deletion classes/event/readtracking_disabled.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class readtracking_disabled extends \core\event\base {
* @return void
*/
protected function init() {
$this->data['crud'] = 'd';
$this->data['crud'] = 'd';
$this->data['edulevel'] = self::LEVEL_OTHER;
}

Expand Down
2 changes: 1 addition & 1 deletion classes/event/readtracking_enabled.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class readtracking_enabled extends \core\event\base {
* @return void
*/
protected function init() {
$this->data['crud'] = 'c';
$this->data['crud'] = 'c';
$this->data['edulevel'] = self::LEVEL_OTHER;
}

Expand Down
4 changes: 2 additions & 2 deletions classes/event/subscription_created.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ class subscription_created extends \core\event\base {
* @return void
*/
protected function init() {
$this->data['crud'] = 'c';
$this->data['edulevel'] = self::LEVEL_PARTICIPATING;
$this->data['crud'] = 'c';
$this->data['edulevel'] = self::LEVEL_PARTICIPATING;
$this->data['objecttable'] = 'moodleoverflow_subscriptions';
}

Expand Down
4 changes: 2 additions & 2 deletions classes/event/subscription_deleted.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ class subscription_deleted extends \core\event\base {
* @return void
*/
protected function init() {
$this->data['crud'] = 'd';
$this->data['edulevel'] = self::LEVEL_PARTICIPATING;
$this->data['crud'] = 'd';
$this->data['edulevel'] = self::LEVEL_PARTICIPATING;
$this->data['objecttable'] = 'forum_subscriptions';
}

Expand Down
4 changes: 2 additions & 2 deletions classes/observer.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,13 @@ public static function role_assigned(\core\event\role_assigned $event) {
$userid = $event->relateduserid;

// Retrieve all moodleoverflows in this course.
$sql = "SELECT m.id, m.course as course, cm.id AS cmid, m.forcesubscribe
$sql = "SELECT m.id, m.course as course, cm.id AS cmid, m.forcesubscribe
FROM {moodleoverflow} m
JOIN {course_modules} cm ON (cm.instance = m.id)
JOIN {modules} mo ON (mo.id = cm.module)
LEFT JOIN {moodleoverflow_subscriptions} ms ON (ms.moodleoverflow = m.id AND ms.userid = :userid)
WHERE m.course = :courseid AND m.forcesubscribe = :initial AND mo.name = 'moodleoverflow' AND ms.id IS NULL";
$params = array('courseid' => $context->instanceid,
$params = array('courseid' => $context->instanceid,
'userid' => $userid,
'initial' => MOODLEOVERFLOW_INITIALSUBSCRIBE);
$moodleoverflows = $DB->get_records_sql($sql, $params);
Expand Down
2 changes: 1 addition & 1 deletion classes/output/email/renderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function format_message_text($cm, $post) {
'mod_moodleoverflow', 'post', $post->id);

// Initiate some options.
$options = new \stdClass();
$options = new \stdClass();
$options->para = true;

// Return the message in html.
Expand Down
Loading