// SYSTEM PANEL //
[ROOT]
/
home
/
comaria
/
perform-evolution
/
wp-content
/
plugins
/
acf-extended
/
includes
[ PARENT ]
EDIT :: acfe-file-functions.php
<?php if(!defined('ABSPATH')){ exit; } /** * acfe_get_abs_path_to_url * * Converts "/url" to "https://www.domain.com/url" * * @param string $path * * @return string */ function acfe_get_abs_path_to_url($path = ''){ $abspath = untrailingslashit(ABSPATH); $url = str_replace($abspath, site_url(), $path); $url = wp_normalize_path($url); return esc_url_raw($url); } /** * acfe_locate_file_url * * Similar to locate_template(), but locate File URL instead * Check if file exists locally and return URL (supports parent/child theme) * * @param $filenames * * @return mixed|string */ function acfe_locate_file_url($filenames){ $located = ''; foreach((array) $filenames as $filename){ if(!$filename){ continue; } // Direct URL: https://www.domain.com/folder/file.js if(stripos($filename, 'http://') === 0 || stripos($filename, 'https://') === 0 || stripos($filename, '//') === 0){ $located = $filename; break; }else{ $_filename = ltrim($filename, '/\\'); $abspath = untrailingslashit(ABSPATH); // Child Theme if(file_exists(STYLESHEETPATH . '/' . $_filename)){ $located = get_stylesheet_directory_uri() . '/' . $_filename; break; } // Parent Theme elseif(file_exists(TEMPLATEPATH . '/' . $_filename)){ $located = get_template_directory_uri() . '/' . $_filename; break; } // Direct file path elseif(file_exists($filename)){ $located = acfe_get_abs_path_to_url($filename); break; } // ABSPATH file path elseif(file_exists($abspath . '/' . $_filename)){ $located = acfe_get_abs_path_to_url($abspath . '/' . $_filename); break; } // WP Content Dir elseif(file_exists(WP_CONTENT_DIR . '/' . $_filename)){ $located = WP_CONTENT_URL . '/' . $_filename; break; } } } return $located; } /** * acfe_locate_file_path * * Similar to locate_template(), but locate File Path instead * Based on wp-includes\template.php:653 * * @param $filenames * * @return mixed|string */ function acfe_locate_file_path($filenames){ $located = ''; foreach((array) $filenames as $filename){ if(!$filename){ continue; } $_filename = ltrim($filename, '/\\'); $abspath = untrailingslashit(ABSPATH); // Stylesheet file path if(file_exists(STYLESHEETPATH . '/' . $_filename)){ $located = STYLESHEETPATH . '/' . $_filename; break; } // Template file path elseif(file_exists(TEMPLATEPATH . '/' . $_filename)){ $located = TEMPLATEPATH . '/' . $_filename; break; } // Direct file path elseif(file_exists($filename)){ $located = $filename; break; } // ABSPATH file path elseif(file_exists($abspath . '/' . $_filename)){ $located = $abspath . '/' . $_filename; break; } // WP Content Dir elseif(file_exists(WP_CONTENT_DIR . '/' . $_filename)){ $located = WP_CONTENT_DIR . '/' . $_filename; break; } } return $located; } /** * acfe_get_human_readable_location * * Returns "Located in theme: /acf-json/group_abcdef123456.json" * Returns "Located in plugin: /my-plugin/group_abcdef123456.json" * Returns "Located in: /group_abcdef123456.json" * * @param $path * @param $prefix * @param $new_line * * @return string */ function acfe_get_human_readable_location($path, $prefix = true, $new_line = true){ // vars $located = ''; $path = wp_normalize_path($path); $file_exists = file_exists($path); // paths to check $stylesheet_path = wp_normalize_path(get_stylesheet_directory()); $template_path = wp_normalize_path(get_template_directory()); $wp_plugin_dir = wp_normalize_path(WP_PLUGIN_DIR); $abspath = wp_normalize_path(ABSPATH); // prefix labels $prefix_label = array( __('Located', 'acfe'), __('Not found', 'acfe'), ); if(is_array($prefix)){ $prefix_label = $prefix; } if(strpos($path, $stylesheet_path) !== false){ $rel_path = str_replace($stylesheet_path, '', $path); if($prefix){ $located .= ($file_exists ? $prefix_label[0] : $prefix_label[1]) . ' '; } $located .= __('in theme:', 'acfe') . ($new_line ? "<br/>" : ' '); $located .= $rel_path; }elseif(strpos($path, $template_path) !== false){ $rel_path = str_replace($template_path, '', $path); if($prefix){ $located .= ($file_exists ? $prefix_label[0] : $prefix_label[1]) . ' '; } $located .= __('in theme:', 'acfe') . ($new_line ? "<br/>" : ' '); $located .= $rel_path; }elseif(strpos($path, $wp_plugin_dir) !== false){ $rel_path = str_replace($wp_plugin_dir, '', $path); if($prefix){ $located .= ($file_exists ? $prefix_label[0] : $prefix_label[1]) . ' '; } $located .= __('in plugin:', 'acfe') . ($new_line ? "<br/>" : ' '); $located .= $rel_path; }else{ $rel_file = str_replace($abspath, '', $path); if($prefix){ $located .= ($file_exists ? $prefix_label[0] : $prefix_label[1]) . ' '; } $located .= __('in:', 'acfe') . ($new_line ? "<br/>" : ' '); $located .= $rel_file; } return $located; } /** * acfe_get_file_extension * * @param $file * * @return array|string */ function acfe_get_file_extension($file){ // extract the path component $path = parse_url($file, PHP_URL_PATH); // get the extension of the file return pathinfo($path, PATHINFO_EXTENSION); }
SAVE
CANCEL