t("%s's Library", \OCP\User::getDisplayName()); if (!is_null($rootPath)){ if (\OC\Files\Filesystem::file_exists($rootPath) === false ){ \OCP\JSON::error( array( 'data' => array('message'=> $l->t('Directory does not exist!')) ) ); } else { Config::set('root_path', $rootPath); \OCP\JSON::success( array( 'data' => array('message'=> $l->t('Settings updated successfully.')) ) ); } Config::set('enable', $opdsEnable); Config::set('file_types', $fileTypes); Config::set('feed_title', $feedTitle); Config::set('id', Util::genUuid()); exit(); } exit();