WC_Helper::get_view_filename
Get an absolute path to the requested helper view.
Method of the class: WC_Helper{}
No Hooks.
Returns
String. The absolute path to the view file.
Usage
$result = WC_Helper::get_view_filename( $view );
- $view(string) (required)
- The requested view file.
WC_Helper::get_view_filename() WC Helper::get view filename code WC 10.3.6
public static function get_view_filename( $view ) {
return __DIR__ . "/views/$view";
}