$settings); } private static function getDefaultSettings() { $rootPath = __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR; return [ 'determineRouteBeforeAppMiddleware' => true, 'displayErrorDetails' => false, 'title' => 'TYPEMILL', 'author' => 'Unknown', 'copyright' => 'Copyright', 'language' => 'en', 'startpage' => true, 'rootPath' => $rootPath, 'theme' => ($theme = 'typemill'), 'themeFolder' => ($themeFolder = 'themes'), 'themeBasePath' => $rootPath, 'themePath' => $rootPath . $themeFolder . DIRECTORY_SEPARATOR . $theme, 'settingsPath' => $rootPath . 'settings', 'userPath' => $rootPath . 'settings' . DIRECTORY_SEPARATOR . 'users', 'authorPath' => __DIR__ . DIRECTORY_SEPARATOR . 'author' . DIRECTORY_SEPARATOR, 'editor' => 'raw', 'contentFolder' => 'content', 'cache' => true, 'cachePath' => $rootPath . 'cache', 'version' => '1.2.14', 'setup' => true, 'welcome' => true, 'images' => ['live' => ['width' => 820], 'mlibrary' => ['width' => 50, 'height' => 50]], ]; } public static function getUserSettings() { $yaml = new Models\WriteYaml(); $userSettings = $yaml->getYaml('settings', 'settings.yaml'); return $userSettings; } public static function getObjectSettings($objectType, $objectName) { $yaml = new Models\WriteYaml(); $objectFolder = $objectType . DIRECTORY_SEPARATOR . $objectName; $objectFile = $objectName . '.yaml'; $objectSettings = $yaml->getYaml($objectFolder, $objectFile); return $objectSettings; } public static function createSettings($settings) { $yaml = new Models\WriteYaml(); /* write settings to yaml */ if($yaml->updateYaml('settings', 'settings.yaml', $settings)) { return true; } return false; } public static function updateSettings($settings) { $userSettings = self::getUserSettings(); if($userSettings) { $yaml = new Models\WriteYaml(); $settings = array_merge($userSettings, $settings); /* write settings to yaml */ $yaml->updateYaml('settings', 'settings.yaml', $settings); } } }