Tribe__Events__Filterbar__View::plugin_path( string $path )
Get the absolute system path to the plugin directory, or a file therein
Contents
Parameters
- $path
-
(string) (Required)
Return
(string)
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 );
}
}