Utilities::automator_get_view( $file_name )
Returns the full server path for the passed view file
Parameters Parameters
- $file_name
-
(Required)
Return Return
(string)
Source Source
File: src/core/class-utilities.php
public static function automator_get_view( $file_name ) { $views_directory = UA_ABSPATH . 'src' . DIRECTORY_SEPARATOR . 'core' . DIRECTORY_SEPARATOR . 'views' . DIRECTORY_SEPARATOR; /** * Filters the directory path to the view file * * This can be used for view overrides by modifying the path to go to a directory in the theme or another plugin. * * @param string $views_directory Path to the plugins view folder * @param string $file_name The file name of the view file * * @since 1.0.0 * */ $views_directory = apply_filters( 'automator_view_path', $views_directory, $file_name ); return $views_directory . $file_name; }
Expand full source code Collapse full source code View on Github