File "Tribe__Events__Asset__Factory.php"

Full Path: /home/londdqdw/public_html/06/wp-content/plugins/the-events-calendar/src/deprecated/Tribe__Events__Asset__Factory.php
File size: 488 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
_deprecated_file( __FILE__, '4.6.21', 'Deprecated class in favor of using `tribe_asset` registration' );

class Tribe__Events__Asset__Factory extends Tribe__Asset__Factory {
	/**
	 * @return string
	 */
	protected function get_asset_class_name_prefix() {
		return 'Tribe__Events__Asset__';
	}

	/**
	 * @return Tribe__Events__Asset__Factory
	 */
	public static function instance() {
		static $instance;

		if ( ! $instance ) {
			$instance = new self;
		}

		return $instance;
	}
}