Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/plugin/skype
Angel Fernando Quiroz Campos 4d7b8f04d5 Fix readme file of Skype plugin - refs BT#10956 10 years ago
..
lang Skype plugin deprecated - refs BT#11956 10 years ago
src Skype plugin deprecated - refs BT#11956 10 years ago
README.md Fix readme file of Skype plugin - refs BT#10956 10 years ago
index.php Skype plugin deprecated - refs BT#11956 10 years ago
plugin.php Skype plugin deprecated - refs BT#11956 10 years ago
readme.txt Fix readme file of Skype plugin - refs BT#10956 10 years ago

README.md

Skype Plugin

This pluging was integrated within Chamilo LMS core

To configure this plugin you need execute this SQL queries:

  • Enable the Skype extra field:
INSERT INTO extra_field (extra_field_type, field_type, variable, display_text, visible, changeable, created_at)
VALUES
(1, 1, 'skype', 'Skype', 1, 1, now());
  • Enable the LinkedInURl extra field:
INSERT INTO extra_field (extra_field_type, field_type, variable, display_text, visible, changeable, created_at)
VALUES
(1, 1, 'linkedin_url', 'LinkedInUrl', 1, 1, now());
  • Enable the configuration settings:
INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, access_url_changeable)
VALUES
('allow_show_skype_account', NULL, 'radio', 'Platform', 'true', 'AllowShowSkypeAccountTitle', 'AllowShowSkypeAccountComment', 1),
('allow_show_linkedin_url', NULL, 'radio', 'Platform', 'true', 'AllowShowLinkedInUrlTitle', 'AllowShowLinkedInUrlComment', 1);
INSERT INTO settings_options (variable, value, display_text)
VALUES
('allow_show_skype_account', 'true', 'Yes'),
('allow_show_skype_account', 'false', 'No'),
('allow_show_linkedin_url', 'true', 'Yes'),
('allow_show_linkedin_url', 'false', 'No');