readme.txt 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <h1>Skype Plugin</h1>
  2. <p>This pluging was integrated within Chamilo LMS core</p>
  3. <p>To configure this plugin you need execute this SQL queries:</p>
  4. <ul>
  5. <li>Enable the Skype extra field:</li>
  6. </ul>
  7. <pre><code>INSERT INTO extra_field (extra_field_type, field_type, variable, display_text, visible, changeable, created_at)
  8. VALUES
  9. (1, 1, 'skype', 'Skype', 1, 1, now());
  10. </code></pre>
  11. <ul>
  12. <li>Enable the LinkedInURl extra field:</li>
  13. </ul>
  14. <pre><code>INSERT INTO extra_field (extra_field_type, field_type, variable, display_text, visible, changeable, created_at)
  15. VALUES
  16. (1, 1, 'linkedin_url', 'LinkedInUrl', 1, 1, now());
  17. </code></pre>
  18. <ul>
  19. <li>Enable the configuration settings:</li>
  20. </ul>
  21. <pre><code>INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, access_url_changeable)
  22. VALUES
  23. ('allow_show_skype_account', NULL, 'radio', 'Platform', 'true', 'AllowShowSkypeAccountTitle', 'AllowShowSkypeAccountComment', 1),
  24. ('allow_show_linkedin_url', NULL, 'radio', 'Platform', 'true', 'AllowShowLinkedInUrlTitle', 'AllowShowLinkedInUrlComment', 1);
  25. </code></pre>
  26. <pre><code>INSERT INTO settings_options (variable, value, display_text)
  27. VALUES
  28. ('allow_show_skype_account', 'true', 'Yes'),
  29. ('allow_show_skype_account', 'false', 'No'),
  30. ('allow_show_linkedin_url', 'true', 'Yes'),
  31. ('allow_show_linkedin_url', 'false', 'No');
  32. </code></pre>