-
-
Notifications
You must be signed in to change notification settings - Fork 51
ConfigEditor
Keramat Jokar edited this page May 13, 2024
·
2 revisions
<?php
$fusionConfig = new ConfigEditor("application/modules/myModule/config/myConfig.php");
$fusionConfig->set("key1", "value 1");
$fusionConfig->set("key2", "value 2");
$fusionConfig->save();
Initialize the config editor and load the file
String $file
Change a config value
String $key
String $value
Save the edited config file
Get the edited config content