Yannick Warnier
d9c0ba6166
Minor - Change location of new config option
7 years ago
Alex Aragón
4ac55d47f3
add configurations - refs #2880
7 years ago
Yannick Warnier
84b2e77c4b
Minor: Typo fix in configuration.dist.php
7 years ago
Yannick Warnier
1ff5c0b384
Minor - Fix erroneous introduction of multi-line comment without end in configuration.dist.php
7 years ago
Julio Montoya
f8e3bee082
Merge from ofaj_dev adding missing config settings:
...
profile_fields_visibility
required_extra_fields_in_profile
hide_forum_post_revision_language
7 years ago
Angel Fernando Quiroz Campos
6e2c7b4e82
Add missing settings when installing #2859
7 years ago
Julio
c07b9958a4
Replace $(document).ready with shortcut version
7 years ago
Angel Fernando Quiroz Campos
9c5371b448
Rename entity MessageLikes to MessageFeedback
...
See 9af667f5af
7 years ago
Julio
47f03518fd
Fix missing field BT#14357 when using config allow_gradebook_stats
7 years ago
Julio
efcd6d14dd
Add "allow_gradebook_stats" config to improve gradebook speed
...
See BT#14357
Requires:
- DB changes see configuration.dist.php
- editing the entities: GradebookLink.php and GradebookEvaluation
7 years ago
Julio
4cb8f2e1b4
Add config "block_editor_file_manager_for_students" BT#15437
...
Block student's access to the course documents
when using the ckeditor "Browse server" button
7 years ago
Angel Fernando Quiroz Campos
9af667f5af
Add social_enable_likes_messages conf setting - refs BT#15393
...
Allows to user add likes or dislikes to posts in social wall. Requires DB changes:
```sql
CREATE TABLE message_likes (id BIGINT AUTO_INCREMENT NOT NULL, message_id BIGINT NOT NULL, user_id INT NOT NULL, liked TINYINT(1) DEFAULT '0' NOT NULL, disliked TINYINT(1) DEFAULT '0' NOT NULL, updated_at DATETIME NOT NULL, INDEX IDX_B66CB196537A1329 (message_id), INDEX IDX_B66CB196A76ED395 (user_id), INDEX idx_message_likes_uid_mid (message_id, user_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB;
ALTER TABLE message_likes ADD CONSTRAINT FK_B66CB196537A1329 FOREIGN KEY (message_id) REFERENCES message (id) ON DELETE CASCADE;
ALTER TABLE message_likes ADD CONSTRAINT FK_B66CB196A76ED395 FOREIGN KEY (user_id) REFERENCES user (id) ON DELETE CASCADE;
```
- edit src/Chamilo/CoreBundle/Entity/MessageLikes.php
and follow the instructions about the @ORM\Entity() line
- edit src/Chamilo/CoreBundle/Entity/Message.php
and fllow the instruccions about the @ORM\OneToMany line for the $likes property
- launch composer install to rebuild the autoload.php
7 years ago
Angel Fernando Quiroz Campos
89cbc14cd0
Add survey_anonymous_show_answered conf settings - refs BT#15280
...
Allow show answers in anonymous surveys
7 years ago
Julio Montoya
2126322664
Minor - add index docs for table track_e_access_complete see BT#15400
7 years ago
Julio Montoya
03bedd2143
Minor - format code
7 years ago
Angel Fernando Quiroz Campos
0de2668a71
Add exercise_additional_teacher_modify_actions conf settings - refs BT#15265
...
Allow add additional actions (as links) in exercises list for teachers.
7 years ago
Angel Fernando Quiroz Campos
6a758d8a52
Add mail_no_reply_avoid_reply_to conf setting #2699
...
Avoid add a reply-to header when a no-reply address is set.
7 years ago
Julio Montoya
5c4c90b28c
Translate HTML text based in the HTML "lang" attribute see BT#15166
...
$_configuration['translate_html'] = false;
7 years ago
Julio Montoya
73d802a6ad
Add social map, requires to add geolocation extra fields BT#15176
...
$_configuration['allow_social_map_fields'] = ['fields' => ['terms_villedustage', 'terms_ville']];
7 years ago
Julio Montoya
a31c5df0cb
Add new config settings
...
"allow_forum_post_revisions" BT#15173
"community_managers_user_list" BT#15173
"global_forums_course_id" BT#15309
7 years ago
Julio Montoya
2521f40bd5
New social, forum and chat UI (from ofaj branch)
7 years ago
Yannick Warnier
f77765fc6e
Update version to 1.11.10 in version.php
7 years ago
Julio Montoya
c2f9db3d27
Add "required_extra_fields_in_inscription" configuration BT#15326
...
Set extra fields as required in the inscription.php page
Add forum_post, forum_category extra fields
7 years ago
Julio Montoya
ad889d1654
Minor - flint fixes
7 years ago
Alex Aragón
941887eebc
adding new configuration parameter 'forum_fold_categories' - refs #15317
7 years ago
Julio
3548395235
Hide course graph reports with config setting: BT#15318
...
$_configuration['hide_course_report_graph'] = false;
7 years ago
Angel Fernando Quiroz Campos
ebe2eb117a
Add conf setting survey_additional_teacher_modify_actions - refs BT#15281
...
Allow add additional actions (as links) in survey list for teachers.
e.g. ['myplugin' => ['MyPlugin', 'urlGeneratorCallback']]
7 years ago
Julio
bea34c6754
Minor - fix typo
7 years ago
Angel Fernando Quiroz Campos
3d2680085f
Survey: Rename mark_survey_question_as_required - refs #15281
7 years ago
Angel Fernando Quiroz Campos
32f6c691d1
Survey: Add mark_survey_question_as_required conf setting - refs BT#15281
7 years ago
Angel Fernando Quiroz Campos
e1938aa4c3
Remove certificate for course creation with exemplary content #2758
7 years ago
Angel Fernando Quiroz Campos
8a21d41da8
Add config value admin_chamilo_announcements_disable #2796
...
Disable Chamilo.org announcements at the top of the admin page
7 years ago
Julio
2f89e9c033
Change jqgrid settings to be used in sortable table too see BT#15270
7 years ago
Julio
eca05ce736
Add default row value for jqgrids, config "jq_grid_default_row"
...
See BT#15270
7 years ago
Julio
70242077ac
Add configuration "jq_grid_row_list" to change the jqgrid row list
...
BT#15270
//$_configuration['jq_grid_row_list'] = ['options' => [50, 100, 200, 500]];
7 years ago
Julio
097585fd4a
Config "lp_minimum_item", depends in a course extra field BT#15252
...
The course extra field name is "new_tracking_system".
It should be turned on in order to process the new stats,
otherwise it will load the classic stats.
7 years ago
Julio Montoya
dc21353812
Add "show_question_id" config to show question id in the exercises BT#15230
...
Add DESCRIPTION option when importing exercises with AIKEN
Remove unused setting "allow_question_code"
7 years ago
Julio Montoya
a1e9e3f287
Add config that limits teachers rights in exercise BT#15235
...
$_configuration['limit_exercise_teacher_access']
7 years ago
Julio Montoya
c3109933ab
Add pagination in question list BT#15238
7 years ago
Yannick Warnier
a7fbce4090
Admin: Add configuration setting quiz_show_description_on_results_page to control whether the test description is shown on the results page or not - refs BT#11784
7 years ago
Yannick Warnier
f4653e53d5
Admin: Add configuration setting quiz_prevent_copy_paste to prevent copying questions/answers text with the keyboard or the right-click menu - refs BT#15208
7 years ago
Julio Montoya
ee13775aa7
Add question code configuration "allow_question_code" see BT#15232 BT#15230
7 years ago
Julio Montoya
ec1faa53b0
Add configuration "hide_social_media_links" see BT#15010
7 years ago
Julio Montoya
dcbdc12748
Remove setting "allow_track_complete" use only "lp_minimum_time" BT#15020
...
Replace Tracking::get_time_spent_in_lp with Tracking::getCalculateTime
7 years ago
Julio Montoya
bfdfc062fc
Use c_link.iid during migration + fix c_link.id cases see BT#15056
7 years ago
Angel Fernando Quiroz Campos
a681bf55ea
Remove limit_session_admin_role from conf file and use setting #2708
7 years ago
Angel Fernando Quiroz Campos
dbc571c72b
Add allow_session_admin_login_as_teacher conf setting - refs BT#15095
...
Allow to session admins login as teachers
7 years ago
Julio Montoya
c1cdf0a8d3
Add config "allow_user_session_collapsable" see BT#15126
...
Add collapsable option when showing the course list
inside a session in userportal.php
7 years ago
Julio Montoya
3520689c33
Add setting 'allow_user_course_category_collapsable' see BT#15126
...
Course list inside a user category can be set to be collapsed or not.
Requires a DB change.
7 years ago
Julio Montoya
676d2c17fe
Setting added $_configuration['allow_track_complete'] = false; BT#15020
...
Allows more detail user tracking
7 years ago