Skype
Maintained by
RACHELS, DANIEL A.
NOTE: Skype will be retired on May 5, 2025.
Skype activity plugin module implements a user listing and shows, Create Conference, Create Chat, Send Voicemail, Add Contact, and Send File links to any user who has entered a Skype ID into their profile.
Comments
Comments are no longer open for new posts. Existing comments remain available to read.
Sorry that his is taking a while to get done as we have had a bunch of medical appointments and other events that have really cut back on my coding time. I hate missing out on the Early Bird badge, but hopefully, will have the new version ready for release in a few days.
There is NOT a Moodle 6.3. Did you mean to type 3.6? Do you have Skype installed on your computer?
This is quite weird, I can not see the option "With selected (through check box)..." so I can no make video group, see 2:40 of
Is this a bug or a problem on my side ? Thank you very much in advance for any help provided.
I am using v3.6.1 and Moodle 6.3
replace all skypeINDEX by SKYPEINDEX and replace all skypeVIEWBYID by SKYPVIEWBYID
diff --git a/backup/moodle2/backup_skype_activity_task.class.php b/backup/moodle2/backup_skype_activity_task.class.php
index b74d14d..8b30bd7 100644
--- a/backup/moodle2/backup_skype_activity_task.class.php
+++ b/backup/moodle2/backup_skype_activity_task.class.php
@@ -64,11 +64,11 @@ class backup_skype_activity_task extends backup_activity_task {
// Link to the list of skypes.
$search = "/(".$base."\/mod\/skype\/index.php\?id\=)([0-9]+)/";
- $content = preg_replace($search, '$@skypeINDEX*$2@$', $content);
+ $content = preg_replace($search, '$@SKYPEINDEX*$2@$', $content);
// Link to skype view by moduleid.
$search = "/(".$base."\/mod\/skype\/view.php\?id\=)([0-9]+)/";
- $content = preg_replace($search, '$@skypeVIEWBYID*$2@$', $content);
+ $content = preg_replace($search, '$@SKYPEVIEWBYID*$2@$', $content);
return $content;
}
diff --git a/backup/moodle2/restore_skype_activity_task.class.php b/backup/moodle2/restore_skype_activity_task.class.php
index df27d86..6631e2b 100644
--- a/backup/moodle2/restore_skype_activity_task.class.php
+++ b/backup/moodle2/restore_skype_activity_task.class.php
@@ -73,10 +73,10 @@ class restore_skype_activity_task extends restore_activity_task {
static public function define_decode_rules() {
$rules = array();
- $rules[] = new restore_decode_rule('skypeVIEWBYID',
+ $rules[] = new restore_decode_rule('SKYPEVIEWBYID',
'/mod/skype/view.php?id=$1',
'course_module');
- $rules[] = new restore_decode_rule('skypeINDEX',
+ $rules[] = new restore_decode_rule('SKYPEINDEX',
'/mod/skype/index.php?id=$1',
'course');