Tribe__Events__Filterbar__View::plugin_path( string $path )

Get the absolute system path to the plugin directory, or a file therein


Parameters

$path

(string) (Required)


Top ↑

Return

(string)


Top ↑

Source

File: src/Tribe/View.php

		public static function plugin_path( $path ) {
			$base = dirname( self::$plugin_file );
			if ( $path ) {
				return trailingslashit( $base ) . $path;
			} else {
				return untrailingslashit( $base );
			}
		}