????

Your IP : 216.73.216.188


Current Path : /home/degesdxb/public_html/wp-content/plugins/mphb-reviews/includes/settings/
Upload File :
Current File : //home/degesdxb/public_html/wp-content/plugins/mphb-reviews/includes/settings/main-settings.php

<?php

namespace MPHBR\Settings;

class MainSettings {

	const MIN_RATING = 1;
	const MAX_RATING = 5;

	function getMinRating(){
		return self::MIN_RATING;
	}

	function getMaxRating(){
		return self::MAX_RATING;
	}

    public function getReviewLimit()
    {
        return absint(get_option('mphbr_text_limit', 180));
    }

}