/home/techb158/l2hypotheques.com/wp-content/plugins/elementor/core/utils
NameSizeModeActions
api/-0755rm
import-export/-0755rm
promotions/-0755rm
svg/-0755rm
ab-test.php25050644editdlrm
assets-config-provider.php15220644editdlrm
assets-translation-loader.php25680644editdlrm
collection.php103760644editdlrm
exceptions.php7090644editdlrm
force-locale.php36400644editdlrm
hints.php151650644editdlrm
http.php9810644editdlrm
plugins-manager.php29080644editdlrm
static-collection.php11120644editdlrm
str.php10010644editdlrm
version.php38690644editdlrm
Edit: /home/techb158/l2hypotheques.com/wp-content/plugins/elementor/core/utils/assets-config-provider.php (1522B)
path_resolver = $path_resolver; return $this; } /** * Load asset config from a file into the collection. * * @param $key * @param $path * * @return $this */ public function load( $key, $path = null ) { if ( ! $path && $this->path_resolver ) { $path_resolver_callback = $this->path_resolver; $path = $path_resolver_callback( $key ); } if ( ! $path || ! file_exists( $path ) ) { return $this; } $config = require $path; if ( ! $this->is_valid_handle( $config ) ) { return $this; } $this->items[ $key ] = [ 'handle' => $config['handle'], 'deps' => $this->is_valid_deps( $config ) ? $config['deps'] : [], ]; return $this; } /** * Check that the handle property in the config is a valid. * * @param $config * * @return bool */ private function is_valid_handle( $config ) { return ! empty( $config['handle'] ) && is_string( $config['handle'] ); } /** * Check that the deps property in the config is a valid. * * @param $config * * @return bool */ private function is_valid_deps( $config ) { return isset( $config['deps'] ) && is_array( $config['deps'] ); } }