Skip to content

Commit

Permalink
Fix readme file of Skype plugin - refs BT#10956
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelFQC committed Jun 10, 2016
1 parent 225f918 commit 4d7b8f0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions plugin/skype/README.md
Expand Up @@ -6,25 +6,25 @@ This pluging was integrated within Chamilo LMS core
To configure this plugin you need execute this SQL queries:

* Enable the Skype extra field:
```
```sql
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:
```
```sql
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:
```
```sql
INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, access_url_changeable)
VALUES
('allow_show_skype_account', NULL, 'radio', 'Course', 'true', 'AllowShowSkypeAccountTitle', 'AllowShowSkypeAccountComment', 1),
('allow_show_linkedin_url', NULL, 'radio', 'Course', 'true', 'AllowShowLinkedInUrlTitle', 'AllowShowLinkedInUrlComment', 1);
```
('allow_show_skype_account', NULL, 'radio', 'Platform', 'true', 'AllowShowSkypeAccountTitle', 'AllowShowSkypeAccountComment', 1),
('allow_show_linkedin_url', NULL, 'radio', 'Platform', 'true', 'AllowShowLinkedInUrlTitle', 'AllowShowLinkedInUrlComment', 1);
```
```sql
INSERT INTO settings_options (variable, value, display_text)
VALUES
('allow_show_skype_account', 'true', 'Yes'),
Expand Down
4 changes: 2 additions & 2 deletions plugin/skype/readme.txt
Expand Up @@ -28,8 +28,8 @@ VALUES

<pre><code>INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, access_url_changeable)
VALUES
('allow_show_skype_account', NULL, 'radio', 'Course', 'true', 'AllowShowSkypeAccountTitle', 'AllowShowSkypeAccountComment', 1),
('allow_show_linkedin_url', NULL, 'radio', 'Course', 'true', 'AllowShowLinkedInUrlTitle', 'AllowShowLinkedInUrlComment', 1);
('allow_show_skype_account', NULL, 'radio', 'Platform', 'true', 'AllowShowSkypeAccountTitle', 'AllowShowSkypeAccountComment', 1),
('allow_show_linkedin_url', NULL, 'radio', 'Platform', 'true', 'AllowShowLinkedInUrlTitle', 'AllowShowLinkedInUrlComment', 1);
</code></pre>

<pre><code>INSERT INTO settings_options (variable, value, display_text)
Expand Down

0 comments on commit 4d7b8f0

Please sign in to comment.