1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181:
<?php
defined( 'ABSPATH' ) || exit;
if ( ! function_exists( 'vsp_url' ) ) {
function vsp_url( $extra = '', $is_url = true ) {
return ( $is_url ) ? VSP_URL . $extra : VSP_PATH . $extra;
}
}
if ( ! function_exists( 'vsp_load_file' ) ) {
function vsp_load_file( $search_type, $is_require = true, $once = false ) {
foreach ( vsp_get_file_paths( $search_type ) as $src ) {
if ( $is_require && $once ) {
require_once $src;
} elseif ( $is_require ) {
require $src;
} elseif ( $once ) {
include_once $src;
} else {
include $src;
}
}
}
}
if ( ! function_exists( 'vsp_get_file_paths' ) ) {
function vsp_get_file_paths( $path ) {
return glob( $path );
}
}
if ( ! function_exists( 'vsp_list_files' ) ) {
function vsp_list_files( $path, $levels = 100, $exclusions = array() ) {
if ( ! function_exists( 'list_files' ) ) {
require_once ABSPATH . 'wp-admin/includes/file.php';
}
return list_files( $path, $levels, $exclusions );
}
}
if ( ! function_exists( 'vsp_validate_required_plugin' ) ) {
function vsp_validate_required_plugin( $args = array() ) {
$msg = false;
$args = wp_parse_args( $args, array(
'plugin_name' => false,
'req_plugin' => false,
'req_plugin_name' => false,
'version' => false,
'compare' => 'gte',
) );
if ( ! wp_is_plugin_active( $args['req_plugin'] ) ) {
$msg = esc_html__( '%1$s Requires %2$s to be installed & activated.', 'vsp-framework' );
$msg = sprintf( $msg, '<strong>' . $args['plugin_name'] . '</strong>', '<strong><i>' . $args['req_plugin_name'] . '</i></strong>' );
}
if ( false !== $args['version'] && false === $msg ) {
switch ( $args['compare'] ) {
case 'gte':
case '>=':
if ( ! plugin_version_gte( $args['req_plugin'], $args['version'] ) ) {
$msg = esc_html__( '%1$s Requires %2$s Version %3$s Or Higher. Please Update Your %2$s To %3$s', 'vsp-framework' );
$msg = sprintf( $msg, '<strong>' . $args['plugin_name'] . '</strong>', '<strong>' . $args['req_plugin_name'] . '</strong>', '<code>' . $args['version'] . '</code>' );
}
break;
case 'gt':
case '>':
if ( ! plugin_version_gt( $args['req_plugin'], $args['version'] ) ) {
$msg = esc_html__( '%1$s Requires %2$s Version %3$s. Please Update Your %2$s To %3$s', 'vsp-framework' );
$msg = sprintf( $msg, '<strong>' . $args['plugin_name'] . '</strong>', '<strong>' . $args['req_plugin_name'] . '</strong>', '<code>' . $args['version'] . '</code>' );
}
break;
case 'lt':
case '<':
if ( ! plugin_version_lt( $args['req_plugin'], $args['version'] ) ) {
$msg = esc_html__( '%1$s Requires %2$s Version %3$s. Please Downgrade Your %2$s', 'vsp-framework' );
$msg = sprintf( $msg, '<strong>' . $args['plugin_name'] . '</strong>', '<strong>' . $args['req_plugin_name'] . '</strong>', '<code>' . $args['version'] . '</code>' );
}
break;
case 'lte':
case '<=':
if ( ! plugin_version_lte( $args['req_plugin'], $args['version'] ) ) {
$msg = esc_html__( '%1$s Requires %2$s Version %3$s Or Lower. Please Downgrade Your %2$s To %3$s', 'vsp-framework' );
$msg = sprintf( $msg, '<strong>' . $args['plugin_name'] . '</strong>', '<strong>' . $args['req_plugin_name'] . '</strong>', '<code>' . $args['version'] . '</code>' );
}
break;
}
}
if ( false !== $msg ) {
if ( ! did_action( 'wponion_loaded' ) ) {
$add_error = function () use ( $msg ) {
wponion_error_admin_notice( $msg );
};
add_action( 'wponion_loaded', $add_error );
} else {
wponion_error_admin_notice( $msg );
}
}
return ( false !== $msg );
}
}
if ( ! function_exists( 'vsp_add_wc_required_notice' ) ) {
function vsp_add_wc_required_notice( $name = '', $version = '3.0', $compare = '>=' ) {
return vsp_validate_required_plugin( array(
'plugin_name' => $name,
'req_plugin' => 'woocommerce/woocommerce.php',
'req_plugin_name' => 'WooCommerce',
'version' => $version,
'compare' => $compare,
) );
}
}
vsp_load_file( VSP_PATH . 'includes/functions/*.php' );