/* * * PlaceholderAPI * Copyright (C) 2019 Ryan McCarthy * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * */ package me.clip.placeholderapi.configuration; import me.clip.placeholderapi.PlaceholderAPIPlugin; import org.jetbrains.annotations.NotNull; public final class PlaceholderAPIConfig { @NotNull private final PlaceholderAPIPlugin plugin; public PlaceholderAPIConfig(@NotNull final PlaceholderAPIPlugin plugin) { this.plugin = plugin; } public boolean checkUpdates() { return plugin.getConfig().getBoolean("check_updates"); } public boolean cloudAllowUnverifiedExpansions() { return plugin.getConfig().getBoolean("cloud_allow_unverified_expansions"); } public boolean isCloudEnabled() { return plugin.getConfig().getBoolean("cloud_enabled"); } public void setCloudEnabled(boolean state) { plugin.getConfig().set("cloud_enabled", state); plugin.saveConfig(); } public boolean isDebugMode() { return plugin.getConfig().getBoolean("debug", false); } @NotNull public String dateFormat() { //noinspection ConstantConditions (bad spigot annotation) return plugin.getConfig().getString("date_format", "MM/dd/yy HH:mm:ss"); } @NotNull public String booleanTrue() { //noinspection ConstantConditions (bad spigot annotation) return plugin.getConfig().getString("boolean.true", "true"); } @NotNull public String booleanFalse() { //noinspection ConstantConditions (bad spigot annotation) return plugin.getConfig().getString("boolean.false", "false"); } }