?AlkantarClanX12

Your IP : 216.73.217.134


Current Path : /home/r/a/n/rankinh/villavanille/wp-content/plugins/reviews-feed/class/Common/
Upload File :
Current File : /home/r/a/n/rankinh/villavanille/wp-content/plugins/reviews-feed/class/Common/TemplateRenderer.php

<?php

namespace SmashBalloon\Reviews\Common;

class TemplateRenderer {

    /**
     * Base file path of the templates
     *
     * @since 1.0
     */
    public const BASE_PATH = SBR_PLUGIN_DIR . 'templates/';

    /**
     * Render template
     *
     * @param string $file
     * @param array $data
     *
     * @since 1.0
     */
    public static function render( $file, $data = array() ) {
        $file = str_replace( '.', '/', $file );
        $file = self::BASE_PATH . $file . '.php';

        if ( is_file( $file ) ) {
            if ( ! empty( $data ) ) {
                extract( $data );
            }
            include_once $file;
        }
    }
}