Skype icon

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.
Price option: Free

Supports Moodle 2.9-5.0 See all versions
Latest release: 1 year ago
Installations: 707
Downloads (last 90 days): 40

Frankenstyle name: mod_skype
Activities

Comments

Comments are no longer open for new posts. Existing comments remain available to read.

Sorry, Skype 15.72.94.0 does not mean anything to me. And your Moodle, is it really 3.1? or is it 3.11.
Moodle 3.1 and Skype 15.72.94.0
Which version of Skype and which version of Moodle are you trying to use?
It keeps asking to enter the Skype ID, but it is there. is there something wrong I am doing?
I have just pushed changes for Skype to the github account that are needed to work with Moodle 3.11 when upgrading from prior versions of Moodle. The code at github in the master branch is currently working, but must be considered to be a beta version. I still have lots of commented out stuff to remove and also need to add code to make Skype work as a new install in Moodle 3.11.
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.
Thank you AL for your work! I will test it asap... smile
Thanks to Francis Vendrell for spotting the fact that the, With Selected (through check boxes): and it's buttons at the bottom of the Skype users list, were missing. The problem is fixed in the new Skype 3.7.0 release.
To other Skype users, the problem identified by Francis, is due to some incorrect line breaks in the locallib.php file. I will push corrections to github in a few minutes, but it will take me a day or two make sure the fix works on all the Moodle's from 3.4 to the soon to be release 3.11. Once I've done with testing, I will publish a new release.
Could you send me a picture of what you have. My email is drachels at drachels dot com. Or post a picture in the General help forum.
Extract of the code of the page: < div id=" display_call_all_skype " style=" display: none;" > With Selected (through check boxes):< /div>< div id="who_to_call">< / div > The none display is the problem... Don't know how to modify this...
You guessed right, it's Moodle 3.6.5. Yes, Skype is installed on my computer...
Hi Francis,
There is NOT a Moodle 6.3. Did you mean to type 3.6? Do you have Skype installed on your computer?
Hello
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
Should be fixed in new v3.6.1 version.
fix backup problem or activity duplication (decode_rule_incorrect_name error) :
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');