1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/icecoder_ynh.git synced 2024-09-03 19:26:10 +02:00
icecoder_ynh/conf/config.php
2021-03-29 19:20:02 +02:00

15 lines
420 B
PHP

<?php
// Load ICEcoders Settings class from wherever you are and set as $icSettings
require "../conf/icecoder_settings.php";
$icSettings = new \ICEcoder\Settings();
// Load the global settings
$ICEcoderSettings = $icSettings->getConfigGlobalSettings();
print_r(getConfigUsersTemplate());
// Update the loginRequired setting to false
//$icSettings->updateConfigGlobalSettings(
// ["loginRequired" => false]
//);
?>