configuration.dist.php 63 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315
  1. <?php
  2. // Chamilo version {NEW_VERSION}
  3. // File generated by /install/index.php script - {DATE_GENERATED}
  4. /* For licensing terms, see /license.txt */
  5. /**
  6. * Campus configuration.
  7. *
  8. * This file contains a list of variables that can be modified by the campus
  9. * site's server administrator. Pay attention when changing these variables,
  10. * some changes may cause Chamilo to stop working.
  11. * If you changed some settings and want to restore them, please have a look at
  12. * configuration.dist.php. That file is an exact copy of the config file at
  13. * install time.
  14. */
  15. /**
  16. * $_configuration define only the bare essential variables
  17. * for configuring the platform (paths, database connections, ...).
  18. * Changing a $_configuration variable CAN generally break the installation.
  19. * Besides the $_configuration, a $_settings array also exists, that
  20. * contains variables that can be changed and will not break the platform.
  21. * These optional settings are defined in the database, now
  22. * (table settings_current).
  23. */
  24. /**
  25. * Database connection settings.
  26. */
  27. // Database host
  28. $_configuration['db_host'] = '{DATABASE_HOST}';
  29. // Database port
  30. $_configuration['db_port'] = '{DATABASE_PORT}';
  31. // Database name
  32. $_configuration['main_database'] = '{DATABASE_MAIN}';
  33. // Database username
  34. $_configuration['db_user'] = '{DATABASE_USER}';
  35. // Database password
  36. $_configuration['db_password'] = '{DATABASE_PASSWORD}';
  37. // Enable access to database management for platform admins.
  38. $_configuration['db_manager_enabled'] = false;
  39. /**
  40. * Directory settings.
  41. */
  42. // URL to the root of your Chamilo installation, e.g.: http://www.mychamilo.com/
  43. $_configuration['root_web'] = '{ROOT_WEB}';
  44. // Path to the webroot of system, example: /var/www/
  45. $_configuration['root_sys'] = '{ROOT_SYS}';
  46. // Path from your WWW-root to the root of your Chamilo installation,
  47. // example: chamilo (this means chamilo is installed in /var/www/chamilo/
  48. $_configuration['url_append'] = '{URL_APPEND_PATH}';
  49. /**
  50. * Login modules settings.
  51. */
  52. // CAS IMPLEMENTATION
  53. // -> Go to your portal Chamilo > Administration > CAS to activate CAS
  54. // You can leave these lines uncommented even if you don't use CAS authentification
  55. //$extAuthSource["cas"]["login"] = $_configuration['root_sys']."main/auth/cas/login.php";
  56. //$extAuthSource["cas"]["newUser"] = $_configuration['root_sys']."main/auth/cas/newUser.php";
  57. // NEW LDAP IMPLEMENTATION BASED ON external_login info
  58. // -> Uncomment the two lines bellow to activate LDAP AND edit main/auth/external_login/ldap.conf.php for configuration
  59. // $extAuthSource["extldap"]["login"] = $_configuration['root_sys']."main/auth/external_login/login.ldap.php";
  60. // $extAuthSource["extldap"]["newUser"] = $_configuration['root_sys']."main/auth/external_login/newUser.ldap.php";
  61. //
  62. // FACEBOOK IMPLEMENTATION BASED ON external_login info
  63. // -> Uncomment the line bellow to activate Facebook Auth AND edit app/config/auth.conf.php for configuration
  64. // $_configuration['facebook_auth'] = 1;
  65. //
  66. // OTHER EXTERNAL LOGIN INFORMATION
  67. // To fetch external login information, uncomment those 2 lines and modify files auth/external_login/newUser.php and auth/external_login/updateUser.php files
  68. // $extAuthSource["external_login"]["newUser"] = $_configuration['root_sys']."main/auth/external_login/newUser.php";
  69. // $extAuthSource["external_login"]["updateUser"] = $_configuration['root_sys']."main/auth/external_login/updateUser.php";
  70. /**
  71. * Hosting settings - Allows you to set limits to the Chamilo portal when
  72. * hosting it for a third party. These settings can be overwritten by an
  73. * optionally-loaded extension file with only the settings (no comments).
  74. * The settings use an index at the first level to represent the ID of the
  75. * URL in case you use multi-url (otherwise it will always use 1, which is
  76. * the ID of the only URL inside the access_url table).
  77. */
  78. // Set a maximum number of users. Default (0) = no limit
  79. $_configuration[1]['hosting_limit_users'] = 0;
  80. // Set a maximum number of teachers. Default (0) = no limit
  81. $_configuration[1]['hosting_limit_teachers'] = 0;
  82. // Set a maximum number of courses. Default (0) = no limit
  83. $_configuration[1]['hosting_limit_courses'] = 0;
  84. // Set a maximum number of sessions. Default (0) = no limit
  85. $_configuration[1]['hosting_limit_sessions'] = 0;
  86. // Set a maximum disk space used, in MB (set to 1024 for 1GB, 5120 for 5GB, etc)
  87. // Default (0) = no limit
  88. $_configuration[1]['hosting_limit_disk_space'] = 0;
  89. // Set a maximum number of usable courses. Default (0) = no limit.
  90. // Should always be lower than the hosting_limit_courses.
  91. // If set, defining a course as "hidden" will free room for
  92. // new courses (up to the hosting_limit_courses, if any value is set there).
  93. // hosting_limit_enabled_courses is the maximum number of courses that are *not* hidden.
  94. $_configuration[1]['hosting_limit_active_courses'] = 0;
  95. // Email to warn if limit was reached.
  96. //$_configuration[1]['hosting_contact_mail'] = 'example@example.org';
  97. // Portal size limit in MB (set to 1024 for 1GB, 5120 for 5GB, etc).
  98. // Check main/cron/hosting_total_size_limit.php for how to use this limit.
  99. $_configuration['hosting_total_size_limit'] = 0;
  100. /**
  101. * Content Delivery Network (CDN) settings. Only use if you need a separate
  102. * server to serve your static data. If you don't know what a CDN is, you
  103. * don't need it. These settings are for simple Origin Pull CDNs and are
  104. * experimental. Enable only if you really know what you're doing.
  105. * This might conflict with multiple-access urls.
  106. * Please note that recent browsers forbid the loading of resources from
  107. * a different portal URL then where they are, due to CORS rules.
  108. * To allow for CDN usage with different URLs, you need to specifically
  109. * allow CORS Access-Control-Allow-Origin for your main Chamilo URL.
  110. * This has to be done at the web server level, because Chamilo's PHP code
  111. * doesn't change HTTP headers of all files served from the Chamilo directory.
  112. * To do that on Apache, use
  113. * Header set Access-Control-Allow-Origin "http(s)://main-chamilo-url"
  114. * in Nginx:
  115. * add_header 'Access-Control-Allow-Origin' 'http(s)://main-chamilo-url';.
  116. */
  117. // Set the following setting to true to start using the CDN
  118. $_configuration['cdn_enable'] = false;
  119. // The following setting will be ignored if the previous one is set to false
  120. $_configuration['cdn'] = [
  121. // You can define several CDNs and split them by extensions
  122. // Replace the following by your full CDN URL, which should point to
  123. // your Chamilo's root directory. DO NOT INCLUDE a final slash! (won't work)
  124. 'http://cdn.chamilo.org' => [
  125. '.css',
  126. '.js',
  127. '.jpg',
  128. '.jpeg',
  129. '.png',
  130. '.gif',
  131. '.avi',
  132. '.flv',
  133. ],
  134. // copy the line above and modify following your needs
  135. ];
  136. /**
  137. * Misc. settings.
  138. */
  139. // Security word for password recovery
  140. $_configuration['security_key'] = '{SECURITY_KEY}';
  141. // Hash function method
  142. $_configuration['password_encryption'] = '{ENCRYPT_PASSWORD}';
  143. // You may have to restart your web server if you change this
  144. $_configuration['session_stored_in_db'] = false;
  145. // Session lifetime
  146. $_configuration['session_lifetime'] = SESSION_LIFETIME;
  147. // Activation for multi-url access
  148. // When enabling multi-url, settings can be configured by multi-url using a simple
  149. // sub-element. E.g. $_configuration['session_lifetime'][1] = true; could be turned into
  150. // something like $_configuration['session_lifetime'][2] = false; to affect only URL
  151. // with ID 2. The ID can be found in the access_url table.
  152. //$_configuration['multiple_access_urls'] = true;
  153. $_configuration['software_name'] = 'Chamilo';
  154. $_configuration['software_url'] = 'https://chamilo.org/';
  155. // Deny the elimination of users
  156. $_configuration['deny_delete_users'] = false;
  157. // Version settings
  158. $_configuration['system_version'] = '{NEW_VERSION}';
  159. $_configuration['system_stable'] = NEW_VERSION_STABLE;
  160. /**
  161. * Settings to be included as settings_current in future versions.
  162. */
  163. // Uncomment the following to prevent all admins to use the "login as" feature
  164. //$_configuration['login_as_forbidden_globally'] = true;
  165. // If session_stored_in_db is false, an alternative session storage mechanism
  166. // can be used, which allows for a volatile storage in Memcache, and a more
  167. // permanent "backup" storage in the database, every once in a while (see
  168. // frequency). This is generally used in HA clusters configurations
  169. // This requires memcache or memcached and the php5-memcache module to be setup
  170. //$_configuration['session_stored_in_db_as_backup'] = true;
  171. // Define the different memcache servers available
  172. //$_configuration['memcache_server'] = array(
  173. // 0 => array(
  174. // 'host' => 'chamilo8',
  175. // 'port' => '11211',
  176. // ),
  177. // 1 => array(
  178. // 'host' => 'chamilo9',
  179. // 'port' => '11211',
  180. // ),
  181. //);
  182. // Define the frequency to which the data must be stored in the database
  183. //$_configuration['session_stored_after_n_times'] = 10;
  184. // If the database is down this css style will be used to show the errors.
  185. //$_configuration['theme_fallback'] = 'chamilo'; // (chamilo theme)
  186. // The default template that will be use in the system.
  187. //$_configuration['default_template'] = 'default'; // (main/template/default)
  188. // Hide fields in the main/user/user.php page
  189. //$_configuration['hide_user_field_from_list'] = ['fields' => ['username']];
  190. // Aspell Settings
  191. //$_configuration['aspell_bin'] = '/usr/bin/hunspell';
  192. //$_configuration['aspell_opts'] = '-a -d en_GB -H -i utf-8';
  193. //$_configuration['aspell_temp_dir'] = './';
  194. // Custom name_order_conventions
  195. //$_configuration['name_order_conventions'] = array(
  196. // 'french' => array('format' => 'title last_name first_name', 'sort_by' => 'last_name')
  197. //);
  198. // Course log - Default columns to hide
  199. //$_configuration['course_log_hide_columns'] = ['columns' => [1, 9]];
  200. // Unoconv binary file
  201. //$_configuration['unoconv.binaries'] = '/usr/bin/unoconv';
  202. // Proxy settings for access external services
  203. /*$_configuration['proxy_settings'] = [
  204. 'stream_context_create' => [
  205. 'http' => [
  206. 'proxy' => 'tcp://example.com:8080',
  207. 'request_fulluri' => true
  208. ]
  209. ],
  210. 'curl_setopt_array' => [
  211. 'CURLOPT_PROXY' => 'http://example.com',
  212. 'CURLOPT_PROXYPORT' => '8080'
  213. ]
  214. ];*/
  215. // E-mail accounts to send notifications to when executing cronjobs - works for main/cron/import_csv.php
  216. //$_configuration['cron_notification_mails'] = array('email@example.com', 'email2@example.com');
  217. // Help desk emails that will recieve email notifications in import_csv.php
  218. //$_configuration['cron_notification_help_desk'] = array('email@example.com', 'email2@example.com');
  219. // Only shows the fields in this list
  220. /*$_configuration['allow_fields_inscription'] = [
  221. 'fields' => [
  222. 'official_code',
  223. 'phone',
  224. 'status',
  225. 'language'
  226. ],
  227. 'extra_fields' => [
  228. 'birthday'
  229. ]
  230. ];*/
  231. // Boost option to ignore encoding check for learning paths
  232. //$_configuration['lp_fixed_encoding'] = 'false';
  233. // Fix urls changing http with https in scorm packages.
  234. //$_configuration['lp_replace_http_to_https'] = false;
  235. // Fix embedded videos inside lps, adding an optional popup
  236. //$_configuration['lp_fix_embed_content'] = false;
  237. // Manage deleted files marked with "DELETED" (by course and only by allowed by admin)
  238. //$_configuration['document_manage_deleted_files'] = false;
  239. // Hide tabs in the main/session/index.php page
  240. //$_configuration['session_hide_tab_list'] = array();
  241. // Show invisible exercise in LP list
  242. //$_configuration['show_invisible_exercise_in_lp_list'] = false;
  243. // Chamilo is installed/downloaded. Packagers can change this
  244. // to reflect their packaging method. The default value is 'chamilo'. This will
  245. // be reflected on the https://version.chamilo.org/stats page in the future.
  246. //$_configuration['packager'] = 'chamilo';
  247. // If true exercises added in LP can be modified.
  248. //$_configuration['force_edit_exercise_in_lp'] = false;
  249. // List of driver to plugin in ckeditor
  250. //$_configuration['editor_driver_list'] = ['PersonalDriver', 'CourseDriver'];
  251. // Hide send to hrm users options in announcements
  252. //$_configuration['announcements_hide_send_to_hrm_users'] = true;
  253. // Hide certificate link in index/userportal pages
  254. //$_configuration['hide_my_certificate_link'] = false;
  255. // Hide header and footer in certificate pdf
  256. //$_configuration['hide_header_footer_in_certificate'] = false;
  257. // Security: block direct access from logged in users to contents in OPEN (but not public) courses. Set to true to block
  258. //$_configuration['block_registered_users_access_to_open_course_contents'] = false;
  259. // Allows syncing the database with the current entity schema
  260. //$_configuration['sync_db_with_schema'] = false;
  261. // When exporting a LP, all files and folders in the same path of an html will be exported too.
  262. //$_configuration['add_all_files_in_lp_export'] = false;
  263. // Send exercise student score to manager in email notification
  264. //$_configuration['send_score_in_exam_notification_mail_to_manager'] = false;
  265. // Show blocked LPs by prerequisite to students
  266. //$_configuration['show_prerequisite_as_blocked'] = false;
  267. // Mail header extra HTML attributes
  268. //$_configuration['mail_header_style'] = '';
  269. // Mail body extra HTML attributes
  270. //$_configuration['mail_content_style'] = '';
  271. // Show all agenda events in personal agenda from all session no matter the visibility.
  272. //$_configuration['personal_agenda_show_all_session_events'] = false;
  273. // Allows to redirect to the session after the inscription in session about
  274. // $_configuration['allow_redirect_to_session_after_inscription_about'] = false;
  275. // Allows to do a remove_XSS in course introduction with user status COURSEMANAGERLOWSECURITY
  276. // in order to accept all embed type videos (like vimeo, wistia, etc)
  277. // $_configuration['course_introduction_html_strict_filtering'] = true;
  278. // Prevents the duplicate upload in assignments
  279. // $_configuration['assignment_prevent_duplicate_upload'] = false;
  280. //Show student progress in My courses page
  281. //$_configuration['course_student_info']['score'] = false;
  282. //$_configuration['course_student_info']['progress'] = false;
  283. //$_configuration['course_student_info']['certificate'] = false;
  284. // Set ConsideredWorkingTime work extra field variable to show in MyStudents page works report
  285. // (with internal id 'work_time' as below) and enable the following line to show in MyStudents page works report
  286. // $_configuration['considered_working_time'] = 'work_time';
  287. // During CSV special imports update users emails to x@example.com
  288. // $_configuration['update_users_email_to_dummy_except_admins'] = false;
  289. // Certification pdf export orientation
  290. // $_configuration['certificate_pdf_orientation'] = 'landscape'; // It can be 'portrait' or 'landscape'
  291. // Hide main navigation menu (left column in userportal)
  292. // $_configuration['hide_main_navigation_menu'] = false;
  293. // PDF image dpi value. Default value 96
  294. // $_configuration['pdf_img_dpi'] = 96;
  295. // Hide LP time in reports.
  296. // $_configuration['hide_lp_time'] = false;
  297. // Hide rating elements in pages ("Courses catalog" & "Most Popular courses")
  298. // $_configuration['hide_course_rating'] = false;
  299. // Customize password generation and verification
  300. /*$_configuration['password_requirements'] = [
  301. 'min' => [
  302. 'lowercase' => 2,
  303. 'uppercase' => 2,
  304. 'numeric' => 2,
  305. 'length' => 8
  306. ]
  307. ];*/
  308. // Customize course session tracking columns
  309. /*
  310. $_configuration['tracking_columns'] = [
  311. 'course_session' => [
  312. 'course_title' => true,
  313. 'published_exercises' => true,
  314. 'new_exercises' => true,
  315. 'my_average' => true,
  316. 'average_exercise_result' => true,
  317. 'time_spent' => true,
  318. 'lp_progress' => true,
  319. 'score' => true,
  320. 'best_score' => true,
  321. 'last_connection' => true,
  322. 'details' => true,
  323. ],
  324. 'my_students_lp' => [
  325. 'lp' => true,
  326. 'time' => true,
  327. 'best_score' => true,
  328. 'latest_attempt_avg_score' => true,
  329. 'progress' => true,
  330. 'last_connection' => true,
  331. ],
  332. 'my_progress_lp' => [
  333. 'lp' => true,
  334. 'time' => true,
  335. 'progress' => true,
  336. 'score' => true,
  337. 'best_score' => true,
  338. 'last_connection' => true,
  339. ],
  340. 'my_progress_courses' => [
  341. 'course_title' => true,
  342. 'time_spent' => true,
  343. 'progress' => true,
  344. 'best_score_in_lp' => true,
  345. 'best_score_not_in_lp' => true,
  346. 'latest_login' => true,
  347. 'details' => true
  348. ]
  349. ];
  350. */
  351. // Hide session link of course_block on index/userportal
  352. //$_configuration['remove_session_url']= false ;
  353. //
  354. //
  355. // ------ AGENDA CONFIGURATION SETTINGS
  356. // Shows a legend in the agenda tool
  357. /*
  358. $_configuration['agenda_legend'] = [
  359. 'red' => 'red caption',
  360. '#f0f' => 'another caption'
  361. ];*/
  362. // Set customs colors to agenda events
  363. /*
  364. $_configuration['agenda_colors'] = [
  365. 'platform' => 'red',
  366. 'course' => '#458B00',
  367. 'group' => '#A0522D',
  368. 'session' => '#00496D',
  369. 'other_session' => '#999',
  370. 'personal' => 'steel blue',
  371. 'student_publication' => '#FF8C00'
  372. ];
  373. */
  374. // ------
  375. //
  376. // Save some tool titles with HTML editor. Require DB changes:
  377. /*
  378. ALTER TABLE course_category CHANGE name name LONGTEXT NOT NULL;
  379. ALTER TABLE c_course_description CHANGE title title LONGTEXT NOT NULL;
  380. ALTER TABLE c_thematic CHANGE title title LONGTEXT NOT NULL;
  381. ALTER TABLE c_quiz CHANGE title title LONGTEXT NOT NULL;
  382. ALTER TABLE c_lp_category CHANGE name name LONGTEXT NOT NULL;
  383. ALTER TABLE c_glossary CHANGE name name LONGTEXT NOT NULL;
  384. ALTER TABLE c_tool CHANGE name name LONGTEXT NOT NULL;
  385. -- Only with allow_portfolio_tool enabled
  386. ALTER TABLE portfolio CHANGE title title LONGTEXT NOT NULL;
  387. ALTER TABLE portfolio_category CHANGE title title LONGTEXT NOT NULL;
  388. New changes:
  389. ALTER TABLE c_lp CHANGE name name LONGTEXT NOT NULL;
  390. ALTER TABLE c_lp_item CHANGE title title LONGTEXT NOT NULL;
  391. --
  392. */
  393. // $_configuration['save_titles_as_html'] = false;
  394. // Show the full toolbar set to all CKEditor
  395. //$_configuration['full_ckeditor_toolbar_set'] = false;
  396. // Allow change the orientation when export a (course progress) thematic to pdf. Portrait or landscape
  397. //$_configuration['thematic_pdf_orientation'] = 'landscape';
  398. // Show number of users in session list
  399. //$_configuration['session_list_show_count_users'] = false;
  400. // Session admin access to all course content
  401. //$_configuration['session_admins_access_all_content'] = false;
  402. // Session admin allowed to edit all courses content
  403. //$_configuration['session_admins_edit_courses_content'] = false;
  404. // Adds roles to the system announcements (requires DB change BT#12476)
  405. //$_configuration['system_announce_extra_roles'] = false;
  406. // Limits that a session admin has access to list users
  407. //$_configuration['limit_session_admin_list_users'] = false;
  408. // Course tools visibility edition in sessions
  409. //$_configuration['allow_edit_tool_visibility_in_session'] = false;
  410. // Enable the support to ODF files
  411. //$_configuration['enabled_support_odf'] = true;
  412. // Pdf orientation when exporting documents
  413. // $_configuration['document_pdf_orientation'] = 'landscape'; // It can be 'portrait' or 'landscape'
  414. // Use alternative footer when exporting document to PDF
  415. //$_configuration['use_alternative_document_pdf_footer'] = false;
  416. // If the MySpace page takes too long to load, you might want to remove the
  417. // processing of generic statistics for the user. In this case set the following to true.
  418. //$_configuration['tracking_skip_generic_data'] = false;
  419. // Show view accordion lp_category
  420. //$_configuration['lp_category_accordion'] = false;
  421. //
  422. // Show view accordion lp_item_view
  423. // $_configuration['lp_view_accordion'] = false;
  424. //
  425. // ------ HTTP headers security
  426. // This section relates to options to increase the security of your Chamilo
  427. // portal against attacks specifically focused on HTTP headers vulnerabilities
  428. // These are all disabled by default, because some of these settings might
  429. // affect some features of Chamilo, like the inclusion of iframes or the
  430. // submission of forms by anonymous users. Please make sure you do the due
  431. // tests before enabling in production. Learn more about how to form secure
  432. // headers at https://securityheaders.io/
  433. //
  434. // HTTP Strict Transport Security is an excellent feature to support on your
  435. // site and strengthens your implementation of TLS by getting the User Agent
  436. // to enforce the use of HTTPS. Recommended value
  437. // "strict-transport-security: max-age=31536000; includeSubDomains".
  438. //$_configuration['security_strict_transport'] = 'strict-transport-security: max-age=31536000; includeSubDomains';
  439. //
  440. // Content Security Policy is an effective measure to protect your site from
  441. // XSS attacks. By whitelisting sources of approved content, you can prevent
  442. // the browser from loading malicious assets.
  443. // The provided default is an *example*, please customize.
  444. // This setting is particularly complicated to set with CKeditor, but if you
  445. // add all domains that you want to authorize for iframes inclusion in the
  446. // child-src statement, this example should work for you
  447. //$_configuration['security_content_policy'] = 'default-src 'self'; script-src 'self' 'unsafe-eval' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; child-src 'self' *.youtube.com yt.be *.vimeo.com *.slideshare.com;';
  448. //$_configuration['security_content_policy_report_only'] = 'default-src \'self\'; script-src *://*.google.com:*';
  449. //
  450. // HTTP Public Key Pinning protects your site from MiTM attacks using rogue
  451. // X.509 certificates. By whitelisting only the identities that the browser
  452. // should trust, your users are protected in the event a certificate
  453. // authority is compromised.
  454. //$_configuration['security_public_key_pins'] = '';
  455. //$_configuration['security_public_key_pins_report_only'] = '';
  456. //
  457. // X-Frame-Options tells the browser whether you want to allow your site to
  458. // be framed or not. By preventing a browser from framing your site you can
  459. // defend against attacks like clickjacking.
  460. // If defining a URL here, it should define the URL(s) from which your content
  461. // should be visible, not the URLs from which your site accepts content.
  462. // For example, if your main URL (root_web above) is https://11.chamilo.org/,
  463. // then this setting should be: 'ALLOW-FROM https://11.chamilo.org'.
  464. // These headers only apply to pages where Chamilo is responsible of the HTTP
  465. // headers generation (i.e. ".php" files). It does not apply to static files.
  466. // If playing with this feature, make sure you also update your web server
  467. // configuration to add the right headers for static files. See CDN
  468. // configuration documentation above (search for "add_header") for more
  469. // information.
  470. // Recommended (strict) value for this setting, if enabled: "SAMEORIGIN".
  471. //$_configuration['security_x_frame_options'] = 'SAMEORIGIN';
  472. //
  473. // X-XSS-Protection sets the configuration for the cross-site scripting
  474. // filter built into most browsers.
  475. // Recommended value "1; mode=block".
  476. //$_configuration['security_xss_protection'] = '1; mode=block';
  477. //
  478. // X-Content-Type-Options stops a browser from trying to MIME-sniff the
  479. // content type and forces it to stick with the declared content-type. The only
  480. // valid value for this header is "nosniff".
  481. //$_configuration['security_x_content_type_options'] = 'nosniff';
  482. //
  483. // Referrer Policy is a new header that allows a site to control how much
  484. // information the browser includes with navigation away from a document
  485. // and should be set by all sites.
  486. //$_configuration['security_referrer_policy'] = 'origin-when-cross-origin';
  487. // ------ HTTP headers security section ends here
  488. //
  489. // ------ Survey configuration settings
  490. // Add answered_at field in table survey_invitation
  491. // Requires DB change:
  492. // ALTER TABLE c_survey_invitation ADD answered_at DATETIME DEFAULT NULL;
  493. //$_configuration['survey_answered_at_field'] = false;
  494. // Add support to mandatory surveys. The user will not be able to enter to the course until fill the mandatory surveys
  495. // Requires DB change:
  496. /*
  497. INSERT INTO extra_field (extra_field_type, field_type, variable, display_text, visible_to_self, changeable, created_at)
  498. VALUES (12, 13, 'is_mandatory', 'IsMandatory', 1, 1, NOW());
  499. */
  500. //$_configuration['allow_mandatory_survey'] = false;
  501. // Allow required survey questions. Applies to yesno/multiplechoice question type. Requires DB change:
  502. /*
  503. ALTER TABLE c_survey_question ADD is_required TINYINT(1) DEFAULT 0 NOT NULL;
  504. */
  505. //$_configuration['allow_required_survey_questions'] = false;
  506. // Hide Survey Reporting button
  507. //$_configuration['hide_survey_reporting_button'] = false;
  508. // Hide survey edition tools for all or some surveys.
  509. //Set an asterisk to hide for all, otherwise set an array with the survey codes in which the options will be blocked
  510. //$_configuration['hide_survey_edition'] = ['codes' => []];
  511. // Allows to set the date and time of availability for surveys. Requires DB changes:
  512. // ALTER TABLE c_survey CHANGE avail_from avail_from DATETIME DEFAULT NULL, CHANGE avail_till avail_till DATETIME DEFAULT NULL;
  513. // Requires change the Doctrine type from date to datime in CSurvey::$availFrom and CSurvey::$availTill
  514. //$_configuration['allow_survey_availability_datetime'] = false;
  515. // Mark the "Required" field during question creation process when displaying the form.
  516. //$_configuration['survey_mark_question_as_required'] = false;
  517. // Allow add additional actions (as links) in survey list for teachers.
  518. // e.g. ['myplugin' => ['MyPlugin', 'urlGeneratorCallback']]
  519. //$_configuration['survey_additional_teacher_modify_actions'] = [];
  520. // Allow show answers in anonymous surveys
  521. //$_configuration['survey_anonymous_show_answered'] = false;
  522. // ------
  523. // Allow career diagram, requires a DB change:
  524. //UPDATE extra_field_values SET created_at = NULL WHERE CAST(created_at AS CHAR(20)) = '0000-00-00 00:00:00';
  525. //UPDATE extra_field_values SET updated_at = NULL WHERE CAST(updated_at AS CHAR(20)) = '0000-00-00 00:00:00';
  526. //ALTER TABLE extra_field_values modify column value longtext null;
  527. //$_configuration['allow_career_diagram'] = false;
  528. // Allow scheduled emails to session users.
  529. //CREATE TABLE scheduled_announcements (id INT AUTO_INCREMENT NOT NULL, subject VARCHAR(255) NOT NULL, message LONGTEXT NOT NULL, date DATETIME DEFAULT NULL, sent TINYINT(1) NOT NULL, session_id INT NOT NULL, c_id INT DEFAULT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB;
  530. // sudo mkdir app/upload/scheduled_announcement
  531. // Add "attachment" file extra field in: main/admin/extra_fields.php?type=scheduled_announcement&action=add
  532. // Add "send_to_coaches" checkbox field in: main/admin/extra_fields.php?type=scheduled_announcement&action=add
  533. //$_configuration['allow_scheduled_announcements'] = false;
  534. // Add the list of emails as a bcc when sending an email.
  535. /*
  536. $_configuration['send_all_emails_to'] = [
  537. 'emails' => [
  538. 'admin1@example.com',
  539. 'admin2@example.com',
  540. ]
  541. ];*/
  542. // Allow ticket projects to be access by specific chamilo roles
  543. /*$_configuration['ticket_project_user_roles'] = [
  544. 'permissions' => [
  545. 1 => [17] // project_id = 1, STUDENT_BOSS = 17
  546. ]
  547. ];*/
  548. // Exercises configuration settings
  549. // Send only quiz answer notifications to course coaches and not general coach
  550. //$_configuration['block_quiz_mail_notification_general_coach'] = false;
  551. // Show question feedback (requires DB change: "ALTER TABLE c_quiz_question ADD COLUMN feedback text;")
  552. //$_configuration['allow_quiz_question_feedback'] = false;
  553. // Add option in exercise to show or hide the "previous" button.
  554. //ALTER TABLE c_quiz ADD show_previous_button TINYINT(1) DEFAULT 1;
  555. //$_configuration['allow_quiz_show_previous_button_setting'] = false;
  556. // Allow to teachers review exercises question with audio notes
  557. //$_configuration["allow_teacher_comment_audio"] = false;
  558. // Block copy/paste/save/print keys and right-clicks in exercises
  559. //$_configuration['quiz_prevent_copy_paste'] = false;
  560. // Always show the test description on the results page of the test
  561. //$_configuration['quiz_show_description_on_results_page'] = false;
  562. // Allow add additional actions (as links) in exercises list for teachers.
  563. // Callback get the $exerciseId and $iconSize as parameters.
  564. // e.g. ['myplugin' => ['MyPlugin', 'urlGeneratorCallback']]
  565. //$_configuration['exercise_additional_teacher_modify_actions'] = []
  566. // Generate certificate when ending a quiz.
  567. // The quiz needs to be linked to a gradebook category and have set the pass percentage.
  568. //$_configuration['quiz_generate_certificate_ending'] = false;
  569. // Hide search form in session list
  570. //$_configuration['hide_search_form_in_session_list'] = false;
  571. // Allow exchange of messages from teachers/bosses about a user.
  572. //$_configuration['private_messages_about_user'] = false;
  573. // Allow the messages to be visible for the students
  574. //$_configuration['private_messages_about_user_visible_to_user'] = false;
  575. // Allow send email notification per exercise
  576. //ALTER TABLE c_quiz ADD COLUMN notifications VARCHAR(255) NULL DEFAULT NULL;
  577. //$_configuration['allow_notification_setting_per_exercise'] = false;
  578. // Hide free/oral/annotation question result see BT#12613
  579. //$_configuration['hide_free_question_score'] = false;
  580. // Hide user information in the quiz result's page
  581. //$_configuration['hide_user_info_in_quiz_result'] = false;
  582. // Show the username field in exercise results report
  583. //$_configuration['exercise_attempts_report_show_username'] = false;
  584. // Score model
  585. // Allow to convert a score into a text/color label
  586. // using a model if score is inside those values. See BT#12898
  587. /*
  588. $_configuration['score_grade_model'] = [
  589. 'models' => [
  590. [
  591. 'id' => 1,
  592. 'name' => 'ThisIsMyModel', // Value will be translated using get_lang
  593. 'score_list' => [
  594. [
  595. 'name' => 'VeryBad', // Value will be translated using get_lang
  596. 'css_class' => 'btn-danger',
  597. 'min' => 0,
  598. 'max' => 20,
  599. 'score_to_qualify' => 0
  600. ],
  601. [
  602. 'name' => 'Bad',
  603. 'css_class' => 'btn-danger',
  604. 'min' => 21,
  605. 'max' => 50,
  606. 'score_to_qualify' => 25
  607. ],
  608. [
  609. 'name' => 'Good',
  610. 'css_class' => 'btn-warning',
  611. 'min' => 51,
  612. 'max' => 70,
  613. 'score_to_qualify' => 60
  614. ],
  615. [
  616. 'name' => 'VeryGood',
  617. 'css_class' => 'btn-success',
  618. 'min' => 71,
  619. 'max' => 100,
  620. 'score_to_qualify' => 100
  621. ]
  622. ]
  623. ]
  624. ]
  625. ];
  626. */
  627. // Allow show link to request relation between HRM and user
  628. //$_configuration['show_link_request_hrm_user'] = false;
  629. // Allow CKEditor start up with ShowBlocks plugin active
  630. //$_configuration['ckeditor_startup_outline_blocks'] = false;
  631. // SETTINGS FOR USER COURSE LIST
  632. // Manage the links to Session Index page
  633. // 1 = Default. Works as it is now (default is to link to the special session page)
  634. // 0 = No link (hide session title)
  635. // 2 = Link to the course if there is only one course
  636. // 3 = Session link will make course list foldable
  637. // 4 = No link (only session title)
  638. //$_configuration['courses_list_session_title_link'] = 1;
  639. // New grid view the list of courses
  640. //$_configuration['view_grid_courses'] = true;
  641. // Show courses grouped by categories when $_configuration['view_grid_courses'] is enabled
  642. //$_configuration['view_grid_courses_grouped_categories_in_sessions'] = true;
  643. // Load course notifications in user_portal.php using ajax
  644. //$_configuration['user_portal_load_notification_by_ajax'] = false;
  645. // Hide the "what's new" icon notifications in course list
  646. // $_configuration['hide_course_notification'] = true;
  647. // Show less session information in course list
  648. //$_configuration['show_simple_session_info'] = true;
  649. // Show course category list on My Courses page before the courses. Requires a DB change
  650. //ALTER TABLE course_category ADD image varchar(255) NULL;
  651. //ALTER TABLE course_category ADD description LONGTEXT NULL;
  652. //$_configuration['my_courses_list_as_category'] = false;
  653. // ------
  654. // Skills can only be visible for admins, teachers (related to a user via a course),
  655. // and HRM users (if related to a user).
  656. // $_configuration['allow_private_skills'] = false;
  657. // Additional gradebook dependencies BT#13099
  658. // ALTER TABLE gradebook_category ADD COLUMN depends TEXT DEFAULT NULL;
  659. // ALTER TABLE gradebook_category ADD COLUMN minimum_to_validate INT DEFAULT NULL;
  660. // ALTER TABLE gradebook_category ADD COLUMN gradebooks_to_validate_in_dependence INT DEFAULT NULL;
  661. // $_configuration['gradebook_dependency'] = false;
  662. // Courses id list to check in the gradebook sidebar see BT#13099
  663. /*$_configuration['gradebook_dependency_mandatory_courses'] = [
  664. 'courses' => [1, 2]
  665. ];*/
  666. // Gradebook id list needed to build the gradebook sidebar see BT#13099
  667. /*
  668. $_configuration['gradebook_badge_sidebar'] = [
  669. 'gradebooks' => [1, 2, 3]
  670. ];*/
  671. // Show language selector in main menu an update the language in the user's
  672. // profile.
  673. //$_configuration['show_language_selector_in_menu'] = false;
  674. // When using the my-courses list filter by category, set this option to true
  675. // to only show courses in the user's configured language
  676. // $_configuration['my_courses_show_courses_in_user_language_only'] = false;
  677. // Hide base course announcements when entering a group.
  678. //$_configuration['hide_base_course_announcements_in_group'] = false;
  679. // Disable delete all announcements button
  680. //$_configuration['disable_delete_all_announcements'] = false;
  681. // Default glossary view "table" or "list"
  682. //$_configuration['default_glossary_view'] = 'table';
  683. // Allow or block user subscriptions to a lp/lp category
  684. /*$_configuration['lp_subscription_settings'] = [
  685. 'options' => [
  686. 'allow_add_users_to_lp' => true,
  687. 'allow_add_users_to_lp_category' => true,
  688. ]
  689. ];*/
  690. // Allow public courses access with no terms and conditions validation.
  691. //$_configuration['allow_public_course_with_no_terms_conditions'] = false;
  692. // Allow delete user for session admin
  693. //$_configuration['allow_delete_user_for_session_admin'] = false;
  694. // Allow enable/disable user accounts for session admin
  695. //$_configuration['allow_disable_user_for_session_admin'] = false;
  696. // Allow edit/delete agenda events for HRM users
  697. //$_configuration['allow_agenda_edit_for_hrm'] = false;
  698. // Allow double validation in registration page
  699. //$_configuration['allow_double_validation_in_registration'] = false;
  700. // Allow multiple anon users see BT#13324
  701. //$_configuration['max_anonymous_users'] = 0;
  702. // Send email notification to admin when a user is created
  703. //$_configuration['send_notification_when_user_added'] = ['admins' => [1] ];
  704. // Send email notification to course members when document is added BT#13964
  705. //$_configuration['send_notification_when_document_added'] = false;
  706. // Hide email content forcing using to click in a link to visit the portal to check the message
  707. //$_configuration['messages_hide_mail_content'] = false;
  708. // If you install plugin redirection you need to change to true
  709. //$_configuration['plugin_redirection_enabled'] = false;
  710. // Customize on hover agenda view. Show agenda comment and/or description
  711. /*$_configuration['agenda_on_hover_info'] = [
  712. 'options' => [
  713. 'comment' => true,
  714. 'description' => true,
  715. ]
  716. ];*/
  717. // Disable jquery, jquery-ui libs added in the learning path view
  718. //$_configuration['disable_js_in_lp_view'] = true;
  719. // Show all sessions (old, current, future) in my course page
  720. //$_configuration['show_all_sessions_on_my_course_page'] = true;
  721. // Redirect to home tool after uploading a student publication or a adding a comment
  722. //$_configuration['allow_redirect_to_main_page_after_work_upload'] = false;
  723. // Empty the session student list when subscribing multiple users
  724. //$_configuration['session_multiple_subscription_students_list_avoid_emptying'] = false;
  725. // Disable the option to set course coach in session when editing course
  726. //$_configuration['disabled_edit_session_coaches_course_editing_course'] = false;
  727. // Show sender's email when receiving email notifications.
  728. //$_configuration['show_user_email_in_notification'] = false;
  729. // Set skill levels name, then later it will be parsed using get_lang BT#13586
  730. /*$_configuration['skill_levels_names'] = [
  731. 'levels' => [
  732. 1 => 'Skills',
  733. 2 => 'Capability',
  734. 3 => 'Dimension',
  735. ]
  736. ];*/
  737. // Show popular sessions on homepage
  738. //$_configuration['show_hot_sessions'] = false;
  739. // Hide skill levels options
  740. //$_configuration['hide_skill_levels'] = false;
  741. // Hide the session list in Reporting tool. Useful when a course has too many sessions.
  742. //$_configuration['hide_reporting_session_list'] = false;
  743. // Allow session admin to read careers
  744. //$_configuration['allow_session_admin_read_careers'] = true;
  745. // Enable cloud links in document tool
  746. // $_configuration['enable_add_file_link'] = false;
  747. // Send score in percentage in the exam result notification
  748. //$_configuration['send_notification_score_in_percentage'] = false;
  749. // Google translate key (for the text2speech feature in the documents tool)
  750. // To get it, go to https://console.cloud.google.com/apis/library, create or
  751. // use your own project, then search for "speech" and follow the instructions
  752. // This service has a cost above 60 minutes of use.
  753. //$_configuration['translate_app_google_key'] = '';
  754. // Block access to any user to "my progress" page
  755. //$_configuration['block_my_progress_page'] = false;
  756. // Add user extra fields in report: main/mySpace/exercise_category_report.php
  757. //$_configuration['exercise_category_report_user_extra_fields'] = ['fields' => ['skype', 'rssfeeds']];
  758. // Order sessions
  759. // Requires DB change: ALTER TABLE session ADD COLUMN position INT DEFAULT 0;
  760. // Requires edit Entity Session: src/Chamilo/CoreBundle/Entity/Session.php uncomment "position" variable.
  761. // Requires uncomment the position get and set
  762. //$_configuration['session_list_order'] = false;
  763. // Show skills as a hierarchical table
  764. //$_configuration['table_of_hierarchical_skill_presentation'] = false;
  765. // Restrict course chat only for course coach in sessions
  766. // Course coaches will can chat with students only. And students will can chat with all course coaches
  767. //$_configuration['course_chat_restrict_to_coach'] = false;
  768. // Allow teachers, drhs and admins to access blocked LP's because a prerequisite.
  769. //$_configuration['allow_teachers_to_access_blocked_lp_by_prerequisite'] = false;
  770. // Allow connect skills with course tools (exercises, forum threads, works, etc)
  771. // 1. Add "@ORM\Entity" in these Entities:
  772. //SkillRelItemRelUser/SkillRelItem
  773. // 2. Add "@ORM\OneToMany" in the "Skill.items" variable definition
  774. // 3. Run DB changes:
  775. /*
  776. CREATE TABLE skill_rel_item_rel_user (id INT AUTO_INCREMENT NOT NULL, skill_rel_item_id INT NOT NULL, user_id INT NOT NULL, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, created_by INT NOT NULL, updated_by INT NOT NULL, INDEX IDX_D1133E0DFD4B12DC (skill_rel_item_id), INDEX IDX_D1133E0DA76ED395 (user_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB;
  777. CREATE TABLE skill_rel_item (id INT AUTO_INCREMENT NOT NULL, skill_id INT DEFAULT NULL, item_type INT NOT NULL, item_id INT NOT NULL, obtain_conditions VARCHAR(255) DEFAULT NULL, requires_validation TINYINT(1) NOT NULL, is_real TINYINT(1) NOT NULL, c_id INT DEFAULT NULL, session_id INT DEFAULT NULL, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, created_by INT NOT NULL, updated_by INT NOT NULL, INDEX IDX_EB5B2A0D5585C142 (skill_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB;
  778. ALTER TABLE skill_rel_item_rel_user ADD CONSTRAINT FK_D1133E0DFD4B12DC FOREIGN KEY (skill_rel_item_id) REFERENCES skill_rel_item (id);
  779. ALTER TABLE skill_rel_item_rel_user ADD CONSTRAINT FK_D1133E0DA76ED395 FOREIGN KEY (user_id) REFERENCES user (id);
  780. ALTER TABLE skill_rel_item ADD CONSTRAINT FK_EB5B2A0D5585C142 FOREIGN KEY (skill_id) REFERENCES skill (id);
  781. ALTER TABLE skill_rel_item_rel_user ADD result_id INT DEFAULT NULL;
  782. CREATE TABLE skill_rel_course (id INT AUTO_INCREMENT NOT NULL, skill_id INT DEFAULT NULL, c_id INT NOT NULL, session_id INT NOT NULL, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, INDEX IDX_E7CEC7FA5585C142 (skill_id), INDEX IDX_E7CEC7FA91D79BD3 (c_id), INDEX IDX_E7CEC7FA613FECDF (session_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB;
  783. ALTER TABLE skill_rel_course ADD CONSTRAINT FK_E7CEC7FA5585C142 FOREIGN KEY (skill_id) REFERENCES skill (id);
  784. ALTER TABLE skill_rel_course ADD CONSTRAINT FK_E7CEC7FA91D79BD3 FOREIGN KEY (c_id) REFERENCES course (id);
  785. ALTER TABLE skill_rel_course ADD CONSTRAINT FK_E7CEC7FA613FECDF FOREIGN KEY (session_id) REFERENCES session (id);
  786. */
  787. // 4. Set "allow_skill_rel_items" to true
  788. //$_configuration['allow_skill_rel_items'] = false;
  789. // Generate random login when importing users
  790. //$_configuration['generate_random_login'] = false;
  791. // Remove html tags when exporting glossary definitions in a CSV file
  792. //$_configuration['allow_remove_tags_in_glossary_export'] = false;
  793. // Show base course categories in portal children
  794. //$_configuration['allow_base_course_category'] = false;
  795. // Send two emails when creating a user. One with the username other with the password.
  796. //$_configuration['send_two_inscription_confirmation_mail'] = false;
  797. // LP view custom settings
  798. /*$_configuration['lp_view_settings'] = [
  799. 'display' => [
  800. 'show_reporting_icon' => true,
  801. 'hide_lp_arrow_navigation' => false,
  802. 'show_toolbar_by_default' => false,
  803. ],
  804. ];*/
  805. // Force to hide the invisible course documents in sessions
  806. //$_configuration['hide_invisible_course_documents_in_sessions'] = false;
  807. // Show more expected choice and status in exercise results BT#13950
  808. //$_configuration['show_exercise_expected_choice'] = false;
  809. // Hide exercise question label (ribbon) BT#13950
  810. //$_configuration['exercise_hide_label'] = false;
  811. // Send welcome message by email and to the chamilo inbox BT#14034
  812. //$_configuration['send_inscription_msg_to_inbox'] = false;
  813. // Allow administrators to see personal messages between a teacher and a student.
  814. // Please make sure you include a note in your terms and conditions as this might
  815. // affect privacy protection.
  816. //$_configuration['allow_user_message_tracking'] = false;
  817. // Add a portfolio tool (duplicating the Notebook tool). Requires DB changes:
  818. /*
  819. CREATE TABLE portfolio (id INT AUTO_INCREMENT NOT NULL, user_id INT NOT NULL, c_id INT DEFAULT NULL, session_id INT DEFAULT NULL, category_id INT DEFAULT NULL, title VARCHAR(255) NOT NULL, content LONGTEXT NOT NULL, creation_date DATETIME NOT NULL, update_date DATETIME NOT NULL, is_visible TINYINT(1) DEFAULT '1' NOT NULL, INDEX user (user_id), INDEX course (c_id), INDEX session (session_id), INDEX category (category_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB;
  820. CREATE TABLE portfolio_category (id INT AUTO_INCREMENT NOT NULL, user_id INT NOT NULL, title VARCHAR(255) NOT NULL, description LONGTEXT DEFAULT NULL, is_visible TINYINT(1) DEFAULT '1' NOT NULL, INDEX user (user_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB;
  821. ALTER TABLE portfolio ADD CONSTRAINT FK_A9ED1062A76ED395 FOREIGN KEY (user_id) REFERENCES user (id) ON DELETE CASCADE;
  822. ALTER TABLE portfolio ADD CONSTRAINT FK_A9ED106291D79BD3 FOREIGN KEY (c_id) REFERENCES course (id) ON DELETE CASCADE;
  823. ALTER TABLE portfolio ADD CONSTRAINT FK_A9ED1062613FECDF FOREIGN KEY (session_id) REFERENCES session (id) ON DELETE CASCADE;
  824. ALTER TABLE portfolio ADD CONSTRAINT FK_A9ED106212469DE2 FOREIGN KEY (category_id) REFERENCES portfolio_category (id) ON DELETE SET NULL;
  825. ALTER TABLE portfolio_category ADD CONSTRAINT FK_7AC64359A76ED395 FOREIGN KEY (user_id) REFERENCES user (id);
  826. INSERT INTO settings_current(variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES('course_create_active_tools','portfolio','checkbox','Tools','true','CourseCreateActiveToolsTitle','CourseCreateActiveToolsComment',NULL,'Portfolio', 0);
  827. */
  828. // In 1.11.8, before enabling this feature, you also need to:
  829. // - edit src/Chamilo/CoreBundle/Entity/Portfolio.php and PortfolioCategory.php
  830. // and follow the instructions about the @ORM\Entity() line
  831. // - launch composer install to rebuild the autoload.php
  832. //$_configuration['allow_portfolio_tool'] = false;
  833. // Enable best score column in gradebook. Previously called disable_gradebook_stats
  834. //$_configuration['gradebook_enable_best_score'] = false;
  835. // Allow teachers to access student skills BT#14161 (skills setting must be enabled in the platform)
  836. //$_configuration['allow_teacher_access_student_skills'] = false;
  837. // Allow sharing options for the documents inside a group
  838. //ALTER TABLE c_group_info ADD document_access INT DEFAULT 0 NOT NULL;
  839. //$_configuration['group_document_access'] = false;
  840. // Allow sharing options for the documents inside a group category
  841. //ALTER TABLE c_group_category ADD document_access INT DEFAULT 0 NOT NULL;
  842. //$_configuration['group_category_document_access'] = false;
  843. // Allow LP export to chamilo format (CourseBackup)
  844. //$_configuration['allow_lp_chamilo_export'] = false;
  845. // Allow exercise auto launch
  846. //$_configuration['allow_exercise_auto_launch'] = false;
  847. // ALTER TABLE c_quiz ADD autolaunch TINYINT(1) DEFAULT 0;
  848. // Enable speed controller in video player
  849. // $_configuration['video_features'] = ['features' => ['speed']];
  850. // Disable token verification when sending a message
  851. // $_configuration['disable_token_in_new_message'] = false;
  852. // My courses session order. Possible field values: "start_date" or "end_date". Order values: "asc" or "desc"
  853. // $_configuration['my_courses_session_order'] = ['field' => 'end_date', 'order' => 'desc'];
  854. // Allow set courses in session in read-only mode. Require DB changes:
  855. /*
  856. INSERT INTO extra_field (extra_field_type, field_type, variable, display_text, visible_to_self, changeable, filter, created_at)
  857. VALUES (2, 13, 'session_courses_read_only_mode', 'Lock Course In Session', 1, 1, 1, NOW());
  858. */
  859. // $_configuration['session_courses_read_only_mode'] = false;
  860. // Allow SCORM packages when importing a course
  861. // $_configuration['allow_import_scorm_package_in_course_builder'] = false;
  862. // Hide announcement "sent to" label
  863. // $_configuration['hide_announcement_sent_to_users_info'] = false;
  864. // Hide gradebook graph
  865. // $_configuration['gradebook_hide_graph'] = false;
  866. // Hide gradebook "download report in PDF" button
  867. // $_configuration['gradebook_hide_pdf_report_button'] = false;
  868. // Show pending survey link in user menu
  869. // $_configuration['show_pending_survey_in_menu'] = false;
  870. // GDPR: European's General Data Protection Rules activation option
  871. // Set to true to disable the new personal data page inside the social network menu
  872. // $_configuration['disable_gdpr'] = true;
  873. // GDPR requires users to be informed of the Data Protection Officer name and contact point
  874. // These can only be defined here for now, but will be moved to web settings in the future.
  875. // Name of the person or organization that is responsible for the treatment of personal info
  876. //$_configuration['data_protection_officer_name'] = '';
  877. // A description of the role of the DP Officer in this context
  878. //$_configuration['data_protection_officer_role'] = '';
  879. // An e-mail address where to contact the data protection officer for queries
  880. //$_configuration['data_protection_officer_email'] = '';
  881. // Show multiple conditions to user during sign up process
  882. // Example with a GDPR condition
  883. /*$_configuration['show_conditions_to_user'] = [
  884. 'conditions' => [
  885. [
  886. 'variable' => 'gdpr', // internal extra field name
  887. 'display_text' => 'GDPRTitle', // checkbox title will be translated with get_lang('GDPRTitle')
  888. 'text_area' => 'GDPRTextArea', // this will be translated using get_lang('GDPRTextArea')
  889. ],
  890. [
  891. 'variable' => 'my_terms',
  892. 'display_text' => 'My test conditions',
  893. 'text_area' => 'This is a long text area, with lot of terms and conditions ... ',
  894. ],
  895. ],
  896. ];*/
  897. // Hide LP item prerequisite label in the LP view
  898. //$_configuration['hide_accessibility_label_on_lp_item'] = true;
  899. // Round score in exercise category export
  900. //$_configuration['exercise_category_round_score_in_export'] = false;
  901. // Redirect index to url for logged in users
  902. // In this example the index.php will be redirected to user_portal.php for logged in users
  903. //$_configuration['redirect_index_to_url_for_logged_users'] = 'user_portal.php';
  904. // Teachers can CRUD classes
  905. // ALTER TABLE usergroup ADD author_id INT DEFAULT NULL;
  906. //$_configuration['allow_teachers_to_classes'] = false;
  907. // Validate user login via a webservice, Chamilo will send a "login" and "password" parameters
  908. // to the "myWebServiceFunctionToLogin" function, the result should be "1" if the user have access.
  909. /*$_configuration['webservice_validation'] = [
  910. 'options' => [
  911. 'wsdl' => 'https://example.com/soap?wsdl',
  912. 'check_login_function' => 'myWebServiceFunctionToLogin'
  913. ]
  914. ];*/
  915. // Hide the username when showing the complete name for a user.
  916. // Example: using api_get_user_info()['complete_name_with_username'] or $user->getCompleteNameWithUsername()
  917. //$_configuration['hide_username_with_complete_name'] = false;
  918. // Hide the username in course chat
  919. //$_configuration['hide_username_in_course_chat'] = false;
  920. // Allow multiple attempts in gradebook evaluations
  921. // CREATE TABLE gradebook_result_attempt (id INT AUTO_INCREMENT NOT NULL, result_id INT NOT NULL, score DOUBLE, comment LONGTEXT DEFAULT NULL, created_at DATETIME, updated_at DATETIME, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB;
  922. //$_configuration['gradebook_multiple_evaluation_attempts'] = false;
  923. // Hide country flags in the language switcher
  924. // $_configuration['hide_flag_language_switcher'] = false;
  925. // Hide complete name in who is online page
  926. // $_configuration['hide_complete_name_in_whoisonline'] = false;
  927. // Block student publication edition BT#14985
  928. // $_configuration['block_student_publication_edition'] = false;
  929. // Block student publication add documents BT#14986
  930. //$_configuration['block_student_publication_add_documents'] = false;
  931. // Block student publication score edition BT#14987
  932. // $_configuration['block_student_publication_score_edition'] = false;
  933. // Enable system to manage e-mail templates in users registration forms
  934. /*CREATE TABLE mail_template(
  935. id int not null primary key auto_increment,
  936. name varchar(255) not null, -- a friendly name for the template, to remember what it is like
  937. template text, -- the template content (in Twig format)
  938. type varchar(255) not null, -- the type of the mail (we can use current template names to fill that)
  939. created_at DATETIME NOT NULL,
  940. updated_at DATETIME NOT NULL,
  941. author_id INT NOT NULL,
  942. url_id INT NOT NULL,
  943. default_template TINYINT not null,
  944. system int not null default 0 -- whether it can be deleted or not (system = 1 means it's initially from Chamilo, any other template can be created/deleted/edited, but the ones with system=1 cannot)
  945. );*/
  946. // $_configuration['mail_template_system'] = false;
  947. // Students can only upload one publication
  948. // $_configuration['allow_only_one_student_publication_per_user'] = false;
  949. // Hide percentage in best/average gradebook results
  950. //$_configuration['hide_gradebook_percentage_user_result'] = true;
  951. // Use exercise platform score settings in the gradebook graph
  952. // $_configuration['gradebook_use_exercise_score_settings_in_categories'] = true;
  953. // Activate the view with ViewerJS for PDF files within the lessons for IPad and IPhone
  954. // $_configuration['allow_pdf_viewerjs_in_lp'] = false;
  955. // Allow DRH user to access all visible session course announcements
  956. // $_configuration['allow_drh_access_announcement'] = false;
  957. // Allow my personal files link in the homepage
  958. // $_configuration['allow_my_files_link_in_homepage'] = false;
  959. // This option sets default parameters in the main/session/session_import.php
  960. /*$_configuration['session_import_settings'] = [
  961. 'options' => [
  962. 'session_exists_default_option' => '1',
  963. 'send_mail_default_option' => '1',
  964. ]
  965. ];*/
  966. /*
  967. * Fields visibility in the profile user page
  968. $_configuration['profile_fields_visibility'] = [
  969. 'options' => [
  970. 'vcard' => false,
  971. 'firstname' => false,
  972. 'lastname' => false,
  973. 'photo' => true,
  974. 'email' => true,
  975. 'chat' => true,
  976. 'terms_ville' => false, // extra field value
  977. ]
  978. ];*/
  979. // This option sets default parameters in the main/admin/user_import.php
  980. /*$_configuration['user_import_settings'] = [
  981. 'options' => [
  982. 'send_mail_default_option' => '1',
  983. ]
  984. ];*/
  985. // Disable all new exercise attempts in all the platform
  986. // $_configuration['exercises_disable_new_attempts'] = false;
  987. // Improve speed when rendering gradebook student reports using Doctrine APCU cache
  988. // $_configuration['gradebook_use_apcu_cache'] = true;
  989. // Add a minimum time limit to be in the learning path
  990. // in order to get the last item completed
  991. // Requires a DB change:
  992. // ALTER TABLE c_lp ADD accumulate_work_time INT NOT NULL;
  993. // CREATE TABLE track_e_access_complete (id int(11) NOT NULL AUTO_INCREMENT, user_id int(11) NOT NULL, date_reg datetime NOT NULL, tool varchar(255) NOT NULL, tool_id int(11) NOT NULL, tool_id_detail int(11) NOT NULL, action varchar(255) NOT NULL, action_details varchar(255) NOT NULL, current_id int(11) NOT NULL, ip_user varchar(255) NOT NULL, user_agent varchar(255) NOT NULL, session_id int(11) NOT NULL, c_id int(11) NOT NULL, ch_sid varchar(255) NOT NULL, login_as int(11) NOT NULL, info longtext NOT NULL, url text NOT NULL, PRIMARY KEY (id) ) ENGINE=InnoDB AUTO_INCREMENT=13989 DEFAULT CHARSET=utf8;
  994. // CREATE INDEX user_course_session ON track_e_access_complete (user_id, c_id, session_id);
  995. // Only applied for courses with extra field "new_tracking_system" to "1"
  996. //$_configuration['lp_minimum_time'] = false;
  997. // Track LP attempts using the new tracking system.
  998. // Requires to add an LP extra field called "track_lp_item" (checkbox) in order to use this feature.
  999. //$_configuration['use_new_tracking_in_lp_item'] = false;
  1000. // Add collapsable option for user course categories
  1001. // ALTER TABLE user_course_category ADD collapsed TINYINT(1) DEFAULT NULL;
  1002. // $_configuration['allow_user_course_category_collapsable'] = false;
  1003. // Add collapsable option when showing the course list inside a session in userportal.php
  1004. // ALTER TABLE session_rel_user ADD collapsed TINYINT(1) DEFAULT NULL;
  1005. // Create a new session extra field called "collapsed" (checkbox yes/no - option)
  1006. // $_configuration['allow_user_session_collapsable'] = false;
  1007. // Allow to session admins login as teachers
  1008. //$_configuration['allow_session_admin_login_as_teacher'] = false;
  1009. // Allow gradebook stats
  1010. // Requires to edit the GradebookLink.php And GradebookEvaluation.php files adding the "@" in the ORM phpdoc block
  1011. /* ALTER TABLE gradebook_link ADD score_weight DOUBLE PRECISION DEFAULT NULL, ADD average_score DOUBLE PRECISION DEFAULT NULL, ADD best_score DOUBLE PRECISION DEFAULT NULL, ADD user_score_list LONGTEXT DEFAULT NULL COMMENT '(DC2Type:array)' ;
  1012. ALTER TABLE gradebook_evaluation ADD score_weight DOUBLE PRECISION DEFAULT NULL, ADD average_score DOUBLE PRECISION DEFAULT NULL, ADD best_score DOUBLE PRECISION DEFAULT NULL, ADD user_score_list LONGTEXT DEFAULT NULL COMMENT '(DC2Type:array)' ;
  1013. */
  1014. //$_configuration['allow_gradebook_stats'] = false;
  1015. // Hide social media links
  1016. //$_configuration['hide_social_media_links'] = false;
  1017. // Show chamilo unique question id in exercises
  1018. // $_configuration['show_question_id'] = false;
  1019. // Show pagination if question list is bigger than "x" value, if 0 pagination will not appear.
  1020. // Option only when building an exercise as a teacher
  1021. // $_configuration['show_question_pagination'] = 100;
  1022. // Number of questions to show in every page
  1023. // Option only when building an exercise as a teacher
  1024. // $_configuration['question_pagination_length'] = 20;
  1025. // Teachers cannot delete an exercise/questions, change exercise visibility, download to qti, clean results
  1026. // $_configuration['limit_exercise_teacher_access'] = false;
  1027. // Changes the row list when using jqgrid/sortable tables
  1028. //$_configuration['table_row_list'] = ['options' => [50, 100, 200, 500]];
  1029. // Default selected row in jqgrid/sortable tables
  1030. //$_configuration['table_default_row'] = 50;
  1031. // Disable Chamilo.org announcements at the top of the admin page
  1032. //$_configuration['admin_chamilo_announcements_disable'] = false;
  1033. // Disable course report graphs
  1034. //$_configuration['hide_course_report_graph'] = false;
  1035. // Visually "fold" forum categories by default
  1036. // $_configuration['forum_fold_categories'] = false;
  1037. // Set extra fields as required in the inscription.php page
  1038. /*$_configuration['required_extra_fields_in_inscription'] = [
  1039. 'options' => [
  1040. 'terms_ville',
  1041. 'terms_paysresidence',
  1042. ],
  1043. ];*/
  1044. /* Set extra fields as required in the profile.php page
  1045. $_configuration['required_extra_fields_in_profile'] = [
  1046. 'options' => [
  1047. 'terms_villedustage'
  1048. ],
  1049. ];
  1050. */
  1051. // Community manager users
  1052. //$_configuration['community_managers_user_list'] = ['users' => [1]];
  1053. // Hide global chat video
  1054. //$_configuration['hide_chat_video'] = false;
  1055. // global forum in social network BT#15309
  1056. //$_configuration['global_forums_course_id'] = 0;
  1057. // Hide forum post revision checkbox
  1058. //$_configuration['hide_forum_post_revision_language'] = false;
  1059. // Allow forum post revisions
  1060. // Requires new forum_category and forum_post "language" extra fields (multiple select)
  1061. //$_configuration['allow_forum_post_revisions'] = false;
  1062. // Allow to show users in a map, users need to have a coordinates extra field BT#15176
  1063. //$_configuration['allow_social_map_fields'] = ['fields' => ['terms_villedustage', 'terms_ville']];
  1064. // Translate HTML based in the HTML "lang" attribute see BT#15166
  1065. //$_configuration['translate_html'] = false;
  1066. // Avoid add a reply-to header when a no-reply address is set.
  1067. //$_configuration['mail_no_reply_avoid_reply_to'] = false;
  1068. // Allows to user add feedback (likes or dislikes) to posts in social wall. Requires DB changes:
  1069. // CREATE TABLE message_feedback (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_DB0F8049537A1329 (message_id), INDEX IDX_DB0F8049A76ED395 (user_id), INDEX idx_message_feedback_uid_mid (message_id, user_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB;
  1070. // ALTER TABLE message_feedback ADD CONSTRAINT FK_DB0F8049537A1329 FOREIGN KEY (message_id) REFERENCES message (id) ON DELETE CASCADE;
  1071. // ALTER TABLE message_feedback ADD CONSTRAINT FK_DB0F8049A76ED395 FOREIGN KEY (user_id) REFERENCES user (id) ON DELETE CASCADE;
  1072. // In 1.11.8, before enabling this feature, you also need to:
  1073. // - edit src/Chamilo/CoreBundle/Entity/MessageFeedback.php
  1074. // and follow the instructions about the @ORM\Entity() line
  1075. // - edit src/Chamilo/CoreBundle/Entity/Message.php
  1076. // and follow the instructions about the @ORM\OneToMany line for the $likes property
  1077. // - launch "composer install" to rebuild the autoload.php
  1078. //$_configuration['social_enable_messages_feedback'] = false;
  1079. // Disable dislike button in the social network.
  1080. //$_configuration['disable_dislike_option'] = false;
  1081. // Block student's access to the course documents when using the ckeditor "Browse server" button
  1082. //$_configuration['block_editor_file_manager_for_students'] = false;
  1083. // Show a language flag next to the user picture in the social network
  1084. //$_configuration['social_show_language_flag_in_profile'] = false;
  1085. // Add subject and body in the mailto: footer
  1086. //$_configuration['add_user_course_information_in_mailto'] = false;
  1087. // Add gradebook score style configuration in the flat view
  1088. // See api.lib.php in order to find the options: examples SCORE_DIV = 1, SCORE_PERCENT = 2, etc
  1089. //$_configuration['gradebook_report_score_style'] = 1; // Means the score will be (X / Y) "SCORE_DIV"
  1090. // Blocks "my files" access to anon users
  1091. //$_configuration['block_my_files_access'] = false;
  1092. // Allow .htaccess files in SCORM packages
  1093. //$_configuration['allow_htaccess_import_from_scorm'] = false;
  1094. // Allow general certificate
  1095. //$_configuration['allow_general_certificate'] = false;
  1096. // Allow exercise categories
  1097. // CREATE TABLE c_exercise_category (id BIGINT AUTO_INCREMENT NOT NULL, c_id INT NOT NULL, name VARCHAR(255) NOT NULL, description LONGTEXT DEFAULT NULL, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, position INT NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB;
  1098. // ALTER TABLE c_quiz ADD exercise_category_id INT DEFAULT NULL;
  1099. // enable @ORM in CExerciseCategory adn CQuiz::exerciseCategoryId
  1100. //$_configuration['allow_exercise_categories'] = false;
  1101. // Send new user inscription notification only to general admins (table settings_current = emailAdministrator)
  1102. //$_configuration['send_inscription_notification_to_general_admin_only'] = false;
  1103. // Allow extra settings for the quiz results page
  1104. // ALTER TABLE c_quiz ADD page_result_configuration LONGTEXT DEFAULT NULL COMMENT '(DC2Type:array)';
  1105. //$_configuration['allow_quiz_results_page_config'] = false;
  1106. // Allow multiple options for the exercise "save answer" option
  1107. // ALTER TABLE c_quiz MODIFY COLUMN save_correct_answers INT NULL DEFAULT NULL;
  1108. //$_configuration['allow_quiz_save_correct_options'] = false;
  1109. // Show languages flags by country in the language switcher.
  1110. //$_configuration['language_flags_by_country'] = false;
  1111. // Allow compilatio plagiarism prevention tool
  1112. /*
  1113. CREATE TABLE c_plagiarism_compilatio_docs (
  1114. id INT AUTO_INCREMENT NOT NULL,
  1115. c_id int(11) NOT NULL,
  1116. document_id int(11) NOT NULL,
  1117. compilatio_id varchar(32) CHARACTER SET utf8 NOT NULL,
  1118. PRIMARY KEY (id)
  1119. ) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB;
  1120. // If table exists already
  1121. ALTER TABLE c_plagiarism_compilatio_docs drop primary key;
  1122. ALTER TABLE c_plagiarism_compilatio_docs ADD COLUMN id INT AUTO_INCREMENT NOT NULL PRIMARY KEY;
  1123. ALTER TABLE c_plagiarism_compilatio_docs CHANGE COLUMN id_doc document_id INT NOT NULL;
  1124. requires extension "php-soap" sudo apt-get install php-soap
  1125. */
  1126. //$_configuration['allow_compilatio_tool'] = false;
  1127. //$_configuration['compilatio_tool'] = [
  1128. // 'settings' => [
  1129. // 'key' => '',
  1130. // 'soap_url' => '',
  1131. // 'proxy_host' => '',
  1132. // 'proxy_port' => '',
  1133. // 'max_filesize' => '',
  1134. // 'transport_mode' => '',
  1135. // 'wget_uri' => '',
  1136. // 'wget_login' => '',
  1137. // 'wget_password' => '',
  1138. // ]
  1139. //];
  1140. // Allow user to enter a LP item if it was validated in another session.
  1141. // $_configuration['validate_lp_prerequisite_from_other_session'] = false;
  1142. // 1 = SCORE_AVERAGE (5 / 10)
  1143. // 2 = SCORE_PERCENT (50%)
  1144. // 3 = SCORE_DIV_PERCENT (5 / 10 (50%))
  1145. // $_configuration['exercise_score_format'] = 0;
  1146. // Hide course sidebar
  1147. //$_configuration['hide_course_sidebar'] = true;
  1148. // Allow online users by user profile
  1149. // 1 = COURSEMANAGER (teacher)
  1150. // 5 = STUDENT
  1151. // 11 = PLATFORM_ADMIN
  1152. // Example: The online users will be available only for teachers and students.
  1153. //$_configuration['allow_online_users_by_status'] = ['status' => [1, 5]];
  1154. // Allow add one column by each user extra field indicated to the Gradebook Flatview for each user.
  1155. /*$_configuration['gradebook_flatview_extrafields_columns'] = [
  1156. 'variables' => [],
  1157. ];*/
  1158. // KEEP THIS AT THE END
  1159. // -------- Custom DB changes
  1160. // Add user activation by confirmation email
  1161. // This option prevents the new user to login in the platform if your account is not confirmed via email
  1162. // You need add a new option called "confirmation" to the registration settings
  1163. //INSERT INTO settings_options (variable, value, display_text) VALUES ('allow_registration', 'confirmation', 'MailConfirmation');
  1164. // ------ (End) Custom DB changes