CampSystem::getSetting PHP Method

getSetting() protected method

Reads a configuration setting.
protected getSetting ( string $p_varName ) : mixed
$p_varName string
return mixed The value of the configuration variable
    protected function getSetting($p_varName)
    {
        $config = CampSite::GetConfigInstance();
        return $config->getSetting($p_varName);
    }