Your IP : 18.222.112.116


Current Path : /var/www/html/wp-content/themes/church-event/vamtam/admin/classes/
Upload File :
Current File : /var/www/html/wp-content/themes/church-event/vamtam/admin/classes/fonts-helper.php

<?php

/**
 * Fonts Helper
 *
 * @package wpv
 */
/**
 * class WpvFontsHelper
 */
class WpvFontsHelper extends WpvAjax {
	/**
	 * Hook ajax actions
	 */
	public function __construct() {
		$this->actions = array(
			'font-preview' => 'font_preview',
		);

		parent::__construct();
	}

	/**
	 * gets the stylesheet for the font preview
	 */
	public function font_preview() {
		global $available_fonts;

		$url = wpv_get_font_url($_POST['face'], $_POST['weight']);

		if(!empty($url)) {
			echo $url;
		}

		exit;
	}
}