?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/plugins/brizy/parser/



?? Go up: /home/webdevt/www/wdp/wp-content/plugins/brizy

?? Viewing: parser.php

<?php

class Brizy_Parser_Parser {

	private $html;

	public function __construct( $html ) {
		$this->html = $html;
	}

	public function getParser() {

		if ( extension_loaded( 'dom' ) ) {
			return new Brizy_Parser_DomDocument( $this->html );
		}

		return new Brizy_Parser_DomPquery( $this->html );
	}
}


??

??