WC_Helper::get_view_filename( string $view )

Get an absolute path to the requested helper view.


Description Description


Parameters Parameters

$view

(Required) The requested view file.


Top ↑

Return Return

(string) The absolute path to the view file.


Top ↑

Source Source

File: includes/admin/helper/class-wc-helper.php

	public static function get_view_filename( $view ) {
		return dirname( __FILE__ ) . "/views/$view";
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.