????

Your IP : 18.116.67.230


Current Path : /home/webcloude/public_html/wp-content/plugins/templately/includes/Utils/
Upload File :
Current File : //home/webcloude/public_html/wp-content/plugins/templately/includes/Utils/Views.php

<?php

namespace Templately\Utils;

class Views extends Base {

	protected $dir = '';

	public function __construct( $path ) {
		$this->dir = trailingslashit($path);
	}

	public function get( string $template, array $args = [] ) {
		extract( $args );

		include $this->get_path( $template );
	}

	public function get_path( $template ): string {
		return $this->dir . $template . '.php';
	}

	public function get_header() {
		$this->get( 'templates/header' );
	}

	public function get_footer() {
		$this->get( 'templates/footer' );
	}
}