File: /home/u547966/brikov.ru/www/wp-content/plugins/advanced-custom-fields-pro/pro/api/api-pro.php
<?php
/*
* acf_pro_get_view
*
* This function will load in a file from the 'admin/views' folder and allow variables to be passed through
*
* @type function
* @date 28/09/13
* @since 5.0.0
*
* @param $view_name (string)
* @param $args (array)
* @return n/a
*/
function acf_pro_get_view( $view_name = '', $args = array() ) {
// vars
$path = acf_get_path("pro/admin/views/{$view_name}.php");
if( file_exists($path) ) {
include( $path );
}
}
?>