PATH:
home
/
ediuae
/
pearlandpetalbeautyspa.com
/
8f1b7c
home/ediuae/accubooksuae.com/wp-includes/class-wp-customize-manager.php 0000644 00000614603 15160632566 0022321 0 ustar 00 <?php /** * WordPress Customize Manager classes * * @package WordPress * @subpackage Customize * @since 3.4.0 */ /** * Customize Manager class. * * Bootstraps the Customize experience on the server-side. * * Sets up the theme-switching process if a theme other than the active one is * being previewed and customized. * * Serves as a factory for Customize Controls and Settings, and * instantiates default Customize Controls and Settings. * * @since 3.4.0 */ #[AllowDynamicProperties] final class WP_Customize_Manager { /** * An instance of the theme being previewed. * * @since 3.4.0 * @var WP_Theme */ protected $theme; /** * The directory name of the previously active theme (within the theme_root). * * @since 3.4.0 * @var string */ protected $original_stylesheet; /** * Whether this is a Customizer pageload. * * @since 3.4.0 * @var bool */ protected $previewing = false; /** * Methods and properties dealing with managing widgets in the Customizer. * * @since 3.9.0 * @var WP_Customize_Widgets */ public $widgets; /** * Methods and properties dealing with managing nav menus in the Customizer. * * @since 4.3.0 * @var WP_Customize_Nav_Menus */ public $nav_menus; /** * Methods and properties dealing with selective refresh in the Customizer preview. * * @since 4.5.0 * @var WP_Customize_Selective_Refresh */ public $selective_refresh; /** * Registered instances of WP_Customize_Setting. * * @since 3.4.0 * @var array */ protected $settings = array(); /** * Sorted top-level instances of WP_Customize_Panel and WP_Customize_Section. * * @since 4.0.0 * @var array */ protected $containers = array(); /** * Registered instances of WP_Customize_Panel. * * @since 4.0.0 * @var array */ protected $panels = array(); /** * List of core components. * * @since 4.5.0 * @var array */ protected $components = array( 'nav_menus' ); /** * Registered instances of WP_Customize_Section. * * @since 3.4.0 * @var array */ protected $sections = array(); /** * Registered instances of WP_Customize_Control. * * @since 3.4.0 * @var array */ protected $controls = array(); /** * Panel types that may be rendered from JS templates. * * @since 4.3.0 * @var array */ protected $registered_panel_types = array(); /** * Section types that may be rendered from JS templates. * * @since 4.3.0 * @var array */ protected $registered_section_types = array(); /** * Control types that may be rendered from JS templates. * * @since 4.1.0 * @var array */ protected $registered_control_types = array(); /** * Initial URL being previewed. * * @since 4.4.0 * @var string */ protected $preview_url; /** * URL to link the user to when closing the Customizer. * * @since 4.4.0 * @var string */ protected $return_url; /** * Mapping of 'panel', 'section', 'control' to the ID which should be autofocused. * * @since 4.4.0 * @var string[] */ protected $autofocus = array(); /** * Messenger channel. * * @since 4.7.0 * @var string */ protected $messenger_channel; /** * Whether the autosave revision of the changeset should be loaded. * * @since 4.9.0 * @var bool */ protected $autosaved = false; /** * Whether the changeset branching is allowed. * * @since 4.9.0 * @var bool */ protected $branching = true; /** * Whether settings should be previewed. * * @since 4.9.0 * @var bool */ protected $settings_previewed = true; /** * Whether a starter content changeset was saved. * * @since 4.9.0 * @var bool */ protected $saved_starter_content_changeset = false; /** * Unsanitized values for Customize Settings parsed from $_POST['customized']. * * @var array */ private $_post_values; /** * Changeset UUID. * * @since 4.7.0 * @var string */ private $_changeset_uuid; /** * Changeset post ID. * * @since 4.7.0 * @var int|false */ private $_changeset_post_id; /** * Changeset data loaded from a customize_changeset post. * * @since 4.7.0 * @var array|null */ private $_changeset_data; /** * Constructor. * * @since 3.4.0 * @since 4.7.0 Added `$args` parameter. * * @param array $args { * Args. * * @type null|string|false $changeset_uuid Changeset UUID, the `post_name` for the customize_changeset post containing the customized state. * Defaults to `null` resulting in a UUID to be immediately generated. If `false` is provided, then * then the changeset UUID will be determined during `after_setup_theme`: when the * `customize_changeset_branching` filter returns false, then the default UUID will be that * of the most recent `customize_changeset` post that has a status other than 'auto-draft', * 'publish', or 'trash'. Otherwise, if changeset branching is enabled, then a random UUID will be used. * @type string $theme Theme to be previewed (for theme switch). Defaults to customize_theme or theme query params. * @type string $messenger_channel Messenger channel. Defaults to customize_messenger_channel query param. * @type bool $settings_previewed If settings should be previewed. Defaults to true. * @type bool $branching If changeset branching is allowed; otherwise, changesets are linear. Defaults to true. * @type bool $autosaved If data from a changeset's autosaved revision should be loaded if it exists. Defaults to false. * } */ public function __construct( $args = array() ) { $args = array_merge( array_fill_keys( array( 'changeset_uuid', 'theme', 'messenger_channel', 'settings_previewed', 'autosaved', 'branching' ), null ), $args ); // Note that the UUID format will be validated in the setup_theme() method. if ( ! isset( $args['changeset_uuid'] ) ) { $args['changeset_uuid'] = wp_generate_uuid4(); } /* * The theme and messenger_channel should be supplied via $args, * but they are also looked at in the $_REQUEST global here for back-compat. */ if ( ! isset( $args['theme'] ) ) { if ( isset( $_REQUEST['customize_theme'] ) ) { $args['theme'] = wp_unslash( $_REQUEST['customize_theme'] ); } elseif ( isset( $_REQUEST['theme'] ) ) { // Deprecated. $args['theme'] = wp_unslash( $_REQUEST['theme'] ); } } if ( ! isset( $args['messenger_channel'] ) && isset( $_REQUEST['customize_messenger_channel'] ) ) { $args['messenger_channel'] = sanitize_key( wp_unslash( $_REQUEST['customize_messenger_channel'] ) ); } // Do not load 'widgets' component if a block theme is activated. if ( ! wp_is_block_theme() ) { $this->components[] = 'widgets'; } $this->original_stylesheet = get_stylesheet(); $this->theme = wp_get_theme( 0 === validate_file( $args['theme'] ) ? $args['theme'] : null ); $this->messenger_channel = $args['messenger_channel']; $this->_changeset_uuid = $args['changeset_uuid']; foreach ( array( 'settings_previewed', 'autosaved', 'branching' ) as $key ) { if ( isset( $args[ $key ] ) ) { $this->$key = (bool) $args[ $key ]; } } require_once ABSPATH . WPINC . '/class-wp-customize-setting.php'; require_once ABSPATH . WPINC . '/class-wp-customize-panel.php'; require_once ABSPATH . WPINC . '/class-wp-customize-section.php'; require_once ABSPATH . WPINC . '/class-wp-customize-control.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-color-control.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-media-control.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-upload-control.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-image-control.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-background-image-control.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-background-position-control.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-cropped-image-control.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-site-icon-control.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-header-image-control.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-theme-control.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-code-editor-control.php'; require_once ABSPATH . WPINC . '/customize/class-wp-widget-area-customize-control.php'; require_once ABSPATH . WPINC . '/customize/class-wp-widget-form-customize-control.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-nav-menu-control.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-nav-menu-item-control.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-nav-menu-location-control.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-nav-menu-name-control.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-nav-menu-locations-control.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-nav-menu-auto-add-control.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-nav-menus-panel.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-themes-panel.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-themes-section.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-sidebar-section.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-nav-menu-section.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-custom-css-setting.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-filter-setting.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-header-image-setting.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-background-image-setting.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-nav-menu-item-setting.php'; require_once ABSPATH . WPINC . '/customize/class-wp-customize-nav-menu-setting.php'; /** * Filters the core Customizer components to load. * * This allows Core components to be excluded from being instantiated by * filtering them out of the array. Note that this filter generally runs * during the {@see 'plugins_loaded'} action, so it cannot be added * in a theme. * * @since 4.4.0 * * @see WP_Customize_Manager::__construct() * * @param string[] $components Array of core components to load. * @param WP_Customize_Manager $manager WP_Customize_Manager instance. */ $components = apply_filters( 'customize_loaded_components', $this->components, $this ); require_once ABSPATH . WPINC . '/customize/class-wp-customize-selective-refresh.php'; $this->selective_refresh = new WP_Customize_Selective_Refresh( $this ); if ( in_array( 'widgets', $components, true ) ) { require_once ABSPATH . WPINC . '/class-wp-customize-widgets.php'; $this->widgets = new WP_Customize_Widgets( $this ); } if ( in_array( 'nav_menus', $components, true ) ) { require_once ABSPATH . WPINC . '/class-wp-customize-nav-menus.php'; $this->nav_menus = new WP_Customize_Nav_Menus( $this ); } add_action( 'setup_theme', array( $this, 'setup_theme' ) ); add_action( 'wp_loaded', array( $this, 'wp_loaded' ) ); // Do not spawn cron (especially the alternate cron) while running the Customizer. remove_action( 'init', 'wp_cron' ); // Do not run update checks when rendering the controls. remove_action( 'admin_init', '_maybe_update_core' ); remove_action( 'admin_init', '_maybe_update_plugins' ); remove_action( 'admin_init', '_maybe_update_themes' ); add_action( 'wp_ajax_customize_save', array( $this, 'save' ) ); add_action( 'wp_ajax_customize_trash', array( $this, 'handle_changeset_trash_request' ) ); add_action( 'wp_ajax_customize_refresh_nonces', array( $this, 'refresh_nonces' ) ); add_action( 'wp_ajax_customize_load_themes', array( $this, 'handle_load_themes_request' ) ); add_filter( 'heartbeat_settings', array( $this, 'add_customize_screen_to_heartbeat_settings' ) ); add_filter( 'heartbeat_received', array( $this, 'check_changeset_lock_with_heartbeat' ), 10, 3 ); add_action( 'wp_ajax_customize_override_changeset_lock', array( $this, 'handle_override_changeset_lock_request' ) ); add_action( 'wp_ajax_customize_dismiss_autosave_or_lock', array( $this, 'handle_dismiss_autosave_or_lock_request' ) ); add_action( 'customize_register', array( $this, 'register_controls' ) ); add_action( 'customize_register', array( $this, 'register_dynamic_settings' ), 11 ); // Allow code to create settings first. add_action( 'customize_controls_init', array( $this, 'prepare_controls' ) ); add_action( 'customize_controls_enqueue_scripts', array( $this, 'enqueue_control_scripts' ) ); // Render Common, Panel, Section, and Control templates. add_action( 'customize_controls_print_footer_scripts', array( $this, 'render_panel_templates' ), 1 ); add_action( 'customize_controls_print_footer_scripts', array( $this, 'render_section_templates' ), 1 ); add_action( 'customize_controls_print_footer_scripts', array( $this, 'render_control_templates' ), 1 ); // Export header video settings with the partial response. add_filter( 'customize_render_partials_response', array( $this, 'export_header_video_settings' ), 10, 3 ); // Export the settings to JS via the _wpCustomizeSettings variable. add_action( 'customize_controls_print_footer_scripts', array( $this, 'customize_pane_settings' ), 1000 ); // Add theme update notices. if ( current_user_can( 'install_themes' ) || current_user_can( 'update_themes' ) ) { require_once ABSPATH . 'wp-admin/includes/update.php'; add_action( 'customize_controls_print_footer_scripts', 'wp_print_admin_notice_templates' ); } } /** * Returns true if it's an Ajax request. * * @since 3.4.0 * @since 4.2.0 Added `$action` param. * * @param string|null $action Whether the supplied Ajax action is being run. * @return bool True if it's an Ajax request, false otherwise. */ public function doing_ajax( $action = null ) { if ( ! wp_doing_ajax() ) { return false; } if ( ! $action ) { return true; } else { /* * Note: we can't just use doing_action( "wp_ajax_{$action}" ) because we need * to check before admin-ajax.php gets to that point. */ return isset( $_REQUEST['action'] ) && wp_unslash( $_REQUEST['action'] ) === $action; } } /** * Custom wp_die wrapper. Returns either the standard message for UI * or the Ajax message. * * @since 3.4.0 * * @param string|WP_Error $ajax_message Ajax return. * @param string $message Optional. UI message. */ protected function wp_die( $ajax_message, $message = null ) { if ( $this->doing_ajax() ) { wp_die( $ajax_message ); } if ( ! $message ) { $message = __( 'An error occurred while customizing. Please refresh the page and try again.' ); } if ( $this->messenger_channel ) { ob_start(); wp_enqueue_scripts(); wp_print_scripts( array( 'customize-base' ) ); $settings = array( 'messengerArgs' => array( 'channel' => $this->messenger_channel, 'url' => wp_customize_url(), ), 'error' => $ajax_message, ); $message .= ob_get_clean(); ob_start(); ?> <script> ( function( api, settings ) { var preview = new api.Messenger( settings.messengerArgs ); preview.send( 'iframe-loading-error', settings.error ); } )( wp.customize, <?php echo wp_json_encode( $settings, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ); ?> ); </script> <?php $message .= wp_get_inline_script_tag( wp_remove_surrounding_empty_script_tags( ob_get_clean() ) . "\n//# sourceURL=" . rawurlencode( __METHOD__ ) ); } wp_die( $message ); } /** * Returns the Ajax wp_die() handler if it's a customized request. * * @since 3.4.0 * @deprecated 4.7.0 * * @return callable Die handler. */ public function wp_die_handler() { _deprecated_function( __METHOD__, '4.7.0' ); if ( $this->doing_ajax() || isset( $_POST['customized'] ) ) { return '_ajax_wp_die_handler'; } return '_default_wp_die_handler'; } /** * Starts preview and customize theme. * * Check if customize query variable exist. Init filters to filter the active theme. * * @since 3.4.0 * * @global string $pagenow The filename of the current screen. */ public function setup_theme() { global $pagenow; // Check permissions for customize.php access since this method is called before customize.php can run any code. if ( 'customize.php' === $pagenow && ! current_user_can( 'customize' ) ) { if ( ! is_user_logged_in() ) { auth_redirect(); } else { wp_die( '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' . '<p>' . __( 'Sorry, you are not allowed to customize this site.' ) . '</p>', 403 ); } return; } // If a changeset was provided is invalid. if ( isset( $this->_changeset_uuid ) && false !== $this->_changeset_uuid && ! wp_is_uuid( $this->_changeset_uuid ) ) { $this->wp_die( -1, __( 'Invalid changeset UUID' ) ); } /* * Clear incoming post data if the user lacks a CSRF token (nonce). Note that the customizer * application will inject the customize_preview_nonce query parameter into all Ajax requests. * For similar behavior elsewhere in WordPress, see rest_cookie_check_errors() which logs out * a user when a valid nonce isn't present. */ $has_post_data_nonce = ( check_ajax_referer( 'preview-customize_' . $this->get_stylesheet(), 'nonce', false ) || check_ajax_referer( 'save-customize_' . $this->get_stylesheet(), 'nonce', false ) || check_ajax_referer( 'preview-customize_' . $this->get_stylesheet(), 'customize_preview_nonce', false ) ); if ( ! current_user_can( 'customize' ) || ! $has_post_data_nonce ) { unset( $_POST['customized'] ); unset( $_REQUEST['customized'] ); } /* * If unauthenticated then require a valid changeset UUID to load the preview. * In this way, the UUID serves as a secret key. If the messenger channel is present, * then send unauthenticated code to prompt re-auth. */ if ( ! current_user_can( 'customize' ) && ! $this->changeset_post_id() ) { $this->wp_die( $this->messenger_channel ? 0 : -1, __( 'Non-existent changeset UUID.' ) ); } if ( ! headers_sent() ) { send_origin_headers(); } // Hide the admin bar if we're embedded in the customizer iframe. if ( $this->messenger_channel ) { show_admin_bar( false ); } if ( $this->is_theme_active() ) { // Once the theme is loaded, we'll validate it. add_action( 'after_setup_theme', array( $this, 'after_setup_theme' ) ); } else { /* * If the requested theme is not the active theme and the user doesn't have * the switch_themes cap, bail. */ if ( ! current_user_can( 'switch_themes' ) ) { $this->wp_die( -1, __( 'Sorry, you are not allowed to edit theme options on this site.' ) ); } // If the theme has errors while loading, bail. if ( $this->theme()->errors() ) { $this->wp_die( -1, $this->theme()->errors()->get_error_message() ); } // If the theme isn't allowed per multisite settings, bail. if ( ! $this->theme()->is_allowed() ) { $this->wp_die( -1, __( 'The requested theme does not exist.' ) ); } } // Make sure changeset UUID is established immediately after the theme is loaded. add_action( 'after_setup_theme', array( $this, 'establish_loaded_changeset' ), 5 ); /* * Import theme starter content for fresh installations when landing in the customizer. * Import starter content at after_setup_theme:100 so that any * add_theme_support( 'starter-content' ) calls will have been made. */ if ( get_option( 'fresh_site' ) && 'customize.php' === $pagenow ) { add_action( 'after_setup_theme', array( $this, 'import_theme_starter_content' ), 100 ); } $this->start_previewing_theme(); } /** * Establishes the loaded changeset. * * This method runs right at after_setup_theme and applies the 'customize_changeset_branching' filter to determine * whether concurrent changesets are allowed. Then if the Customizer is not initialized with a `changeset_uuid` param, * this method will determine which UUID should be used. If changeset branching is disabled, then the most saved * changeset will be loaded by default. Otherwise, if there are no existing saved changesets or if changeset branching is * enabled, then a new UUID will be generated. * * @since 4.9.0 * * @global string $pagenow The filename of the current screen. */ public function establish_loaded_changeset() { global $pagenow; if ( empty( $this->_changeset_uuid ) ) { $changeset_uuid = null; if ( ! $this->branching() && $this->is_theme_active() ) { $unpublished_changeset_posts = $this->get_changeset_posts( array( 'post_status' => array_diff( get_post_stati(), array( 'auto-draft', 'publish', 'trash', 'inherit', 'private' ) ), 'exclude_restore_dismissed' => false, 'author' => 'any', 'posts_per_page' => 1, 'order' => 'DESC', 'orderby' => 'date', ) ); $unpublished_changeset_post = array_shift( $unpublished_changeset_posts ); if ( ! empty( $unpublished_changeset_post ) && wp_is_uuid( $unpublished_changeset_post->post_name ) ) { $changeset_uuid = $unpublished_changeset_post->post_name; } } // If no changeset UUID has been set yet, then generate a new one. if ( empty( $changeset_uuid ) ) { $changeset_uuid = wp_generate_uuid4(); } $this->_changeset_uuid = $changeset_uuid; } if ( is_admin() && 'customize.php' === $pagenow ) { $this->set_changeset_lock( $this->changeset_post_id() ); } } /** * Callback to validate a theme once it is loaded * * @since 3.4.0 */ public function after_setup_theme() { $doing_ajax_or_is_customized = ( $this->doing_ajax() || isset( $_POST['customized'] ) ); if ( ! $doing_ajax_or_is_customized && ! validate_current_theme() ) { wp_redirect( 'themes.php?broken=true' ); exit; } } /** * If the theme to be previewed isn't the active theme, add filter callbacks * to swap it out at runtime. * * @since 3.4.0 */ public function start_previewing_theme() { // Bail if we're already previewing. if ( $this->is_preview() ) { return; } $this->previewing = true; if ( ! $this->is_theme_active() ) { add_filter( 'template', array( $this, 'get_template' ) ); add_filter( 'stylesheet', array( $this, 'get_stylesheet' ) ); add_filter( 'pre_option_current_theme', array( $this, 'current_theme' ) ); // @link: https://core.trac.wordpress.org/ticket/20027 add_filter( 'pre_option_stylesheet', array( $this, 'get_stylesheet' ) ); add_filter( 'pre_option_template', array( $this, 'get_template' ) ); // Handle custom theme roots. add_filter( 'pre_option_stylesheet_root', array( $this, 'get_stylesheet_root' ) ); add_filter( 'pre_option_template_root', array( $this, 'get_template_root' ) ); } /** * Fires once the Customizer theme preview has started. * * @since 3.4.0 * * @param WP_Customize_Manager $manager WP_Customize_Manager instance. */ do_action( 'start_previewing_theme', $this ); } /** * Stops previewing the selected theme. * * Removes filters to change the active theme. * * @since 3.4.0 */ public function stop_previewing_theme() { if ( ! $this->is_preview() ) { return; } $this->previewing = false; if ( ! $this->is_theme_active() ) { remove_filter( 'template', array( $this, 'get_template' ) ); remove_filter( 'stylesheet', array( $this, 'get_stylesheet' ) ); remove_filter( 'pre_option_current_theme', array( $this, 'current_theme' ) ); // @link: https://core.trac.wordpress.org/ticket/20027 remove_filter( 'pre_option_stylesheet', array( $this, 'get_stylesheet' ) ); remove_filter( 'pre_option_template', array( $this, 'get_template' ) ); // Handle custom theme roots. remove_filter( 'pre_option_stylesheet_root', array( $this, 'get_stylesheet_root' ) ); remove_filter( 'pre_option_template_root', array( $this, 'get_template_root' ) ); } /** * Fires once the Customizer theme preview has stopped. * * @since 3.4.0 * * @param WP_Customize_Manager $manager WP_Customize_Manager instance. */ do_action( 'stop_previewing_theme', $this ); } /** * Gets whether settings are or will be previewed. * * @since 4.9.0 * * @see WP_Customize_Setting::preview() * * @return bool */ public function settings_previewed() { return $this->settings_previewed; } /** * Gets whether data from a changeset's autosaved revision should be loaded if it exists. * * @since 4.9.0 * * @see WP_Customize_Manager::changeset_data() * * @return bool Is using autosaved changeset revision. */ public function autosaved() { return $this->autosaved; } /** * Whether the changeset branching is allowed. * * @since 4.9.0 * * @see WP_Customize_Manager::establish_loaded_changeset() * * @return bool Is changeset branching. */ public function branching() { /** * Filters whether or not changeset branching is allowed. * * By default in core, when changeset branching is not allowed, changesets will operate * linearly in that only one saved changeset will exist at a time (with a 'draft' or * 'future' status). This makes the Customizer operate in a way that is similar to going to * "edit" to one existing post: all users will be making changes to the same post, and autosave * revisions will be made for that post. * * By contrast, when changeset branching is allowed, then the model is like users going * to "add new" for a page and each user makes changes independently of each other since * they are all operating on their own separate pages, each getting their own separate * initial auto-drafts and then once initially saved, autosave revisions on top of that * user's specific post. * * Since linear changesets are deemed to be more suitable for the majority of WordPress users, * they are the default. For WordPress sites that have heavy site management in the Customizer * by multiple users then branching changesets should be enabled by means of this filter. * * @since 4.9.0 * * @param bool $allow_branching Whether branching is allowed. If `false`, the default, * then only one saved changeset exists at a time. * @param WP_Customize_Manager $wp_customize Manager instance. */ $this->branching = apply_filters( 'customize_changeset_branching', $this->branching, $this ); return $this->branching; } /** * Gets the changeset UUID. * * @since 4.7.0 * * @see WP_Customize_Manager::establish_loaded_changeset() * * @return string UUID. */ public function changeset_uuid() { if ( empty( $this->_changeset_uuid ) ) { $this->establish_loaded_changeset(); } return $this->_changeset_uuid; } /** * Gets the theme being customized. * * @since 3.4.0 * * @return WP_Theme */ public function theme() { if ( ! $this->theme ) { $this->theme = wp_get_theme(); } return $this->theme; } /** * Gets the registered settings. * * @since 3.4.0 * * @return array */ public function settings() { return $this->settings; } /** * Gets the registered controls. * * @since 3.4.0 * * @return array */ public function controls() { return $this->controls; } /** * Gets the registered containers. * * @since 4.0.0 * * @return array */ public function containers() { return $this->containers; } /** * Gets the registered sections. * * @since 3.4.0 * * @return array */ public function sections() { return $this->sections; } /** * Gets the registered panels. * * @since 4.0.0 * * @return array Panels. */ public function panels() { return $this->panels; } /** * Checks if the current theme is active. * * @since 3.4.0 * * @return bool */ public function is_theme_active() { return $this->get_stylesheet() === $this->original_stylesheet; } /** * Registers styles/scripts and initialize the preview of each setting * * @since 3.4.0 */ public function wp_loaded() { /* * Unconditionally register core types for panels, sections, and controls * in case plugin unhooks all customize_register actions. */ $this->register_panel_type( 'WP_Customize_Panel' ); $this->register_panel_type( 'WP_Customize_Themes_Panel' ); $this->register_section_type( 'WP_Customize_Section' ); $this->register_section_type( 'WP_Customize_Sidebar_Section' ); $this->register_section_type( 'WP_Customize_Themes_Section' ); $this->register_control_type( 'WP_Customize_Color_Control' ); $this->register_control_type( 'WP_Customize_Media_Control' ); $this->register_control_type( 'WP_Customize_Upload_Control' ); $this->register_control_type( 'WP_Customize_Image_Control' ); $this->register_control_type( 'WP_Customize_Background_Image_Control' ); $this->register_control_type( 'WP_Customize_Background_Position_Control' ); $this->register_control_type( 'WP_Customize_Cropped_Image_Control' ); $this->register_control_type( 'WP_Customize_Site_Icon_Control' ); $this->register_control_type( 'WP_Customize_Theme_Control' ); $this->register_control_type( 'WP_Customize_Code_Editor_Control' ); $this->register_control_type( 'WP_Customize_Date_Time_Control' ); /** * Fires once WordPress has loaded, allowing scripts and styles to be initialized. * * @since 3.4.0 * * @param WP_Customize_Manager $manager WP_Customize_Manager instance. */ do_action( 'customize_register', $this ); if ( $this->settings_previewed() ) { foreach ( $this->settings as $setting ) { $setting->preview(); } } if ( $this->is_preview() && ! is_admin() ) { $this->customize_preview_init(); } } /** * Prevents Ajax requests from following redirects when previewing a theme * by issuing a 200 response instead of a 30x. * * Instead, the JS will sniff out the location header. * * @since 3.4.0 * @deprecated 4.7.0 * * @param int $status Status. * @return int */ public function wp_redirect_status( $status ) { _deprecated_function( __FUNCTION__, '4.7.0' ); if ( $this->is_preview() && ! is_admin() ) { return 200; } return $status; } /** * Finds the changeset post ID for a given changeset UUID. * * @since 4.7.0 * * @param string $uuid Changeset UUID. * @return int|null Returns post ID on success and null on failure. */ public function find_changeset_post_id( $uuid ) { $cache_group = 'customize_changeset_post'; $changeset_post_id = wp_cache_get( $uuid, $cache_group ); if ( $changeset_post_id && 'customize_changeset' === get_post_type( $changeset_post_id ) ) { return $changeset_post_id; } $changeset_post_query = new WP_Query( array( 'post_type' => 'customize_changeset', 'post_status' => get_post_stati(), 'name' => $uuid, 'posts_per_page' => 1, 'no_found_rows' => true, 'cache_results' => true, 'update_post_meta_cache' => false, 'update_post_term_cache' => false, 'lazy_load_term_meta' => false, ) ); if ( ! empty( $changeset_post_query->posts ) ) { // Note: 'fields'=>'ids' is not being used in order to cache the post object as it will be needed. $changeset_post_id = $changeset_post_query->posts[0]->ID; wp_cache_set( $uuid, $changeset_post_id, $cache_group ); return $changeset_post_id; } return null; } /** * Gets changeset posts. * * @since 4.9.0 * * @param array $args { * Args to pass into `get_posts()` to query changesets. * * @type int $posts_per_page Number of posts to return. Defaults to -1 (all posts). * @type int $author Post author. Defaults to current user. * @type string $post_status Status of changeset. Defaults to 'auto-draft'. * @type bool $exclude_restore_dismissed Whether to exclude changeset auto-drafts that have been dismissed. Defaults to true. * } * @return WP_Post[] Auto-draft changesets. */ protected function get_changeset_posts( $args = array() ) { $default_args = array( 'exclude_restore_dismissed' => true, 'posts_per_page' => -1, 'post_type' => 'customize_changeset', 'post_status' => 'auto-draft', 'order' => 'DESC', 'orderby' => 'date', 'no_found_rows' => true, 'cache_results' => true, 'update_post_meta_cache' => false, 'update_post_term_cache' => false, 'lazy_load_term_meta' => false, ); if ( get_current_user_id() ) { $default_args['author'] = get_current_user_id(); } $args = array_merge( $default_args, $args ); if ( ! empty( $args['exclude_restore_dismissed'] ) ) { unset( $args['exclude_restore_dismissed'] ); $args['meta_query'] = array( array( 'key' => '_customize_restore_dismissed', 'compare' => 'NOT EXISTS', ), ); } return get_posts( $args ); } /** * Dismisses all of the current user's auto-drafts (other than the present one). * * @since 4.9.0 * @return int The number of auto-drafts that were dismissed. */ protected function dismiss_user_auto_draft_changesets() { $changeset_autodraft_posts = $this->get_changeset_posts( array( 'post_status' => 'auto-draft', 'exclude_restore_dismissed' => true, 'posts_per_page' => -1, ) ); $dismissed = 0; foreach ( $changeset_autodraft_posts as $autosave_autodraft_post ) { if ( $autosave_autodraft_post->ID === $this->changeset_post_id() ) { continue; } if ( update_post_meta( $autosave_autodraft_post->ID, '_customize_restore_dismissed', true ) ) { ++$dismissed; } } return $dismissed; } /** * Gets the changeset post ID for the loaded changeset. * * @since 4.7.0 * * @return int|null Post ID on success or null if there is no post yet saved. */ public function changeset_post_id() { if ( ! isset( $this->_changeset_post_id ) ) { $post_id = $this->find_changeset_post_id( $this->changeset_uuid() ); if ( ! $post_id ) { $post_id = false; } $this->_changeset_post_id = $post_id; } if ( false === $this->_changeset_post_id ) { return null; } return $this->_changeset_post_id; } /** * Gets the data stored in a changeset post. * * @since 4.7.0 * * @param int $post_id Changeset post ID. * @return array|WP_Error Changeset data or WP_Error on error. */ protected function get_changeset_post_data( $post_id ) { if ( ! $post_id ) { return new WP_Error( 'empty_post_id' ); } $changeset_post = get_post( $post_id ); if ( ! $changeset_post ) { return new WP_Error( 'missing_post' ); } if ( 'revision' === $changeset_post->post_type ) { if ( 'customize_changeset' !== get_post_type( $changeset_post->post_parent ) ) { return new WP_Error( 'wrong_post_type' ); } } elseif ( 'customize_changeset' !== $changeset_post->post_type ) { return new WP_Error( 'wrong_post_type' ); } $changeset_data = json_decode( $changeset_post->post_content, true ); $last_error = json_last_error(); if ( $last_error ) { return new WP_Error( 'json_parse_error', '', $last_error ); } if ( ! is_array( $changeset_data ) ) { return new WP_Error( 'expected_array' ); } return $changeset_data; } /** * Gets changeset data. * * @since 4.7.0 * @since 4.9.0 This will return the changeset's data with a user's autosave revision merged on top, if one exists and $autosaved is true. * * @return array Changeset data. */ public function changeset_data() { if ( isset( $this->_changeset_data ) ) { return $this->_changeset_data; } $changeset_post_id = $this->changeset_post_id(); if ( ! $changeset_post_id ) { $this->_changeset_data = array(); } else { if ( $this->autosaved() && is_user_logged_in() ) { $autosave_post = wp_get_post_autosave( $changeset_post_id, get_current_user_id() ); if ( $autosave_post ) { $data = $this->get_changeset_post_data( $autosave_post->ID ); if ( ! is_wp_error( $data ) ) { $this->_changeset_data = $data; } } } // Load data from the changeset if it was not loaded from an autosave. if ( ! isset( $this->_changeset_data ) ) { $data = $this->get_changeset_post_data( $changeset_post_id ); if ( ! is_wp_error( $data ) ) { $this->_changeset_data = $data; } else { $this->_changeset_data = array(); } } } return $this->_changeset_data; } /** * Starter content setting IDs. * * @since 4.7.0 * @var array */ protected $pending_starter_content_settings_ids = array(); /** * Imports theme starter content into the customized state. * * @since 4.7.0 * * @param array $starter_content Starter content. Defaults to `get_theme_starter_content()`. */ public function import_theme_starter_content( $starter_content = array() ) { if ( empty( $starter_content ) ) { $starter_content = get_theme_starter_content(); } $changeset_data = array(); if ( $this->changeset_post_id() ) { /* * Don't re-import starter content into a changeset saved persistently. * This will need to be revisited in the future once theme switching * is allowed with drafted/scheduled changesets, since switching to * another theme could result in more starter content being applied. * However, when doing an explicit save it is currently possible for * nav menus and nav menu items specifically to lose their starter_content * flags, thus resulting in duplicates being created since they fail * to get re-used. See #40146. */ if ( 'auto-draft' !== get_post_status( $this->changeset_post_id() ) ) { return; } $changeset_data = $this->get_changeset_post_data( $this->changeset_post_id() ); } $sidebars_widgets = isset( $starter_content['widgets'] ) && ! empty( $this->widgets ) ? $starter_content['widgets'] : array(); $attachments = isset( $starter_content['attachments'] ) && ! empty( $this->nav_menus ) ? $starter_content['attachments'] : array(); $posts = isset( $starter_content['posts'] ) && ! empty( $this->nav_menus ) ? $starter_content['posts'] : array(); $options = isset( $starter_content['options'] ) ? $starter_content['options'] : array(); $nav_menus = isset( $starter_content['nav_menus'] ) && ! empty( $this->nav_menus ) ? $starter_content['nav_menus'] : array(); $theme_mods = isset( $starter_content['theme_mods'] ) ? $starter_content['theme_mods'] : array(); // Widgets. $max_widget_numbers = array(); foreach ( $sidebars_widgets as $sidebar_id => $widgets ) { $sidebar_widget_ids = array(); foreach ( $widgets as $widget ) { list( $id_base, $instance ) = $widget; if ( ! isset( $max_widget_numbers[ $id_base ] ) ) { // When $settings is an array-like object, get an intrinsic array for use with array_keys(). $settings = get_option( "widget_{$id_base}", array() ); if ( $settings instanceof ArrayObject || $settings instanceof ArrayIterator ) { $settings = $settings->getArrayCopy(); } unset( $settings['_multiwidget'] ); // Find the max widget number for this type. $widget_numbers = array_keys( $settings ); if ( count( $widget_numbers ) > 0 ) { $widget_numbers[] = 1; $max_widget_numbers[ $id_base ] = max( ...$widget_numbers ); } else { $max_widget_numbers[ $id_base ] = 1; } } $max_widget_numbers[ $id_base ] += 1; $widget_id = sprintf( '%s-%d', $id_base, $max_widget_numbers[ $id_base ] ); $setting_id = sprintf( 'widget_%s[%d]', $id_base, $max_widget_numbers[ $id_base ] ); $setting_value = $this->widgets->sanitize_widget_js_instance( $instance ); if ( empty( $changeset_data[ $setting_id ] ) || ! empty( $changeset_data[ $setting_id ]['starter_content'] ) ) { $this->set_post_value( $setting_id, $setting_value ); $this->pending_starter_content_settings_ids[] = $setting_id; } $sidebar_widget_ids[] = $widget_id; } $setting_id = sprintf( 'sidebars_widgets[%s]', $sidebar_id ); if ( empty( $changeset_data[ $setting_id ] ) || ! empty( $changeset_data[ $setting_id ]['starter_content'] ) ) { $this->set_post_value( $setting_id, $sidebar_widget_ids ); $this->pending_starter_content_settings_ids[] = $setting_id; } } $starter_content_auto_draft_post_ids = array(); if ( ! empty( $changeset_data['nav_menus_created_posts']['value'] ) ) { $starter_content_auto_draft_post_ids = array_merge( $starter_content_auto_draft_post_ids, $changeset_data['nav_menus_created_posts']['value'] ); } // Make an index of all the posts needed and what their slugs are. $needed_posts = array(); $attachments = $this->prepare_starter_content_attachments( $attachments ); foreach ( $attachments as $attachment ) { $key = 'attachment:' . $attachment['post_name']; $needed_posts[ $key ] = true; } foreach ( array_keys( $posts ) as $post_symbol ) { if ( empty( $posts[ $post_symbol ]['post_name'] ) && empty( $posts[ $post_symbol ]['post_title'] ) ) { unset( $posts[ $post_symbol ] ); continue; } if ( empty( $posts[ $post_symbol ]['post_name'] ) ) { $posts[ $post_symbol ]['post_name'] = sanitize_title( $posts[ $post_symbol ]['post_title'] ); } if ( empty( $posts[ $post_symbol ]['post_type'] ) ) { $posts[ $post_symbol ]['post_type'] = 'post'; } $needed_posts[ $posts[ $post_symbol ]['post_type'] . ':' . $posts[ $post_symbol ]['post_name'] ] = true; } $all_post_slugs = array_merge( wp_list_pluck( $attachments, 'post_name' ), wp_list_pluck( $posts, 'post_name' ) ); /* * Obtain all post types referenced in starter content to use in query. * This is needed because 'any' will not account for post types not yet registered. */ $post_types = array_filter( array_merge( array( 'attachment' ), wp_list_pluck( $posts, 'post_type' ) ) ); // Re-use auto-draft starter content posts referenced in the current customized state. $existing_starter_content_posts = array(); if ( ! empty( $starter_content_auto_draft_post_ids ) ) { $existing_posts_query = new WP_Query( array( 'post__in' => $starter_content_auto_draft_post_ids, 'post_status' => 'auto-draft', 'post_type' => $post_types, 'posts_per_page' => -1, ) ); foreach ( $existing_posts_query->posts as $existing_post ) { $post_name = $existing_post->post_name; if ( empty( $post_name ) ) { $post_name = get_post_meta( $existing_post->ID, '_customize_draft_post_name', true ); } $existing_starter_content_posts[ $existing_post->post_type . ':' . $post_name ] = $existing_post; } } // Re-use non-auto-draft posts. if ( ! empty( $all_post_slugs ) ) { $existing_posts_query = new WP_Query( array( 'post_name__in' => $all_post_slugs, 'post_status' => array_diff( get_post_stati(), array( 'auto-draft' ) ), 'post_type' => 'any', 'posts_per_page' => -1, ) ); foreach ( $existing_posts_query->posts as $existing_post ) { $key = $existing_post->post_type . ':' . $existing_post->post_name; if ( isset( $needed_posts[ $key ] ) && ! isset( $existing_starter_content_posts[ $key ] ) ) { $existing_starter_content_posts[ $key ] = $existing_post; } } } // Attachments are technically posts but handled differently. if ( ! empty( $attachments ) ) { $attachment_ids = array(); foreach ( $attachments as $symbol => $attachment ) { $file_array = array( 'name' => $attachment['file_name'], ); $file_path = $attachment['file_path']; $attachment_id = null; $attached_file = null; if ( isset( $existing_starter_content_posts[ 'attachment:' . $attachment['post_name'] ] ) ) { $attachment_post = $existing_starter_content_posts[ 'attachment:' . $attachment['post_name'] ]; $attachment_id = $attachment_post->ID; $attached_file = get_attached_file( $attachment_id ); if ( empty( $attached_file ) || ! file_exists( $attached_file ) ) { $attachment_id = null; $attached_file = null; } elseif ( $this->get_stylesheet() !== get_post_meta( $attachment_post->ID, '_starter_content_theme', true ) ) { // Re-generate attachment metadata since it was previously generated for a different theme. $metadata = wp_generate_attachment_metadata( $attachment_post->ID, $attached_file ); wp_update_attachment_metadata( $attachment_id, $metadata ); update_post_meta( $attachment_id, '_starter_content_theme', $this->get_stylesheet() ); } } // Insert the attachment auto-draft because it doesn't yet exist or the attached file is gone. if ( ! $attachment_id ) { // Copy file to temp location so that original file won't get deleted from theme after sideloading. $temp_file_name = wp_tempnam( wp_basename( $file_path ) ); if ( $temp_file_name && copy( $file_path, $temp_file_name ) ) { $file_array['tmp_name'] = $temp_file_name; } if ( empty( $file_array['tmp_name'] ) ) { continue; } $attachment_post_data = array_merge( wp_array_slice_assoc( $attachment, array( 'post_title', 'post_content', 'post_excerpt' ) ), array( 'post_status' => 'auto-draft', // So attachment will be garbage collected in a week if changeset is never published. ) ); $attachment_id = media_handle_sideload( $file_array, 0, null, $attachment_post_data ); if ( is_wp_error( $attachment_id ) ) { continue; } update_post_meta( $attachment_id, '_starter_content_theme', $this->get_stylesheet() ); update_post_meta( $attachment_id, '_customize_draft_post_name', $attachment['post_name'] ); } $attachment_ids[ $symbol ] = $attachment_id; } $starter_content_auto_draft_post_ids = array_merge( $starter_content_auto_draft_post_ids, array_values( $attachment_ids ) ); } // Posts & pages. if ( ! empty( $posts ) ) { foreach ( array_keys( $posts ) as $post_symbol ) { if ( empty( $posts[ $post_symbol ]['post_type'] ) || empty( $posts[ $post_symbol ]['post_name'] ) ) { continue; } $post_type = $posts[ $post_symbol ]['post_type']; if ( ! empty( $posts[ $post_symbol ]['post_name'] ) ) { $post_name = $posts[ $post_symbol ]['post_name']; } elseif ( ! empty( $posts[ $post_symbol ]['post_title'] ) ) { $post_name = sanitize_title( $posts[ $post_symbol ]['post_title'] ); } else { continue; } // Use existing auto-draft post if one already exists with the same type and name. if ( isset( $existing_starter_content_posts[ $post_type . ':' . $post_name ] ) ) { $posts[ $post_symbol ]['ID'] = $existing_starter_content_posts[ $post_type . ':' . $post_name ]->ID; continue; } // Translate the featured image symbol. if ( ! empty( $posts[ $post_symbol ]['thumbnail'] ) && preg_match( '/^{{(?P<symbol>.+)}}$/', $posts[ $post_symbol ]['thumbnail'], $matches ) && isset( $attachment_ids[ $matches['symbol'] ] ) ) { $posts[ $post_symbol ]['meta_input']['_thumbnail_id'] = $attachment_ids[ $matches['symbol'] ]; } if ( ! empty( $posts[ $post_symbol ]['template'] ) ) { $posts[ $post_symbol ]['meta_input']['_wp_page_template'] = $posts[ $post_symbol ]['template']; } $r = $this->nav_menus->insert_auto_draft_post( $posts[ $post_symbol ] ); if ( $r instanceof WP_Post ) { $posts[ $post_symbol ]['ID'] = $r->ID; } } $starter_content_auto_draft_post_ids = array_merge( $starter_content_auto_draft_post_ids, wp_list_pluck( $posts, 'ID' ) ); } // The nav_menus_created_posts setting is why nav_menus component is dependency for adding posts. if ( ! empty( $this->nav_menus ) && ! empty( $starter_content_auto_draft_post_ids ) ) { $setting_id = 'nav_menus_created_posts'; $this->set_post_value( $setting_id, array_unique( array_values( $starter_content_auto_draft_post_ids ) ) ); $this->pending_starter_content_settings_ids[] = $setting_id; } // Nav menus. $placeholder_id = -1; $reused_nav_menu_setting_ids = array(); foreach ( $nav_menus as $nav_menu_location => $nav_menu ) { $nav_menu_term_id = null; $nav_menu_setting_id = null; $matches = array(); // Look for an existing placeholder menu with starter content to re-use. foreach ( $changeset_data as $setting_id => $setting_params ) { $can_reuse = ( ! empty( $setting_params['starter_content'] ) && ! in_array( $setting_id, $reused_nav_menu_setting_ids, true ) && preg_match( '#^nav_menu\[(?P<nav_menu_id>-?\d+)\]$#', $setting_id, $matches ) ); if ( $can_reuse ) { $nav_menu_term_id = (int) $matches['nav_menu_id']; $nav_menu_setting_id = $setting_id; $reused_nav_menu_setting_ids[] = $setting_id; break; } } if ( ! $nav_menu_term_id ) { while ( isset( $changeset_data[ sprintf( 'nav_menu[%d]', $placeholder_id ) ] ) ) { --$placeholder_id; } $nav_menu_term_id = $placeholder_id; $nav_menu_setting_id = sprintf( 'nav_menu[%d]', $placeholder_id ); } $this->set_post_value( $nav_menu_setting_id, array( 'name' => isset( $nav_menu['name'] ) ? $nav_menu['name'] : $nav_menu_location, ) ); $this->pending_starter_content_settings_ids[] = $nav_menu_setting_id; // @todo Add support for menu_item_parent. $position = 0; foreach ( $nav_menu['items'] as $nav_menu_item ) { $nav_menu_item_setting_id = sprintf( 'nav_menu_item[%d]', $placeholder_id-- ); if ( ! isset( $nav_menu_item['position'] ) ) { $nav_menu_item['position'] = $position++; } $nav_menu_item['nav_menu_term_id'] = $nav_menu_term_id; if ( isset( $nav_menu_item['object_id'] ) ) { if ( 'post_type' === $nav_menu_item['type'] && preg_match( '/^{{(?P<symbol>.+)}}$/', $nav_menu_item['object_id'], $matches ) && isset( $posts[ $matches['symbol'] ] ) ) { $nav_menu_item['object_id'] = $posts[ $matches['symbol'] ]['ID']; if ( empty( $nav_menu_item['title'] ) ) { $original_object = get_post( $nav_menu_item['object_id'] ); $nav_menu_item['title'] = $original_object->post_title; } } else { continue; } } else { $nav_menu_item['object_id'] = 0; } if ( empty( $changeset_data[ $nav_menu_item_setting_id ] ) || ! empty( $changeset_data[ $nav_menu_item_setting_id ]['starter_content'] ) ) { $this->set_post_value( $nav_menu_item_setting_id, $nav_menu_item ); $this->pending_starter_content_settings_ids[] = $nav_menu_item_setting_id; } } $setting_id = sprintf( 'nav_menu_locations[%s]', $nav_menu_location ); if ( empty( $changeset_data[ $setting_id ] ) || ! empty( $changeset_data[ $setting_id ]['starter_content'] ) ) { $this->set_post_value( $setting_id, $nav_menu_term_id ); $this->pending_starter_content_settings_ids[] = $setting_id; } } // Options. foreach ( $options as $name => $value ) { // Serialize the value to check for post symbols. $value = maybe_serialize( $value ); if ( is_serialized( $value ) ) { if ( preg_match( '/s:\d+:"{{(?P<symbol>.+)}}"/', $value, $matches ) ) { if ( isset( $posts[ $matches['symbol'] ] ) ) { $symbol_match = $posts[ $matches['symbol'] ]['ID']; } elseif ( isset( $attachment_ids[ $matches['symbol'] ] ) ) { $symbol_match = $attachment_ids[ $matches['symbol'] ]; } // If we have any symbol matches, update the values. if ( isset( $symbol_match ) ) { // Replace found string matches with post IDs. $value = str_replace( $matches[0], "i:{$symbol_match}", $value ); } else { continue; } } } elseif ( preg_match( '/^{{(?P<symbol>.+)}}$/', $value, $matches ) ) { if ( isset( $posts[ $matches['symbol'] ] ) ) { $value = $posts[ $matches['symbol'] ]['ID']; } elseif ( isset( $attachment_ids[ $matches['symbol'] ] ) ) { $value = $attachment_ids[ $matches['symbol'] ]; } else { continue; } } // Unserialize values after checking for post symbols, so they can be properly referenced. $value = maybe_unserialize( $value ); if ( empty( $changeset_data[ $name ] ) || ! empty( $changeset_data[ $name ]['starter_content'] ) ) { $this->set_post_value( $name, $value ); $this->pending_starter_content_settings_ids[] = $name; } } // Theme mods. foreach ( $theme_mods as $name => $value ) { // Serialize the value to check for post symbols. $value = maybe_serialize( $value ); // Check if value was serialized. if ( is_serialized( $value ) ) { if ( preg_match( '/s:\d+:"{{(?P<symbol>.+)}}"/', $value, $matches ) ) { if ( isset( $posts[ $matches['symbol'] ] ) ) { $symbol_match = $posts[ $matches['symbol'] ]['ID']; } elseif ( isset( $attachment_ids[ $matches['symbol'] ] ) ) { $symbol_match = $attachment_ids[ $matches['symbol'] ]; } // If we have any symbol matches, update the values. if ( isset( $symbol_match ) ) { // Replace found string matches with post IDs. $value = str_replace( $matches[0], "i:{$symbol_match}", $value ); } else { continue; } } } elseif ( preg_match( '/^{{(?P<symbol>.+)}}$/', $value, $matches ) ) { if ( isset( $posts[ $matches['symbol'] ] ) ) { $value = $posts[ $matches['symbol'] ]['ID']; } elseif ( isset( $attachment_ids[ $matches['symbol'] ] ) ) { $value = $attachment_ids[ $matches['symbol'] ]; } else { continue; } } // Unserialize values after checking for post symbols, so they can be properly referenced. $value = maybe_unserialize( $value ); // Handle header image as special case since setting has a legacy format. if ( 'header_image' === $name ) { $name = 'header_image_data'; $metadata = wp_get_attachment_metadata( $value ); if ( empty( $metadata ) ) { continue; } $value = array( 'attachment_id' => $value, 'url' => wp_get_attachment_url( $value ), 'height' => $metadata['height'], 'width' => $metadata['width'], ); } elseif ( 'background_image' === $name ) { $value = wp_get_attachment_url( $value ); } if ( empty( $changeset_data[ $name ] ) || ! empty( $changeset_data[ $name ]['starter_content'] ) ) { $this->set_post_value( $name, $value ); $this->pending_starter_content_settings_ids[] = $name; } } if ( ! empty( $this->pending_starter_content_settings_ids ) ) { if ( did_action( 'customize_register' ) ) { $this->_save_starter_content_changeset(); } else { add_action( 'customize_register', array( $this, '_save_starter_content_changeset' ), 1000 ); } } } /** * Prepares starter content attachments. * * Ensure that the attachments are valid and that they have slugs and file name/path. * * @since 4.7.0 * * @param array $attachments Attachments. * @return array Prepared attachments. */ protected function prepare_starter_content_attachments( $attachments ) { $prepared_attachments = array(); if ( empty( $attachments ) ) { return $prepared_attachments; } // Such is The WordPress Way. require_once ABSPATH . 'wp-admin/includes/file.php'; require_once ABSPATH . 'wp-admin/includes/media.php'; require_once ABSPATH . 'wp-admin/includes/image.php'; foreach ( $attachments as $symbol => $attachment ) { // A file is required and URLs to files are not currently allowed. if ( empty( $attachment['file'] ) || preg_match( '#^https?://$#', $attachment['file'] ) ) { continue; } $file_path = null; if ( file_exists( $attachment['file'] ) ) { $file_path = $attachment['file']; // Could be absolute path to file in plugin. } elseif ( is_child_theme() && file_exists( get_stylesheet_directory() . '/' . $attachment['file'] ) ) { $file_path = get_stylesheet_directory() . '/' . $attachment['file']; } elseif ( file_exists( get_template_directory() . '/' . $attachment['file'] ) ) { $file_path = get_template_directory() . '/' . $attachment['file']; } else { continue; } $file_name = wp_basename( $attachment['file'] ); // Skip file types that are not recognized. $checked_filetype = wp_check_filetype( $file_name ); if ( empty( $checked_filetype['type'] ) ) { continue; } // Ensure post_name is set since not automatically derived from post_title for new auto-draft posts. if ( empty( $attachment['post_name'] ) ) { if ( ! empty( $attachment['post_title'] ) ) { $attachment['post_name'] = sanitize_title( $attachment['post_title'] ); } else { $attachment['post_name'] = sanitize_title( preg_replace( '/\.\w+$/', '', $file_name ) ); } } $attachment['file_name'] = $file_name; $attachment['file_path'] = $file_path; $prepared_attachments[ $symbol ] = $attachment; } return $prepared_attachments; } /** * Saves starter content changeset. * * @since 4.7.0 */ public function _save_starter_content_changeset() { if ( empty( $this->pending_starter_content_settings_ids ) ) { return; } $this->save_changeset_post( array( 'data' => array_fill_keys( $this->pending_starter_content_settings_ids, array( 'starter_content' => true ) ), 'starter_content' => true, ) ); $this->saved_starter_content_changeset = true; $this->pending_starter_content_settings_ids = array(); } /** * Gets dirty pre-sanitized setting values in the current customized state. * * The returned array consists of a merge of three sources: * 1. If the theme is not currently active, then the base array is any stashed * theme mods that were modified previously but never published. * 2. The values from the current changeset, if it exists. * 3. If the user can customize, the values parsed from the incoming * `$_POST['customized']` JSON data. * 4. Any programmatically-set post values via `WP_Customize_Manager::set_post_value()`. * * The name "unsanitized_post_values" is a carry-over from when the customized * state was exclusively sourced from `$_POST['customized']`. Nevertheless, * the value returned will come from the current changeset post and from the * incoming post data. * * @since 4.1.1 * @since 4.7.0 Added `$args` parameter and merging with changeset values and stashed theme mods. * * @param array $args { * Args. * * @type bool $exclude_changeset Whether the changeset values should also be excluded. Defaults to false. * @type bool $exclude_post_data Whether the post input values should also be excluded. Defaults to false when lacking the customize capability. * } * @return array */ public function unsanitized_post_values( $args = array() ) { $args = array_merge( array( 'exclude_changeset' => false, 'exclude_post_data' => ! current_user_can( 'customize' ), ), $args ); $values = array(); // Let default values be from the stashed theme mods if doing a theme switch and if no changeset is present. if ( ! $this->is_theme_active() ) { $stashed_theme_mods = get_option( 'customize_stashed_theme_mods' ); $stylesheet = $this->get_stylesheet(); if ( isset( $stashed_theme_mods[ $stylesheet ] ) ) { $values = array_merge( $values, wp_list_pluck( $stashed_theme_mods[ $stylesheet ], 'value' ) ); } } if ( ! $args['exclude_changeset'] ) { foreach ( $this->changeset_data() as $setting_id => $setting_params ) { if ( ! array_key_exists( 'value', $setting_params ) ) { continue; } if ( isset( $setting_params['type'] ) && 'theme_mod' === $setting_params['type'] ) { // Ensure that theme mods values are only used if they were saved under the active theme. $namespace_pattern = '/^(?P<stylesheet>.+?)::(?P<setting_id>.+)$/'; if ( preg_match( $namespace_pattern, $setting_id, $matches ) && $this->get_stylesheet() === $matches['stylesheet'] ) { $values[ $matches['setting_id'] ] = $setting_params['value']; } } else { $values[ $setting_id ] = $setting_params['value']; } } } if ( ! $args['exclude_post_data'] ) { if ( ! isset( $this->_post_values ) ) { if ( isset( $_POST['customized'] ) ) { $post_values = json_decode( wp_unslash( $_POST['customized'] ), true ); } else { $post_values = array(); } if ( is_array( $post_values ) ) { $this->_post_values = $post_values; } else { $this->_post_values = array(); } } $values = array_merge( $values, $this->_post_values ); } return $values; } /** * Returns the sanitized value for a given setting from the current customized state. * * The name "post_value" is a carry-over from when the customized state was exclusively * sourced from `$_POST['customized']`. Nevertheless, the value returned will come * from the current changeset post and from the incoming post data. * * @since 3.4.0 * @since 4.1.1 Introduced the `$default_value` parameter. * @since 4.6.0 `$default_value` is now returned early when the setting post value is invalid. * * @see WP_REST_Server::dispatch() * @see WP_REST_Request::sanitize_params() * @see WP_REST_Request::has_valid_params() * * @param WP_Customize_Setting $setting A WP_Customize_Setting derived object. * @param mixed $default_value Value returned if `$setting` has no post value (added in 4.2.0) * or the post value is invalid (added in 4.6.0). * @return string|mixed Sanitized value or the `$default_value` provided. */ public function post_value( $setting, $default_value = null ) { $post_values = $this->unsanitized_post_values(); if ( ! array_key_exists( $setting->id, $post_values ) ) { return $default_value; } $value = $post_values[ $setting->id ]; $valid = $setting->validate( $value ); if ( is_wp_error( $valid ) ) { return $default_value; } $value = $setting->sanitize( $value ); if ( is_null( $value ) || is_wp_error( $value ) ) { return $default_value; } return $value; } /** * Overrides a setting's value in the current customized state. * * The name "post_value" is a carry-over from when the customized state was * exclusively sourced from `$_POST['customized']`. * * @since 4.2.0 * * @param string $setting_id ID for the WP_Customize_Setting instance. * @param mixed $value Post value. */ public function set_post_value( $setting_id, $value ) { $this->unsanitized_post_values(); // Populate _post_values from $_POST['customized']. $this->_post_values[ $setting_id ] = $value; /** * Announces when a specific setting's unsanitized post value has been set. * * Fires when the WP_Customize_Manager::set_post_value() method is called. * * The dynamic portion of the hook name, `$setting_id`, refers to the setting ID. * * @since 4.4.0 * * @param mixed $value Unsanitized setting post value. * @param WP_Customize_Manager $manager WP_Customize_Manager instance. */ do_action( "customize_post_value_set_{$setting_id}", $value, $this ); /** * Announces when any setting's unsanitized post value has been set. * * Fires when the WP_Customize_Manager::set_post_value() method is called. * * This is useful for `WP_Customize_Setting` instances to watch * in order to update a cached previewed value. * * @since 4.4.0 * * @param string $setting_id Setting ID. * @param mixed $value Unsanitized setting post value. * @param WP_Customize_Manager $manager WP_Customize_Manager instance. */ do_action( 'customize_post_value_set', $setting_id, $value, $this ); } /** * Prints JavaScript settings. * * @since 3.4.0 */ public function customize_preview_init() { /* * Now that Customizer previews are loaded into iframes via GET requests * and natural URLs with transaction UUIDs added, we need to ensure that * the responses are never cached by proxies. In practice, this will not * be needed if the user is logged-in anyway. But if anonymous access is * allowed then the auth cookies would not be sent and WordPress would * not send no-cache headers by default. */ if ( ! headers_sent() ) { nocache_headers(); header( 'X-Robots: noindex, nofollow, noarchive' ); header( 'X-Robots-Tag: noindex, nofollow, noarchive' ); } add_filter( 'wp_robots', 'wp_robots_no_robots' ); add_filter( 'wp_headers', array( $this, 'filter_iframe_security_headers' ) ); /* * If preview is being served inside the customizer preview iframe, and * if the user doesn't have customize capability, then it is assumed * that the user's session has expired and they need to re-authenticate. */ if ( $this->messenger_channel && ! current_user_can( 'customize' ) ) { $this->wp_die( -1, sprintf( /* translators: %s: customize_messenger_channel */ __( 'Unauthorized. You may remove the %s param to preview as frontend.' ), '<code>customize_messenger_channel<code>' ) ); return; } $this->prepare_controls(); add_filter( 'wp_redirect', array( $this, 'add_state_query_params' ) ); wp_enqueue_script( 'customize-preview' ); wp_enqueue_style( 'customize-preview' ); add_action( 'wp_head', array( $this, 'customize_preview_loading_style' ) ); add_action( 'wp_head', array( $this, 'remove_frameless_preview_messenger_channel' ) ); add_action( 'wp_footer', array( $this, 'customize_preview_settings' ), 20 ); add_filter( 'get_edit_post_link', '__return_empty_string' ); /** * Fires once the Customizer preview has initialized and JavaScript * settings have been printed. * * @since 3.4.0 * * @param WP_Customize_Manager $manager WP_Customize_Manager instance. */ do_action( 'customize_preview_init', $this ); } /** * Filters the X-Frame-Options and Content-Security-Policy headers to ensure frontend can load in customizer. * * @since 4.7.0 * * @param array $headers Headers. * @return array Headers. */ public function filter_iframe_security_headers( $headers ) { $headers['X-Frame-Options'] = 'SAMEORIGIN'; $headers['Content-Security-Policy'] = "frame-ancestors 'self'"; return $headers; } /** * Adds customize state query params to a given URL if preview is allowed. * * @since 4.7.0 * * @see wp_redirect() * @see WP_Customize_Manager::get_allowed_url() * * @param string $url URL. * @return string URL. */ public function add_state_query_params( $url ) { $parsed_original_url = wp_parse_url( $url ); $is_allowed = false; foreach ( $this->get_allowed_urls() as $allowed_url ) { $parsed_allowed_url = wp_parse_url( $allowed_url ); $is_allowed = ( $parsed_allowed_url['scheme'] === $parsed_original_url['scheme'] && $parsed_allowed_url['host'] === $parsed_original_url['host'] && str_starts_with( $parsed_original_url['path'], $parsed_allowed_url['path'] ) ); if ( $is_allowed ) { break; } } if ( $is_allowed ) { $query_params = array( 'customize_changeset_uuid' => $this->changeset_uuid(), ); if ( ! $this->is_theme_active() ) { $query_params['customize_theme'] = $this->get_stylesheet(); } if ( $this->messenger_channel ) { $query_params['customize_messenger_channel'] = $this->messenger_channel; } $url = add_query_arg( $query_params, $url ); } return $url; } /** * Prevents sending a 404 status when returning the response for the customize * preview, since it causes the jQuery Ajax to fail. Send 200 instead. * * @since 4.0.0 * @deprecated 4.7.0 */ public function customize_preview_override_404_status() { _deprecated_function( __METHOD__, '4.7.0' ); } /** * Prints base element for preview frame. * * @since 3.4.0 * @deprecated 4.7.0 */ public function customize_preview_base() { _deprecated_function( __METHOD__, '4.7.0' ); } /** * Prints a workaround to handle HTML5 tags in IE < 9. * * @since 3.4.0 * @deprecated 4.7.0 Customizer no longer supports IE8, so all supported browsers recognize HTML5. */ public function customize_preview_html5() { _deprecated_function( __FUNCTION__, '4.7.0' ); } /** * Prints CSS for loading indicators for the Customizer preview. * * @since 4.2.0 */ public function customize_preview_loading_style() { ?> <style> body.wp-customizer-unloading { opacity: 0.25; cursor: progress !important; -webkit-transition: opacity 0.5s; transition: opacity 0.5s; } body.wp-customizer-unloading * { pointer-events: none !important; } form.customize-unpreviewable, form.customize-unpreviewable input, form.customize-unpreviewable select, form.customize-unpreviewable button, a.customize-unpreviewable, area.customize-unpreviewable { cursor: not-allowed !important; } </style> <?php } /** * Removes customize_messenger_channel query parameter from the preview window when it is not in an iframe. * * This ensures that the admin bar will be shown. It also ensures that link navigation will * work as expected since the parent frame is not being sent the URL to navigate to. * * @since 4.7.0 */ public function remove_frameless_preview_messenger_channel() { if ( ! $this->messenger_channel ) { return; } ob_start(); ?> <script> ( function() { if ( parent !== window ) { return; } const url = new URL( location.href ); if ( url.searchParams.has( 'customize_messenger_channel' ) ) { url.searchParams.delete( 'customize_messenger_channel' ); location.replace( url ); } } )(); </script> <?php wp_print_inline_script_tag( wp_remove_surrounding_empty_script_tags( ob_get_clean() ) . "\n//# sourceURL=" . rawurlencode( __METHOD__ ) ); } /** * Prints JavaScript settings for preview frame. * * @since 3.4.0 */ public function customize_preview_settings() { $post_values = $this->unsanitized_post_values( array( 'exclude_changeset' => true ) ); $setting_validities = $this->validate_setting_values( $post_values ); $exported_setting_validities = array_map( array( $this, 'prepare_setting_validity_for_js' ), $setting_validities ); // Note that the REQUEST_URI is not passed into home_url() since this breaks subdirectory installations. $self_url = empty( $_SERVER['REQUEST_URI'] ) ? home_url( '/' ) : sanitize_url( wp_unslash( $_SERVER['REQUEST_URI'] ) ); $state_query_params = array( 'customize_theme', 'customize_changeset_uuid', 'customize_messenger_channel', ); $self_url = remove_query_arg( $state_query_params, $self_url ); $allowed_urls = $this->get_allowed_urls(); $allowed_hosts = array(); foreach ( $allowed_urls as $allowed_url ) { $parsed = wp_parse_url( $allowed_url ); if ( empty( $parsed['host'] ) ) { continue; } $host = $parsed['host']; if ( ! empty( $parsed['port'] ) ) { $host .= ':' . $parsed['port']; } $allowed_hosts[] = $host; } $switched_locale = switch_to_user_locale( get_current_user_id() ); $l10n = array( 'shiftClickToEdit' => __( 'Shift-click to edit this element.' ), 'linkUnpreviewable' => __( 'This link is not live-previewable.' ), 'formUnpreviewable' => __( 'This form is not live-previewable.' ), ); if ( $switched_locale ) { restore_previous_locale(); } $settings = array( 'changeset' => array( 'uuid' => $this->changeset_uuid(), 'autosaved' => $this->autosaved(), ), 'timeouts' => array( 'selectiveRefresh' => 250, 'keepAliveSend' => 1000, ), 'theme' => array( 'stylesheet' => $this->get_stylesheet(), 'active' => $this->is_theme_active(), 'isBlockTheme' => wp_is_block_theme(), ), 'url' => array( 'self' => $self_url, 'allowed' => array_map( 'sanitize_url', $this->get_allowed_urls() ), 'allowedHosts' => array_unique( $allowed_hosts ), 'isCrossDomain' => $this->is_cross_domain(), ), 'channel' => $this->messenger_channel, 'activePanels' => array(), 'activeSections' => array(), 'activeControls' => array(), 'settingValidities' => $exported_setting_validities, 'nonce' => current_user_can( 'customize' ) ? $this->get_nonces() : array(), 'l10n' => $l10n, '_dirty' => array_keys( $post_values ), ); foreach ( $this->panels as $panel_id => $panel ) { if ( $panel->check_capabilities() ) { $settings['activePanels'][ $panel_id ] = $panel->active(); foreach ( $panel->sections as $section_id => $section ) { if ( $section->check_capabilities() ) { $settings['activeSections'][ $section_id ] = $section->active(); } } } } foreach ( $this->sections as $id => $section ) { if ( $section->check_capabilities() ) { $settings['activeSections'][ $id ] = $section->active(); } } foreach ( $this->controls as $id => $control ) { if ( $control->check_capabilities() ) { $settings['activeControls'][ $id ] = $control->active(); } } ob_start(); ?> <script> var _wpCustomizeSettings = <?php echo wp_json_encode( $settings, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ); ?>; _wpCustomizeSettings.values = {}; (function( v ) { <?php /* * Serialize settings separately from the initial _wpCustomizeSettings * serialization in order to avoid a peak memory usage spike. * @todo We may not even need to export the values at all since the pane syncs them anyway. */ foreach ( $this->settings as $id => $setting ) { if ( $setting->check_capabilities() ) { printf( "v[%s] = %s;\n", wp_json_encode( $id, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ), wp_json_encode( $setting->js_value(), JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ) ); } } ?> })( _wpCustomizeSettings.values ); </script> <?php wp_print_inline_script_tag( wp_remove_surrounding_empty_script_tags( ob_get_clean() ) . "\n//# sourceURL=" . rawurlencode( __METHOD__ ) ); } /** * Prints a signature so we can ensure the Customizer was properly executed. * * @since 3.4.0 * @deprecated 4.7.0 */ public function customize_preview_signature() { _deprecated_function( __METHOD__, '4.7.0' ); } /** * Removes the signature in case we experience a case where the Customizer was not properly executed. * * @since 3.4.0 * @deprecated 4.7.0 * * @param callable|null $callback Optional. Value passed through for {@see 'wp_die_handler'} filter. * Default null. * @return callable|null Value passed through for {@see 'wp_die_handler'} filter. */ public function remove_preview_signature( $callback = null ) { _deprecated_function( __METHOD__, '4.7.0' ); return $callback; } /** * Determines whether it is a theme preview or not. * * @since 3.4.0 * * @return bool True if it's a preview, false if not. */ public function is_preview() { return (bool) $this->previewing; } /** * Retrieves the template name of the previewed theme. * * @since 3.4.0 * * @return string Template name. */ public function get_template() { return $this->theme()->get_template(); } /** * Retrieves the stylesheet name of the previewed theme. * * @since 3.4.0 * * @return string Stylesheet name. */ public function get_stylesheet() { return $this->theme()->get_stylesheet(); } /** * Retrieves the template root of the previewed theme. * * @since 3.4.0 * * @return string Theme root. */ public function get_template_root() { return get_raw_theme_root( $this->get_template(), true ); } /** * Retrieves the stylesheet root of the previewed theme. * * @since 3.4.0 * * @return string Theme root. */ public function get_stylesheet_root() { return get_raw_theme_root( $this->get_stylesheet(), true ); } /** * Filters the active theme and return the name of the previewed theme. * * @since 3.4.0 * * @param mixed $current_theme {@internal Parameter is not used} * @return string Theme name. */ public function current_theme( $current_theme ) { return $this->theme()->display( 'Name' ); } /** * Validates setting values. * * Validation is skipped for unregistered settings or for values that are * already null since they will be skipped anyway. Sanitization is applied * to values that pass validation, and values that become null or `WP_Error` * after sanitizing are marked invalid. * * @since 4.6.0 * * @see WP_REST_Request::has_valid_params() * @see WP_Customize_Setting::validate() * * @param array $setting_values Mapping of setting IDs to values to validate and sanitize. * @param array $options { * Options. * * @type bool $validate_existence Whether a setting's existence will be checked. * @type bool $validate_capability Whether the setting capability will be checked. * } * @return array Mapping of setting IDs to return value of validate method calls, either `true` or `WP_Error`. */ public function validate_setting_values( $setting_values, $options = array() ) { $options = wp_parse_args( $options, array( 'validate_capability' => false, 'validate_existence' => false, ) ); $validities = array(); foreach ( $setting_values as $setting_id => $unsanitized_value ) { $setting = $this->get_setting( $setting_id ); if ( ! $setting ) { if ( $options['validate_existence'] ) { $validities[ $setting_id ] = new WP_Error( 'unrecognized', __( 'Setting does not exist or is unrecognized.' ) ); } continue; } if ( $options['validate_capability'] && ! current_user_can( $setting->capability ) ) { $validity = new WP_Error( 'unauthorized', __( 'Unauthorized to modify setting due to capability.' ) ); } else { if ( is_null( $unsanitized_value ) ) { continue; } $validity = $setting->validate( $unsanitized_value ); } if ( ! is_wp_error( $validity ) ) { /** This filter is documented in wp-includes/class-wp-customize-setting.php */ $late_validity = apply_filters( "customize_validate_{$setting->id}", new WP_Error(), $unsanitized_value, $setting ); if ( is_wp_error( $late_validity ) && $late_validity->has_errors() ) { $validity = $late_validity; } } if ( ! is_wp_error( $validity ) ) { $value = $setting->sanitize( $unsanitized_value ); if ( is_null( $value ) ) { $validity = false; } elseif ( is_wp_error( $value ) ) { $validity = $value; } } if ( false === $validity ) { $validity = new WP_Error( 'invalid_value', __( 'Invalid value.' ) ); } $validities[ $setting_id ] = $validity; } return $validities; } /** * Prepares setting validity for exporting to the client (JS). * * Converts `WP_Error` instance into array suitable for passing into the * `wp.customize.Notification` JS model. * * @since 4.6.0 * * @param true|WP_Error $validity Setting validity. * @return true|array If `$validity` was a WP_Error, the error codes will be array-mapped * to their respective `message` and `data` to pass into the * `wp.customize.Notification` JS model. */ public function prepare_setting_validity_for_js( $validity ) { if ( is_wp_error( $validity ) ) { $notification = array(); foreach ( $validity->errors as $error_code => $error_messages ) { $notification[ $error_code ] = array( 'message' => implode( ' ', $error_messages ), 'data' => $validity->get_error_data( $error_code ), ); } return $notification; } else { return true; } } /** * Handles customize_save WP Ajax request to save/update a changeset. * * @since 3.4.0 * @since 4.7.0 The semantics of this method have changed to update a changeset, optionally to also change the status and other attributes. */ public function save() { if ( ! is_user_logged_in() ) { wp_send_json_error( 'unauthenticated' ); } if ( ! $this->is_preview() ) { wp_send_json_error( 'not_preview' ); } $action = 'save-customize_' . $this->get_stylesheet(); if ( ! check_ajax_referer( $action, 'nonce', false ) ) { wp_send_json_error( 'invalid_nonce' ); } $changeset_post_id = $this->changeset_post_id(); $is_new_changeset = empty( $changeset_post_id ); if ( $is_new_changeset ) { if ( ! current_user_can( get_post_type_object( 'customize_changeset' )->cap->create_posts ) ) { wp_send_json_error( 'cannot_create_changeset_post' ); } } else { if ( ! current_user_can( get_post_type_object( 'customize_changeset' )->cap->edit_post, $changeset_post_id ) ) { wp_send_json_error( 'cannot_edit_changeset_post' ); } } if ( ! empty( $_POST['customize_changeset_data'] ) ) { $input_changeset_data = json_decode( wp_unslash( $_POST['customize_changeset_data'] ), true ); if ( ! is_array( $input_changeset_data ) ) { wp_send_json_error( 'invalid_customize_changeset_data' ); } } else { $input_changeset_data = array(); } // Validate title. $changeset_title = null; if ( isset( $_POST['customize_changeset_title'] ) ) { $changeset_title = sanitize_text_field( wp_unslash( $_POST['customize_changeset_title'] ) ); } // Validate changeset status param. $is_publish = null; $changeset_status = null; if ( isset( $_POST['customize_changeset_status'] ) ) { $changeset_status = wp_unslash( $_POST['customize_changeset_status'] ); if ( ! get_post_status_object( $changeset_status ) || ! in_array( $changeset_status, array( 'draft', 'pending', 'publish', 'future' ), true ) ) { wp_send_json_error( 'bad_customize_changeset_status', 400 ); } $is_publish = ( 'publish' === $changeset_status || 'future' === $changeset_status ); if ( $is_publish && ! current_user_can( get_post_type_object( 'customize_changeset' )->cap->publish_posts ) ) { wp_send_json_error( 'changeset_publish_unauthorized', 403 ); } } /* * Validate changeset date param. Date is assumed to be in local time for * the WP if in MySQL format (YYYY-MM-DD HH:MM:SS). Otherwise, the date * is parsed with strtotime() so that ISO date format may be supplied * or a string like "+10 minutes". */ $changeset_date_gmt = null; if ( isset( $_POST['customize_changeset_date'] ) ) { $changeset_date = wp_unslash( $_POST['customize_changeset_date'] ); if ( preg_match( '/^\d\d\d\d-\d\d-\d\d \d\d:\d\d:\d\d$/', $changeset_date ) ) { $mm = substr( $changeset_date, 5, 2 ); $jj = substr( $changeset_date, 8, 2 ); $aa = substr( $changeset_date, 0, 4 ); $valid_date = wp_checkdate( $mm, $jj, $aa, $changeset_date ); if ( ! $valid_date ) { wp_send_json_error( 'bad_customize_changeset_date', 400 ); } $changeset_date_gmt = get_gmt_from_date( $changeset_date ); } else { $timestamp = strtotime( $changeset_date ); if ( ! $timestamp ) { wp_send_json_error( 'bad_customize_changeset_date', 400 ); } $changeset_date_gmt = gmdate( 'Y-m-d H:i:s', $timestamp ); } } $lock_user_id = null; $autosave = ! empty( $_POST['customize_changeset_autosave'] ); if ( ! $is_new_changeset ) { $lock_user_id = wp_check_post_lock( $this->changeset_post_id() ); } // Force request to autosave when changeset is locked. if ( $lock_user_id && ! $autosave ) { $autosave = true; $changeset_status = null; $changeset_date_gmt = null; } if ( $autosave && ! defined( 'DOING_AUTOSAVE' ) ) { // Back-compat. define( 'DOING_AUTOSAVE', true ); } $autosaved = false; $r = $this->save_changeset_post( array( 'status' => $changeset_status, 'title' => $changeset_title, 'date_gmt' => $changeset_date_gmt, 'data' => $input_changeset_data, 'autosave' => $autosave, ) ); if ( $autosave && ! is_wp_error( $r ) ) { $autosaved = true; } // If the changeset was locked and an autosave request wasn't itself an error, then now explicitly return with a failure. if ( $lock_user_id && ! is_wp_error( $r ) ) { $r = new WP_Error( 'changeset_locked', __( 'Changeset is being edited by other user.' ), array( 'lock_user' => $this->get_lock_user_data( $lock_user_id ), ) ); } if ( is_wp_error( $r ) ) { $response = array( 'message' => $r->get_error_message(), 'code' => $r->get_error_code(), ); if ( is_array( $r->get_error_data() ) ) { $response = array_merge( $response, $r->get_error_data() ); } else { $response['data'] = $r->get_error_data(); } } else { $response = $r; $changeset_post = get_post( $this->changeset_post_id() ); // Dismiss all other auto-draft changeset posts for this user (they serve like autosave revisions), as there should only be one. if ( $is_new_changeset ) { $this->dismiss_user_auto_draft_changesets(); } // Note that if the changeset status was publish, then it will get set to Trash if revisions are not supported. $response['changeset_status'] = $changeset_post->post_status; if ( $is_publish && 'trash' === $response['changeset_status'] ) { $response['changeset_status'] = 'publish'; } if ( 'publish' !== $response['changeset_status'] ) { $this->set_changeset_lock( $changeset_post->ID ); } if ( 'future' === $response['changeset_status'] ) { $response['changeset_date'] = $changeset_post->post_date; } if ( 'publish' === $response['changeset_status'] || 'trash' === $response['changeset_status'] ) { $response['next_changeset_uuid'] = wp_generate_uuid4(); } } if ( $autosave ) { $response['autosaved'] = $autosaved; } if ( isset( $response['setting_validities'] ) ) { $response['setting_validities'] = array_map( array( $this, 'prepare_setting_validity_for_js' ), $response['setting_validities'] ); } /** * Filters response data for a successful customize_save Ajax request. * * This filter does not apply if there was a nonce or authentication failure. * * @since 4.2.0 * * @param array $response Additional information passed back to the 'saved' * event on `wp.customize`. * @param WP_Customize_Manager $manager WP_Customize_Manager instance. */ $response = apply_filters( 'customize_save_response', $response, $this ); if ( is_wp_error( $r ) ) { wp_send_json_error( $response ); } else { wp_send_json_success( $response ); } } /** * Saves the post for the loaded changeset. * * @since 4.7.0 * * @param array $args { * Args for changeset post. * * @type array $data Optional additional changeset data. Values will be merged on top of any existing post values. * @type string $status Post status. Optional. If supplied, the save will be transactional and a post revision will be allowed. * @type string $title Post title. Optional. * @type string $date_gmt Date in GMT. Optional. * @type int $user_id ID for user who is saving the changeset. Optional, defaults to the current user ID. * @type bool $starter_content Whether the data is starter content. If false (default), then $starter_content will be cleared for any $data being saved. * @type bool $autosave Whether this is a request to create an autosave revision. * } * * @return array|WP_Error Returns array on success and WP_Error with array data on error. */ public function save_changeset_post( $args = array() ) { $args = array_merge( array( 'status' => null, 'title' => null, 'data' => array(), 'date_gmt' => null, 'user_id' => get_current_user_id(), 'starter_content' => false, 'autosave' => false, ), $args ); $changeset_post_id = $this->changeset_post_id(); $existing_changeset_data = array(); if ( $changeset_post_id ) { $existing_status = get_post_status( $changeset_post_id ); if ( 'publish' === $existing_status || 'trash' === $existing_status ) { return new WP_Error( 'changeset_already_published', __( 'The previous set of changes has already been published. Please try saving your current set of changes again.' ), array( 'next_changeset_uuid' => wp_generate_uuid4(), ) ); } $existing_changeset_data = $this->get_changeset_post_data( $changeset_post_id ); if ( is_wp_error( $existing_changeset_data ) ) { return $existing_changeset_data; } } // Fail if attempting to publish but publish hook is missing. if ( 'publish' === $args['status'] && false === has_action( 'transition_post_status', '_wp_customize_publish_changeset' ) ) { return new WP_Error( 'missing_publish_callback' ); } // Validate date. $now = gmdate( 'Y-m-d H:i:59' ); if ( $args['date_gmt'] ) { $is_future_dated = ( mysql2date( 'U', $args['date_gmt'], false ) > mysql2date( 'U', $now, false ) ); if ( ! $is_future_dated ) { return new WP_Error( 'not_future_date', __( 'You must supply a future date to schedule.' ) ); // Only future dates are allowed. } if ( ! $this->is_theme_active() && ( 'future' === $args['status'] || $is_future_dated ) ) { return new WP_Error( 'cannot_schedule_theme_switches' ); // This should be allowed in the future, when theme is a regular setting. } $will_remain_auto_draft = ( ! $args['status'] && ( ! $changeset_post_id || 'auto-draft' === get_post_status( $changeset_post_id ) ) ); if ( $will_remain_auto_draft ) { return new WP_Error( 'cannot_supply_date_for_auto_draft_changeset' ); } } elseif ( $changeset_post_id && 'future' === $args['status'] ) { // Fail if the new status is future but the existing post's date is not in the future. $changeset_post = get_post( $changeset_post_id ); if ( mysql2date( 'U', $changeset_post->post_date_gmt, false ) <= mysql2date( 'U', $now, false ) ) { return new WP_Error( 'not_future_date', __( 'You must supply a future date to schedule.' ) ); } } if ( ! empty( $is_future_dated ) && 'publish' === $args['status'] ) { $args['status'] = 'future'; } // Validate autosave param. See _wp_post_revision_fields() for why these fields are disallowed. if ( $args['autosave'] ) { if ( $args['date_gmt'] ) { return new WP_Error( 'illegal_autosave_with_date_gmt' ); } elseif ( $args['status'] ) { return new WP_Error( 'illegal_autosave_with_status' ); } elseif ( $args['user_id'] && get_current_user_id() !== $args['user_id'] ) { return new WP_Error( 'illegal_autosave_with_non_current_user' ); } } // The request was made via wp.customize.previewer.save(). $update_transactionally = (bool) $args['status']; $allow_revision = (bool) $args['status']; // Amend post values with any supplied data. foreach ( $args['data'] as $setting_id => $setting_params ) { if ( is_array( $setting_params ) && array_key_exists( 'value', $setting_params ) ) { $this->set_post_value( $setting_id, $setting_params['value'] ); // Add to post values so that they can be validated and sanitized. } } // Note that in addition to post data, this will include any stashed theme mods. $post_values = $this->unsanitized_post_values( array( 'exclude_changeset' => true, 'exclude_post_data' => false, ) ); $this->add_dynamic_settings( array_keys( $post_values ) ); // Ensure settings get created even if they lack an input value. /* * Get list of IDs for settings that have values different from what is currently * saved in the changeset. By skipping any values that are already the same, the * subset of changed settings can be passed into validate_setting_values to prevent * an underprivileged modifying a single setting for which they have the capability * from being blocked from saving. This also prevents a user from touching of the * previous saved settings and overriding the associated user_id if they made no change. */ $changed_setting_ids = array(); foreach ( $post_values as $setting_id => $setting_value ) { $setting = $this->get_setting( $setting_id ); if ( $setting && 'theme_mod' === $setting->type ) { $prefixed_setting_id = $this->get_stylesheet() . '::' . $setting->id; } else { $prefixed_setting_id = $setting_id; } $is_value_changed = ( ! isset( $existing_changeset_data[ $prefixed_setting_id ] ) || ! array_key_exists( 'value', $existing_changeset_data[ $prefixed_setting_id ] ) || $existing_changeset_data[ $prefixed_setting_id ]['value'] !== $setting_value ); if ( $is_value_changed ) { $changed_setting_ids[] = $setting_id; } } /** * Fires before save validation happens. * * Plugins can add just-in-time {@see 'customize_validate_{$this->ID}'} filters * at this point to catch any settings registered after `customize_register`. * The dynamic portion of the hook name, `$this->ID` refers to the setting ID. * * @since 4.6.0 * * @param WP_Customize_Manager $manager WP_Customize_Manager instance. */ do_action( 'customize_save_validation_before', $this ); // Validate settings. $validated_values = array_merge( array_fill_keys( array_keys( $args['data'] ), null ), // Make sure existence/capability checks are done on value-less setting updates. $post_values ); $setting_validities = $this->validate_setting_values( $validated_values, array( 'validate_capability' => true, 'validate_existence' => true, ) ); $invalid_setting_count = count( array_filter( $setting_validities, 'is_wp_error' ) ); /* * Short-circuit if there are invalid settings the update is transactional. * A changeset update is transactional when a status is supplied in the request. */ if ( $update_transactionally && $invalid_setting_count > 0 ) { $response = array( 'setting_validities' => $setting_validities, /* translators: %s: Number of invalid settings. */ 'message' => sprintf( _n( 'Unable to save due to %s invalid setting.', 'Unable to save due to %s invalid settings.', $invalid_setting_count ), number_format_i18n( $invalid_setting_count ) ), ); return new WP_Error( 'transaction_fail', '', $response ); } // Obtain/merge data for changeset. $original_changeset_data = $this->get_changeset_post_data( $changeset_post_id ); $data = $original_changeset_data; if ( is_wp_error( $data ) ) { $data = array(); } // Ensure that all post values are included in the changeset data. foreach ( $post_values as $setting_id => $post_value ) { if ( ! isset( $args['data'][ $setting_id ] ) ) { $args['data'][ $setting_id ] = array(); } if ( ! isset( $args['data'][ $setting_id ]['value'] ) ) { $args['data'][ $setting_id ]['value'] = $post_value; } } foreach ( $args['data'] as $setting_id => $setting_params ) { $setting = $this->get_setting( $setting_id ); if ( ! $setting || ! $setting->check_capabilities() ) { continue; } // Skip updating changeset for invalid setting values. if ( isset( $setting_validities[ $setting_id ] ) && is_wp_error( $setting_validities[ $setting_id ] ) ) { continue; } $changeset_setting_id = $setting_id; if ( 'theme_mod' === $setting->type ) { $changeset_setting_id = sprintf( '%s::%s', $this->get_stylesheet(), $setting_id ); } if ( null === $setting_params ) { // Remove setting from changeset entirely. unset( $data[ $changeset_setting_id ] ); } else { if ( ! isset( $data[ $changeset_setting_id ] ) ) { $data[ $changeset_setting_id ] = array(); } // Merge any additional setting params that have been supplied with the existing params. $merged_setting_params = array_merge( $data[ $changeset_setting_id ], $setting_params ); // Skip updating setting params if unchanged (ensuring the user_id is not overwritten). if ( $data[ $changeset_setting_id ] === $merged_setting_params ) { continue; } $data[ $changeset_setting_id ] = array_merge( $merged_setting_params, array( 'type' => $setting->type, 'user_id' => $args['user_id'], 'date_modified_gmt' => current_time( 'mysql', true ), ) ); // Clear starter_content flag in data if changeset is not explicitly being updated for starter content. if ( empty( $args['starter_content'] ) ) { unset( $data[ $changeset_setting_id ]['starter_content'] ); } } } $filter_context = array( 'uuid' => $this->changeset_uuid(), 'title' => $args['title'], 'status' => $args['status'], 'date_gmt' => $args['date_gmt'], 'post_id' => $changeset_post_id, 'previous_data' => is_wp_error( $original_changeset_data ) ? array() : $original_changeset_data, 'manager' => $this, ); /** * Filters the settings' data that will be persisted into the changeset. * * Plugins may amend additional data (such as additional meta for settings) into the changeset with this filter. * * @since 4.7.0 * * @param array $data Updated changeset data, mapping setting IDs to arrays containing a $value item and optionally other metadata. * @param array $context { * Filter context. * * @type string $uuid Changeset UUID. * @type string $title Requested title for the changeset post. * @type string $status Requested status for the changeset post. * @type string $date_gmt Requested date for the changeset post in MySQL format and GMT timezone. * @type int|false $post_id Post ID for the changeset, or false if it doesn't exist yet. * @type array $previous_data Previous data contained in the changeset. * @type WP_Customize_Manager $manager Manager instance. * } */ $data = apply_filters( 'customize_changeset_save_data', $data, $filter_context ); // Switch theme if publishing changes now. if ( 'publish' === $args['status'] && ! $this->is_theme_active() ) { // Temporarily stop previewing the theme to allow switch_themes() to operate properly. $this->stop_previewing_theme(); switch_theme( $this->get_stylesheet() ); update_option( 'theme_switched_via_customizer', true ); $this->start_previewing_theme(); } // Gather the data for wp_insert_post()/wp_update_post(). $post_array = array( // JSON_UNESCAPED_SLASHES is only to improve readability as slashes needn't be escaped in storage. 'post_content' => wp_json_encode( $data, JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT ), ); if ( $args['title'] ) { $post_array['post_title'] = $args['title']; } if ( $changeset_post_id ) { $post_array['ID'] = $changeset_post_id; } else { $post_array['post_type'] = 'customize_changeset'; $post_array['post_name'] = $this->changeset_uuid(); $post_array['post_status'] = 'auto-draft'; } if ( $args['status'] ) { $post_array['post_status'] = $args['status']; } // Reset post date to now if we are publishing, otherwise pass post_date_gmt and translate for post_date. if ( 'publish' === $args['status'] ) { $post_array['post_date_gmt'] = '0000-00-00 00:00:00'; $post_array['post_date'] = '0000-00-00 00:00:00'; } elseif ( $args['date_gmt'] ) { $post_array['post_date_gmt'] = $args['date_gmt']; $post_array['post_date'] = get_date_from_gmt( $args['date_gmt'] ); } elseif ( $changeset_post_id && 'auto-draft' === get_post_status( $changeset_post_id ) ) { /* * Keep bumping the date for the auto-draft whenever it is modified; * this extends its life, preserving it from garbage-collection via * wp_delete_auto_drafts(). */ $post_array['post_date'] = current_time( 'mysql' ); $post_array['post_date_gmt'] = ''; } $this->store_changeset_revision = $allow_revision; add_filter( 'wp_save_post_revision_post_has_changed', array( $this, '_filter_revision_post_has_changed' ), 5, 3 ); /* * Update the changeset post. The publish_customize_changeset action will cause the settings in the * changeset to be saved via WP_Customize_Setting::save(). Updating a post with publish status will * trigger WP_Customize_Manager::publish_changeset_values(). */ add_filter( 'wp_insert_post_data', array( $this, 'preserve_insert_changeset_post_content' ), 5, 3 ); if ( $changeset_post_id ) { if ( $args['autosave'] && 'auto-draft' !== get_post_status( $changeset_post_id ) ) { // See _wp_translate_postdata() for why this is required as it will use the edit_post meta capability. add_filter( 'map_meta_cap', array( $this, 'grant_edit_post_capability_for_changeset' ), 10, 4 ); $post_array['post_ID'] = $post_array['ID']; $post_array['post_type'] = 'customize_changeset'; $r = wp_create_post_autosave( wp_slash( $post_array ) ); remove_filter( 'map_meta_cap', array( $this, 'grant_edit_post_capability_for_changeset' ), 10 ); } else { $post_array['edit_date'] = true; // Prevent date clearing. $r = wp_update_post( wp_slash( $post_array ), true ); // Delete autosave revision for user when the changeset is updated. if ( ! empty( $args['user_id'] ) ) { $autosave_draft = wp_get_post_autosave( $changeset_post_id, $args['user_id'] ); if ( $autosave_draft ) { wp_delete_post( $autosave_draft->ID, true ); } } } } else { $r = wp_insert_post( wp_slash( $post_array ), true ); if ( ! is_wp_error( $r ) ) { $this->_changeset_post_id = $r; // Update cached post ID for the loaded changeset. } } remove_filter( 'wp_insert_post_data', array( $this, 'preserve_insert_changeset_post_content' ), 5 ); $this->_changeset_data = null; // Reset so WP_Customize_Manager::changeset_data() will re-populate with updated contents. remove_filter( 'wp_save_post_revision_post_has_changed', array( $this, '_filter_revision_post_has_changed' ) ); $response = array( 'setting_validities' => $setting_validities, ); if ( is_wp_error( $r ) ) { $response['changeset_post_save_failure'] = $r->get_error_code(); return new WP_Error( 'changeset_post_save_failure', '', $response ); } return $response; } /** * Preserves the initial JSON post_content passed to save into the post. * * This is needed to prevent KSES and other {@see 'content_save_pre'} filters * from corrupting JSON data. * * Note that WP_Customize_Manager::validate_setting_values() have already * run on the setting values being serialized as JSON into the post content * so it is pre-sanitized. * * Also, the sanitization logic is re-run through the respective * WP_Customize_Setting::sanitize() method when being read out of the * changeset, via WP_Customize_Manager::post_value(), and this sanitized * value will also be sent into WP_Customize_Setting::update() for * persisting to the DB. * * Multiple users can collaborate on a single changeset, where one user may * have the unfiltered_html capability but another may not. A user with * unfiltered_html may add a script tag to some field which needs to be kept * intact even when another user updates the changeset to modify another field * when they do not have unfiltered_html. * * @since 5.4.1 * * @param array $data An array of slashed and processed post data. * @param array $postarr An array of sanitized (and slashed) but otherwise unmodified post data. * @param array $unsanitized_postarr An array of slashed yet *unsanitized* and unprocessed post data as originally passed to wp_insert_post(). * @return array Filtered post data. */ public function preserve_insert_changeset_post_content( $data, $postarr, $unsanitized_postarr ) { if ( isset( $data['post_type'] ) && isset( $unsanitized_postarr['post_content'] ) && 'customize_changeset' === $data['post_type'] || ( 'revision' === $data['post_type'] && ! empty( $data['post_parent'] ) && 'customize_changeset' === get_post_type( $data['post_parent'] ) ) ) { $data['post_content'] = $unsanitized_postarr['post_content']; } return $data; } /** * Trashes or deletes a changeset post. * * The following re-formulates the logic from `wp_trash_post()` as done in * `wp_publish_post()`. The reason for bypassing `wp_trash_post()` is that it * will mutate the the `post_content` and the `post_name` when they should be * untouched. * * @since 4.9.0 * * @see wp_trash_post() * @global wpdb $wpdb WordPress database abstraction object. * * @param int|WP_Post $post The changeset post. * @return mixed A WP_Post object for the trashed post or an empty value on failure. */ public function trash_changeset_post( $post ) { global $wpdb; $post = get_post( $post ); if ( ! ( $post instanceof WP_Post ) ) { return $post; } $post_id = $post->ID; if ( ! EMPTY_TRASH_DAYS ) { return wp_delete_post( $post_id, true ); } if ( 'trash' === get_post_status( $post ) ) { return false; } $previous_status = $post->post_status; /** This filter is documented in wp-includes/post.php */ $check = apply_filters( 'pre_trash_post', null, $post, $previous_status ); if ( null !== $check ) { return $check; } /** This action is documented in wp-includes/post.php */ do_action( 'wp_trash_post', $post_id, $previous_status ); add_post_meta( $post_id, '_wp_trash_meta_status', $previous_status ); add_post_meta( $post_id, '_wp_trash_meta_time', time() ); $new_status = 'trash'; $wpdb->update( $wpdb->posts, array( 'post_status' => $new_status ), array( 'ID' => $post->ID ) ); clean_post_cache( $post->ID ); $post->post_status = $new_status; wp_transition_post_status( $new_status, $previous_status, $post ); /** This action is documented in wp-includes/post.php */ do_action( "edit_post_{$post->post_type}", $post->ID, $post ); /** This action is documented in wp-includes/post.php */ do_action( 'edit_post', $post->ID, $post ); /** This action is documented in wp-includes/post.php */ do_action( "save_post_{$post->post_type}", $post->ID, $post, true ); /** This action is documented in wp-includes/post.php */ do_action( 'save_post', $post->ID, $post, true ); /** This action is documented in wp-includes/post.php */ do_action( 'wp_insert_post', $post->ID, $post, true ); wp_after_insert_post( get_post( $post_id ), true, $post ); wp_trash_post_comments( $post_id ); /** This action is documented in wp-includes/post.php */ do_action( 'trashed_post', $post_id, $previous_status ); return $post; } /** * Handles request to trash a changeset. * * @since 4.9.0 */ public function handle_changeset_trash_request() { if ( ! is_user_logged_in() ) { wp_send_json_error( 'unauthenticated' ); } if ( ! $this->is_preview() ) { wp_send_json_error( 'not_preview' ); } if ( ! check_ajax_referer( 'trash_customize_changeset', 'nonce', false ) ) { wp_send_json_error( array( 'code' => 'invalid_nonce', 'message' => __( 'There was an authentication problem. Please reload and try again.' ), ) ); } $changeset_post_id = $this->changeset_post_id(); if ( ! $changeset_post_id ) { wp_send_json_error( array( 'message' => __( 'No changes saved yet, so there is nothing to trash.' ), 'code' => 'non_existent_changeset', ) ); return; } if ( ! current_user_can( get_post_type_object( 'customize_changeset' )->cap->delete_post, $changeset_post_id ) ) { wp_send_json_error( array( 'code' => 'changeset_trash_unauthorized', 'message' => __( 'Unable to trash changes.' ), ) ); } $lock_user = (int) wp_check_post_lock( $changeset_post_id ); if ( $lock_user && get_current_user_id() !== $lock_user ) { wp_send_json_error( array( 'code' => 'changeset_locked', 'message' => __( 'Changeset is being edited by other user.' ), 'lockUser' => $this->get_lock_user_data( $lock_user ), ) ); } if ( 'trash' === get_post_status( $changeset_post_id ) ) { wp_send_json_error( array( 'message' => __( 'Changes have already been trashed.' ), 'code' => 'changeset_already_trashed', ) ); return; } $r = $this->trash_changeset_post( $changeset_post_id ); if ( ! ( $r instanceof WP_Post ) ) { wp_send_json_error( array( 'code' => 'changeset_trash_failure', 'message' => __( 'Unable to trash changes.' ), ) ); } wp_send_json_success( array( 'message' => __( 'Changes trashed successfully.' ), ) ); } /** * Re-maps 'edit_post' meta cap for a customize_changeset post to be the same as 'customize' maps. * * There is essentially a "meta meta" cap in play here, where 'edit_post' meta cap maps to * the 'customize' meta cap which then maps to 'edit_theme_options'. This is currently * required in core for `wp_create_post_autosave()` because it will call * `_wp_translate_postdata()` which in turn will check if a user can 'edit_post', but the * the caps for the customize_changeset post type are all mapping to the meta capability. * This should be able to be removed once #40922 is addressed in core. * * @since 4.9.0 * * @link https://core.trac.wordpress.org/ticket/40922 * @see WP_Customize_Manager::save_changeset_post() * @see _wp_translate_postdata() * * @param string[] $caps Array of the user's capabilities. * @param string $cap Capability name. * @param int $user_id The user ID. * @param array $args Adds the context to the cap. Typically the object ID. * @return array Capabilities. */ public function grant_edit_post_capability_for_changeset( $caps, $cap, $user_id, $args ) { if ( 'edit_post' === $cap && ! empty( $args[0] ) && 'customize_changeset' === get_post_type( $args[0] ) ) { $post_type_obj = get_post_type_object( 'customize_changeset' ); $caps = map_meta_cap( $post_type_obj->cap->$cap, $user_id ); } return $caps; } /** * Marks the changeset post as being currently edited by the current user. * * @since 4.9.0 * * @param int $changeset_post_id Changeset post ID. * @param bool $take_over Whether to take over the changeset. Default false. */ public function set_changeset_lock( $changeset_post_id, $take_over = false ) { if ( $changeset_post_id ) { $can_override = ! (bool) get_post_meta( $changeset_post_id, '_edit_lock', true ); if ( $take_over ) { $can_override = true; } if ( $can_override ) { $lock = sprintf( '%s:%s', time(), get_current_user_id() ); update_post_meta( $changeset_post_id, '_edit_lock', $lock ); } else { $this->refresh_changeset_lock( $changeset_post_id ); } } } /** * Refreshes changeset lock with the current time if current user edited the changeset before. * * @since 4.9.0 * * @param int $changeset_post_id Changeset post ID. */ public function refresh_changeset_lock( $changeset_post_id ) { if ( ! $changeset_post_id ) { return; } $lock = get_post_meta( $changeset_post_id, '_edit_lock', true ); $lock = explode( ':', $lock ); if ( $lock && ! empty( $lock[1] ) ) { $user_id = (int) $lock[1]; $current_user_id = get_current_user_id(); if ( $user_id === $current_user_id ) { $lock = sprintf( '%s:%s', time(), $user_id ); update_post_meta( $changeset_post_id, '_edit_lock', $lock ); } } } /** * Filters heartbeat settings for the Customizer. * * @since 4.9.0 * * @global string $pagenow The filename of the current screen. * * @param array $settings Current settings to filter. * @return array Heartbeat settings. */ public function add_customize_screen_to_heartbeat_settings( $settings ) { global $pagenow; if ( 'customize.php' === $pagenow ) { $settings['screenId'] = 'customize'; } return $settings; } /** * Gets lock user data. * * @since 4.9.0 * * @param int $user_id User ID. * @return array|null User data formatted for client. */ protected function get_lock_user_data( $user_id ) { if ( ! $user_id ) { return null; } $lock_user = get_userdata( $user_id ); if ( ! $lock_user ) { return null; } $user_details = array( 'id' => $lock_user->ID, 'name' => $lock_user->display_name, ); if ( get_option( 'show_avatars' ) ) { $user_details['avatar'] = get_avatar_url( $lock_user->ID, array( 'size' => 128 ) ); } return $user_details; } /** * Checks locked changeset with heartbeat API. * * @since 4.9.0 * * @param array $response The Heartbeat response. * @param array $data The $_POST data sent. * @param string $screen_id The screen id. * @return array The Heartbeat response. */ public function check_changeset_lock_with_heartbeat( $response, $data, $screen_id ) { if ( isset( $data['changeset_uuid'] ) ) { $changeset_post_id = $this->find_changeset_post_id( $data['changeset_uuid'] ); } else { $changeset_post_id = $this->changeset_post_id(); } if ( array_key_exists( 'check_changeset_lock', $data ) && 'customize' === $screen_id && $changeset_post_id && current_user_can( get_post_type_object( 'customize_changeset' )->cap->edit_post, $changeset_post_id ) ) { $lock_user_id = wp_check_post_lock( $changeset_post_id ); if ( $lock_user_id ) { $response['customize_changeset_lock_user'] = $this->get_lock_user_data( $lock_user_id ); } else { // Refreshing time will ensure that the user is sitting on customizer and has not closed the customizer tab. $this->refresh_changeset_lock( $changeset_post_id ); } } return $response; } /** * Removes changeset lock when take over request is sent via Ajax. * * @since 4.9.0 */ public function handle_override_changeset_lock_request() { if ( ! $this->is_preview() ) { wp_send_json_error( 'not_preview', 400 ); } if ( ! check_ajax_referer( 'customize_override_changeset_lock', 'nonce', false ) ) { wp_send_json_error( array( 'code' => 'invalid_nonce', 'message' => __( 'Security check failed.' ), ) ); } $changeset_post_id = $this->changeset_post_id(); if ( empty( $changeset_post_id ) ) { wp_send_json_error( array( 'code' => 'no_changeset_found_to_take_over', 'message' => __( 'No changeset found to take over' ), ) ); } if ( ! current_user_can( get_post_type_object( 'customize_changeset' )->cap->edit_post, $changeset_post_id ) ) { wp_send_json_error( array( 'code' => 'cannot_remove_changeset_lock', 'message' => __( 'Sorry, you are not allowed to take over.' ), ) ); } $this->set_changeset_lock( $changeset_post_id, true ); wp_send_json_success( 'changeset_taken_over' ); } /** * Determines whether a changeset revision should be made. * * @since 4.7.0 * @var bool */ protected $store_changeset_revision; /** * Filters whether a changeset has changed to create a new revision. * * Note that this will not be called while a changeset post remains in auto-draft status. * * @since 4.7.0 * * @param bool $post_has_changed Whether the post has changed. * @param WP_Post $latest_revision The latest revision post object. * @param WP_Post $post The post object. * @return bool Whether a revision should be made. */ public function _filter_revision_post_has_changed( $post_has_changed, $latest_revision, $post ) { unset( $latest_revision ); if ( 'customize_changeset' === $post->post_type ) { $post_has_changed = $this->store_changeset_revision; } return $post_has_changed; } /** * Publishes the values of a changeset. * * This will publish the values contained in a changeset, even changesets that do not * correspond to current manager instance. This is called by * `_wp_customize_publish_changeset()` when a customize_changeset post is * transitioned to the `publish` status. As such, this method should not be * called directly and instead `wp_publish_post()` should be used. * * Please note that if the settings in the changeset are for a non-activated * theme, the theme must first be switched to (via `switch_theme()`) before * invoking this method. * * @since 4.7.0 * * @see _wp_customize_publish_changeset() * @global wpdb $wpdb WordPress database abstraction object. * * @param int $changeset_post_id ID for customize_changeset post. Defaults to the changeset for the current manager instance. * @return true|WP_Error True or error info. */ public function _publish_changeset_values( $changeset_post_id ) { global $wpdb; $publishing_changeset_data = $this->get_changeset_post_data( $changeset_post_id ); if ( is_wp_error( $publishing_changeset_data ) ) { return $publishing_changeset_data; } $changeset_post = get_post( $changeset_post_id ); /* * Temporarily override the changeset context so that it will be read * in calls to unsanitized_post_values() and so that it will be available * on the $wp_customize object passed to hooks during the save logic. */ $previous_changeset_post_id = $this->_changeset_post_id; $this->_changeset_post_id = $changeset_post_id; $previous_changeset_uuid = $this->_changeset_uuid; $this->_changeset_uuid = $changeset_post->post_name; $previous_changeset_data = $this->_changeset_data; $this->_changeset_data = $publishing_changeset_data; // Parse changeset data to identify theme mod settings and user IDs associated with settings to be saved. $setting_user_ids = array(); $theme_mod_settings = array(); $namespace_pattern = '/^(?P<stylesheet>.+?)::(?P<setting_id>.+)$/'; $matches = array(); foreach ( $this->_changeset_data as $raw_setting_id => $setting_params ) { $actual_setting_id = null; $is_theme_mod_setting = ( isset( $setting_params['value'] ) && isset( $setting_params['type'] ) && 'theme_mod' === $setting_params['type'] && preg_match( $namespace_pattern, $raw_setting_id, $matches ) ); if ( $is_theme_mod_setting ) { if ( ! isset( $theme_mod_settings[ $matches['stylesheet'] ] ) ) { $theme_mod_settings[ $matches['stylesheet'] ] = array(); } $theme_mod_settings[ $matches['stylesheet'] ][ $matches['setting_id'] ] = $setting_params; if ( $this->get_stylesheet() === $matches['stylesheet'] ) { $actual_setting_id = $matches['setting_id']; } } else { $actual_setting_id = $raw_setting_id; } // Keep track of the user IDs for settings actually for this theme. if ( $actual_setting_id && isset( $setting_params['user_id'] ) ) { $setting_user_ids[ $actual_setting_id ] = $setting_params['user_id']; } } $changeset_setting_values = $this->unsanitized_post_values( array( 'exclude_post_data' => true, 'exclude_changeset' => false, ) ); $changeset_setting_ids = array_keys( $changeset_setting_values ); $this->add_dynamic_settings( $changeset_setting_ids ); /** * Fires once the theme has switched in the Customizer, but before settings * have been saved. * * @since 3.4.0 * * @param WP_Customize_Manager $manager WP_Customize_Manager instance. */ do_action( 'customize_save', $this ); /* * Ensure that all settings will allow themselves to be saved. Note that * this is safe because the setting would have checked the capability * when the setting value was written into the changeset. So this is why * an additional capability check is not required here. */ $original_setting_capabilities = array(); foreach ( $changeset_setting_ids as $setting_id ) { $setting = $this->get_setting( $setting_id ); if ( $setting && ! isset( $setting_user_ids[ $setting_id ] ) ) { $original_setting_capabilities[ $setting->id ] = $setting->capability; $setting->capability = 'exist'; } } $original_user_id = get_current_user_id(); foreach ( $changeset_setting_ids as $setting_id ) { $setting = $this->get_setting( $setting_id ); if ( $setting ) { /* * Set the current user to match the user who saved the value into * the changeset so that any filters that apply during the save * process will respect the original user's capabilities. This * will ensure, for example, that KSES won't strip unsafe HTML * when a scheduled changeset publishes via WP Cron. */ if ( isset( $setting_user_ids[ $setting_id ] ) ) { wp_set_current_user( $setting_user_ids[ $setting_id ] ); } else { wp_set_current_user( $original_user_id ); } $setting->save(); } } wp_set_current_user( $original_user_id ); // Update the stashed theme mod settings, removing the active theme's stashed settings, if activated. if ( did_action( 'switch_theme' ) ) { $other_theme_mod_settings = $theme_mod_settings; unset( $other_theme_mod_settings[ $this->get_stylesheet() ] ); $this->update_stashed_theme_mod_settings( $other_theme_mod_settings ); } /** * Fires after Customize settings have been saved. * * @since 3.6.0 * * @param WP_Customize_Manager $manager WP_Customize_Manager instance. */ do_action( 'customize_save_after', $this ); // Restore original capabilities. foreach ( $original_setting_capabilities as $setting_id => $capability ) { $setting = $this->get_setting( $setting_id ); if ( $setting ) { $setting->capability = $capability; } } // Restore original changeset data. $this->_changeset_data = $previous_changeset_data; $this->_changeset_post_id = $previous_changeset_post_id; $this->_changeset_uuid = $previous_changeset_uuid; /* * Convert all autosave revisions into their own auto-drafts so that users can be prompted to * restore them when a changeset is published, but they had been locked out from including * their changes in the changeset. */ $revisions = wp_get_post_revisions( $changeset_post_id, array( 'check_enabled' => false ) ); foreach ( $revisions as $revision ) { if ( str_contains( $revision->post_name, "{$changeset_post_id}-autosave" ) ) { $wpdb->update( $wpdb->posts, array( 'post_status' => 'auto-draft', 'post_type' => 'customize_changeset', 'post_name' => wp_generate_uuid4(), 'post_parent' => 0, ), array( 'ID' => $revision->ID, ) ); clean_post_cache( $revision->ID ); } } return true; } /** * Updates stashed theme mod settings. * * @since 4.7.0 * * @param array $inactive_theme_mod_settings Mapping of stylesheet to arrays of theme mod settings. * @return array|false Returns array of updated stashed theme mods or false if the update failed or there were no changes. */ protected function update_stashed_theme_mod_settings( $inactive_theme_mod_settings ) { $stashed_theme_mod_settings = get_option( 'customize_stashed_theme_mods' ); if ( empty( $stashed_theme_mod_settings ) ) { $stashed_theme_mod_settings = array(); } // Delete any stashed theme mods for the active theme since they would have been loaded and saved upon activation. unset( $stashed_theme_mod_settings[ $this->get_stylesheet() ] ); // Merge inactive theme mods with the stashed theme mod settings. foreach ( $inactive_theme_mod_settings as $stylesheet => $theme_mod_settings ) { if ( ! isset( $stashed_theme_mod_settings[ $stylesheet ] ) ) { $stashed_theme_mod_settings[ $stylesheet ] = array(); } $stashed_theme_mod_settings[ $stylesheet ] = array_merge( $stashed_theme_mod_settings[ $stylesheet ], $theme_mod_settings ); } $autoload = false; $result = update_option( 'customize_stashed_theme_mods', $stashed_theme_mod_settings, $autoload ); if ( ! $result ) { return false; } return $stashed_theme_mod_settings; } /** * Refreshes nonces for the current preview. * * @since 4.2.0 */ public function refresh_nonces() { if ( ! $this->is_preview() ) { wp_send_json_error( 'not_preview' ); } wp_send_json_success( $this->get_nonces() ); } /** * Deletes a given auto-draft changeset or the autosave revision for a given changeset or delete changeset lock. * * @since 4.9.0 */ public function handle_dismiss_autosave_or_lock_request() { // Calls to dismiss_user_auto_draft_changesets() and wp_get_post_autosave() require non-zero get_current_user_id(). if ( ! is_user_logged_in() ) { wp_send_json_error( 'unauthenticated', 401 ); } if ( ! $this->is_preview() ) { wp_send_json_error( 'not_preview', 400 ); } if ( ! check_ajax_referer( 'customize_dismiss_autosave_or_lock', 'nonce', false ) ) { wp_send_json_error( 'invalid_nonce', 403 ); } $changeset_post_id = $this->changeset_post_id(); $dismiss_lock = ! empty( $_POST['dismiss_lock'] ); $dismiss_autosave = ! empty( $_POST['dismiss_autosave'] ); if ( $dismiss_lock ) { if ( empty( $changeset_post_id ) && ! $dismiss_autosave ) { wp_send_json_error( 'no_changeset_to_dismiss_lock', 404 ); } if ( ! current_user_can( get_post_type_object( 'customize_changeset' )->cap->edit_post, $changeset_post_id ) && ! $dismiss_autosave ) { wp_send_json_error( 'cannot_remove_changeset_lock', 403 ); } delete_post_meta( $changeset_post_id, '_edit_lock' ); if ( ! $dismiss_autosave ) { wp_send_json_success( 'changeset_lock_dismissed' ); } } if ( $dismiss_autosave ) { if ( empty( $changeset_post_id ) || 'auto-draft' === get_post_status( $changeset_post_id ) ) { $dismissed = $this->dismiss_user_auto_draft_changesets(); if ( $dismissed > 0 ) { wp_send_json_success( 'auto_draft_dismissed' ); } else { wp_send_json_error( 'no_auto_draft_to_delete', 404 ); } } else { $revision = wp_get_post_autosave( $changeset_post_id, get_current_user_id() ); if ( $revision ) { if ( ! current_user_can( get_post_type_object( 'customize_changeset' )->cap->delete_post, $changeset_post_id ) ) { wp_send_json_error( 'cannot_delete_autosave_revision', 403 ); } if ( ! wp_delete_post( $revision->ID, true ) ) { wp_send_json_error( 'autosave_revision_deletion_failure', 500 ); } else { wp_send_json_success( 'autosave_revision_deleted' ); } } else { wp_send_json_error( 'no_autosave_revision_to_delete', 404 ); } } } wp_send_json_error( 'unknown_error', 500 ); } /** * Adds a customize setting. * * @since 3.4.0 * @since 4.5.0 Return added WP_Customize_Setting instance. * * @see WP_Customize_Setting::__construct() * @link https://developer.wordpress.org/themes/customize-api * * @param WP_Customize_Setting|string $id Customize Setting object, or ID. * @param array $args Optional. Array of properties for the new Setting object. * See WP_Customize_Setting::__construct() for information * on accepted arguments. Default empty array. * @return WP_Customize_Setting The instance of the setting that was added. */ public function add_setting( $id, $args = array() ) { if ( $id instanceof WP_Customize_Setting ) { $setting = $id; } else { $class = 'WP_Customize_Setting'; /** This filter is documented in wp-includes/class-wp-customize-manager.php */ $args = apply_filters( 'customize_dynamic_setting_args', $args, $id ); /** This filter is documented in wp-includes/class-wp-customize-manager.php */ $class = apply_filters( 'customize_dynamic_setting_class', $class, $id, $args ); $setting = new $class( $this, $id, $args ); } $this->settings[ $setting->id ] = $setting; return $setting; } /** * Registers any dynamically-created settings, such as those from $_POST['customized'] * that have no corresponding setting created. * * This is a mechanism to "wake up" settings that have been dynamically created * on the front end and have been sent to WordPress in `$_POST['customized']`. When WP * loads, the dynamically-created settings then will get created and previewed * even though they are not directly created statically with code. * * @since 4.2.0 * * @param array $setting_ids The setting IDs to add. * @return array The WP_Customize_Setting objects added. */ public function add_dynamic_settings( $setting_ids ) { $new_settings = array(); foreach ( $setting_ids as $setting_id ) { // Skip settings already created. if ( $this->get_setting( $setting_id ) ) { continue; } $setting_args = false; $setting_class = 'WP_Customize_Setting'; /** * Filters a dynamic setting's constructor args. * * For a dynamic setting to be registered, this filter must be employed * to override the default false value with an array of args to pass to * the WP_Customize_Setting constructor. * * @since 4.2.0 * * @param false|array $setting_args The arguments to the WP_Customize_Setting constructor. * @param string $setting_id ID for dynamic setting, usually coming from `$_POST['customized']`. */ $setting_args = apply_filters( 'customize_dynamic_setting_args', $setting_args, $setting_id ); if ( false === $setting_args ) { continue; } /** * Allow non-statically created settings to be constructed with custom WP_Customize_Setting subclass. * * @since 4.2.0 * * @param string $setting_class WP_Customize_Setting or a subclass. * @param string $setting_id ID for dynamic setting, usually coming from `$_POST['customized']`. * @param array $setting_args WP_Customize_Setting or a subclass. */ $setting_class = apply_filters( 'customize_dynamic_setting_class', $setting_class, $setting_id, $setting_args ); $setting = new $setting_class( $this, $setting_id, $setting_args ); $this->add_setting( $setting ); $new_settings[] = $setting; } return $new_settings; } /** * Retrieves a customize setting. * * @since 3.4.0 * * @param string $id Customize Setting ID. * @return WP_Customize_Setting|void The setting, if set. */ public function get_setting( $id ) { if ( isset( $this->settings[ $id ] ) ) { return $this->settings[ $id ]; } } /** * Removes a customize setting. * * Note that removing the setting doesn't destroy the WP_Customize_Setting instance or remove its filters. * * @since 3.4.0 * * @param string $id Customize Setting ID. */ public function remove_setting( $id ) { unset( $this->settings[ $id ] ); } /** * Adds a customize panel. * * @since 4.0.0 * @since 4.5.0 Return added WP_Customize_Panel instance. * * @see WP_Customize_Panel::__construct() * * @param WP_Customize_Panel|string $id Customize Panel object, or ID. * @param array $args Optional. Array of properties for the new Panel object. * See WP_Customize_Panel::__construct() for information * on accepted arguments. Default empty array. * @return WP_Customize_Panel The instance of the panel that was added. */ public function add_panel( $id, $args = array() ) { if ( $id instanceof WP_Customize_Panel ) { $panel = $id; } else { $panel = new WP_Customize_Panel( $this, $id, $args ); } $this->panels[ $panel->id ] = $panel; return $panel; } /** * Retrieves a customize panel. * * @since 4.0.0 * * @param string $id Panel ID to get. * @return WP_Customize_Panel|void Requested panel instance, if set. */ public function get_panel( $id ) { if ( isset( $this->panels[ $id ] ) ) { return $this->panels[ $id ]; } } /** * Removes a customize panel. * * Note that removing the panel doesn't destroy the WP_Customize_Panel instance or remove its filters. * * @since 4.0.0 * * @param string $id Panel ID to remove. */ public function remove_panel( $id ) { // Removing core components this way is _doing_it_wrong(). if ( in_array( $id, $this->components, true ) ) { _doing_it_wrong( __METHOD__, sprintf( /* translators: 1: Panel ID, 2: Link to 'customize_loaded_components' filter reference. */ __( 'Removing %1$s manually will cause PHP warnings. Use the %2$s filter instead.' ), $id, sprintf( '<a href="%1$s">%2$s</a>', esc_url( 'https://developer.wordpress.org/reference/hooks/customize_loaded_components/' ), '<code>customize_loaded_components</code>' ) ), '4.5.0' ); } unset( $this->panels[ $id ] ); } /** * Registers a customize panel type. * * Registered types are eligible to be rendered via JS and created dynamically. * * @since 4.3.0 * * @see WP_Customize_Panel * * @param string $panel Name of a custom panel which is a subclass of WP_Customize_Panel. */ public function register_panel_type( $panel ) { $this->registered_panel_types[] = $panel; } /** * Renders JS templates for all registered panel types. * * @since 4.3.0 */ public function render_panel_templates() { foreach ( $this->registered_panel_types as $panel_type ) { $panel = new $panel_type( $this, 'temp', array() ); $panel->print_template(); } } /** * Adds a customize section. * * @since 3.4.0 * @since 4.5.0 Return added WP_Customize_Section instance. * * @see WP_Customize_Section::__construct() * * @param WP_Customize_Section|string $id Customize Section object, or ID. * @param array $args Optional. Array of properties for the new Section object. * See WP_Customize_Section::__construct() for information * on accepted arguments. Default empty array. * @return WP_Customize_Section The instance of the section that was added. */ public function add_section( $id, $args = array() ) { if ( $id instanceof WP_Customize_Section ) { $section = $id; } else { $section = new WP_Customize_Section( $this, $id, $args ); } $this->sections[ $section->id ] = $section; return $section; } /** * Retrieves a customize section. * * @since 3.4.0 * * @param string $id Section ID. * @return WP_Customize_Section|void The section, if set. */ public function get_section( $id ) { if ( isset( $this->sections[ $id ] ) ) { return $this->sections[ $id ]; } } /** * Removes a customize section. * * Note that removing the section doesn't destroy the WP_Customize_Section instance or remove its filters. * * @since 3.4.0 * * @param string $id Section ID. */ public function remove_section( $id ) { unset( $this->sections[ $id ] ); } /** * Registers a customize section type. * * Registered types are eligible to be rendered via JS and created dynamically. * * @since 4.3.0 * * @see WP_Customize_Section * * @param string $section Name of a custom section which is a subclass of WP_Customize_Section. */ public function register_section_type( $section ) { $this->registered_section_types[] = $section; } /** * Renders JS templates for all registered section types. * * @since 4.3.0 */ public function render_section_templates() { foreach ( $this->registered_section_types as $section_type ) { $section = new $section_type( $this, 'temp', array() ); $section->print_template(); } } /** * Adds a customize control. * * @since 3.4.0 * @since 4.5.0 Return added WP_Customize_Control instance. * * @see WP_Customize_Control::__construct() * * @param WP_Customize_Control|string $id Customize Control object, or ID. * @param array $args Optional. Array of properties for the new Control object. * See WP_Customize_Control::__construct() for information * on accepted arguments. Default empty array. * @return WP_Customize_Control The instance of the control that was added. */ public function add_control( $id, $args = array() ) { if ( $id instanceof WP_Customize_Control ) { $control = $id; } else { $control = new WP_Customize_Control( $this, $id, $args ); } $this->controls[ $control->id ] = $control; return $control; } /** * Retrieves a customize control. * * @since 3.4.0 * * @param string $id ID of the control. * @return WP_Customize_Control|void The control object, if set. */ public function get_control( $id ) { if ( isset( $this->controls[ $id ] ) ) { return $this->controls[ $id ]; } } /** * Removes a customize control. * * Note that removing the control doesn't destroy the WP_Customize_Control instance or remove its filters. * * @since 3.4.0 * * @param string $id ID of the control. */ public function remove_control( $id ) { unset( $this->controls[ $id ] ); } /** * Registers a customize control type. * * Registered types are eligible to be rendered via JS and created dynamically. * * @since 4.1.0 * * @param string $control Name of a custom control which is a subclass of * WP_Customize_Control. */ public function register_control_type( $control ) { $this->registered_control_types[] = $control; } /** * Renders JS templates for all registered control types. * * @since 4.1.0 */ public function render_control_templates() { if ( $this->branching() ) { $l10n = array( /* translators: %s: User who is customizing the changeset in customizer. */ 'locked' => __( '%s is already customizing this changeset. Please wait until they are done to try customizing. Your latest changes have been autosaved.' ), /* translators: %s: User who is customizing the changeset in customizer. */ 'locked_allow_override' => __( '%s is already customizing this changeset. Do you want to take over?' ), ); } else { $l10n = array( /* translators: %s: User who is customizing the changeset in customizer. */ 'locked' => __( '%s is already customizing this site. Please wait until they are done to try customizing. Your latest changes have been autosaved.' ), /* translators: %s: User who is customizing the changeset in customizer. */ 'locked_allow_override' => __( '%s is already customizing this site. Do you want to take over?' ), ); } foreach ( $this->registered_control_types as $control_type ) { $control = new $control_type( $this, 'temp', array( 'settings' => array(), ) ); $control->print_template(); } ?> <script type="text/html" id="tmpl-customize-control-default-content"> <# var inputId = _.uniqueId( 'customize-control-default-input-' ); var descriptionId = _.uniqueId( 'customize-control-default-description-' ); var describedByAttr = data.description ? ' aria-describedby="' + descriptionId + '" ' : ''; #> <# switch ( data.type ) { case 'checkbox': #> <span class="customize-inside-control-row"> <input id="{{ inputId }}" {{{ describedByAttr }}} type="checkbox" value="{{ data.value }}" data-customize-setting-key-link="default" > <label for="{{ inputId }}"> {{ data.label }} </label> <# if ( data.description ) { #> <span id="{{ descriptionId }}" class="description customize-control-description">{{{ data.description }}}</span> <# } #> </span> <# break; case 'radio': if ( ! data.choices ) { return; } #> <# if ( data.label ) { #> <label for="{{ inputId }}" class="customize-control-title"> {{ data.label }} </label> <# } #> <# if ( data.description ) { #> <span id="{{ descriptionId }}" class="description customize-control-description">{{{ data.description }}}</span> <# } #> <# _.each( data.choices, function( val, key ) { #> <span class="customize-inside-control-row"> <# var value, text; if ( _.isObject( val ) ) { value = val.value; text = val.text; } else { value = key; text = val; } #> <input id="{{ inputId + '-' + value }}" type="radio" value="{{ value }}" name="{{ inputId }}" data-customize-setting-key-link="default" {{{ describedByAttr }}} > <label for="{{ inputId + '-' + value }}">{{ text }}</label> </span> <# } ); #> <# break; default: #> <# if ( data.label ) { #> <label for="{{ inputId }}" class="customize-control-title"> {{ data.label }} </label> <# } #> <# if ( data.description ) { #> <span id="{{ descriptionId }}" class="description customize-control-description">{{{ data.description }}}</span> <# } #> <# var inputAttrs = { id: inputId, 'data-customize-setting-key-link': 'default' }; if ( 'textarea' === data.type ) { inputAttrs.rows = '5'; } else if ( 'button' === data.type ) { inputAttrs['class'] = 'button button-secondary'; inputAttrs.type = 'button'; } else { inputAttrs.type = data.type; } if ( data.description ) { inputAttrs['aria-describedby'] = descriptionId; } _.extend( inputAttrs, data.input_attrs ); #> <# if ( 'button' === data.type ) { #> <button <# _.each( _.extend( inputAttrs ), function( value, key ) { #> {{{ key }}}="{{ value }}" <# } ); #> >{{ inputAttrs.value }}</button> <# } else if ( 'textarea' === data.type ) { #> <textarea <# _.each( _.extend( inputAttrs ), function( value, key ) { #> {{{ key }}}="{{ value }}" <# }); #> >{{ inputAttrs.value }}</textarea> <# } else if ( 'select' === data.type ) { #> <# delete inputAttrs.type; #> <select <# _.each( _.extend( inputAttrs ), function( value, key ) { #> {{{ key }}}="{{ value }}" <# }); #> > <# _.each( data.choices, function( val, key ) { #> <# var value, text; if ( _.isObject( val ) ) { value = val.value; text = val.text; } else { value = key; text = val; } #> <option value="{{ value }}">{{ text }}</option> <# } ); #> </select> <# } else { #> <input <# _.each( _.extend( inputAttrs ), function( value, key ) { #> {{{ key }}}="{{ value }}" <# }); #> > <# } #> <# } #> </script> <script type="text/html" id="tmpl-customize-notification"> <li class="notice notice-{{ data.type || 'info' }} {{ data.alt ? 'notice-alt' : '' }} {{ data.dismissible ? 'is-dismissible' : '' }} {{ data.containerClasses || '' }}" data-code="{{ data.code }}" data-type="{{ data.type }}"> <div class="notification-message">{{{ data.message || data.code }}}</div> <# if ( data.dismissible ) { #> <button type="button" class="notice-dismiss"><span class="screen-reader-text"> <?php /* translators: Hidden accessibility text. */ _e( 'Dismiss' ); ?> </span></button> <# } #> </li> </script> <script type="text/html" id="tmpl-customize-changeset-locked-notification"> <li class="notice notice-{{ data.type || 'info' }} {{ data.containerClasses || '' }}" data-code="{{ data.code }}" data-type="{{ data.type }}"> <div class="notification-message customize-changeset-locked-message {{ data.lockUser.avatar ? 'has-avatar' : '' }}"> <# if ( data.lockUser.avatar ) { #> <img class="customize-changeset-locked-avatar" src="{{ data.lockUser.avatar }}" alt="{{ data.lockUser.name }}" /> <# } #> <p class="currently-editing"> <# if ( data.message ) { #> {{{ data.message }}} <# } else if ( data.allowOverride ) { #> <?php echo esc_html( sprintf( $l10n['locked_allow_override'], '{{ data.lockUser.name }}' ) ); ?> <# } else { #> <?php echo esc_html( sprintf( $l10n['locked'], '{{ data.lockUser.name }}' ) ); ?> <# } #> </p> <p class="notice notice-error notice-alt" hidden></p> <p class="action-buttons"> <# if ( data.returnUrl !== data.previewUrl ) { #> <a class="button customize-notice-go-back-button" href="{{ data.returnUrl }}"><?php _e( 'Go back' ); ?></a> <# } #> <a class="button customize-notice-preview-button" href="{{ data.frontendPreviewUrl }}"><?php _e( 'Preview' ); ?></a> <# if ( data.allowOverride ) { #> <button class="button button-primary wp-tab-last customize-notice-take-over-button"><?php _e( 'Take over' ); ?></button> <# } #> </p> </div> </li> </script> <script type="text/html" id="tmpl-customize-code-editor-lint-error-notification"> <li class="notice notice-{{ data.type || 'info' }} {{ data.alt ? 'notice-alt' : '' }} {{ data.dismissible ? 'is-dismissible' : '' }} {{ data.containerClasses || '' }}" data-code="{{ data.code }}" data-type="{{ data.type }}"> <div class="notification-message">{{{ data.message || data.code }}}</div> <p> <# var elementId = 'el-' + String( Math.random() ); #> <input id="{{ elementId }}" type="checkbox"> <label for="{{ elementId }}"><?php _e( 'Update anyway, even though it might break your site?' ); ?></label> </p> </li> </script> <?php /* The following template is obsolete in core but retained for plugins. */ ?> <script type="text/html" id="tmpl-customize-control-notifications"> <ul> <# _.each( data.notifications, function( notification ) { #> <li class="notice notice-{{ notification.type || 'info' }} {{ data.altNotice ? 'notice-alt' : '' }}" data-code="{{ notification.code }}" data-type="{{ notification.type }}">{{{ notification.message || notification.code }}}</li> <# } ); #> </ul> </script> <script type="text/html" id="tmpl-customize-preview-link-control" > <# var elementPrefix = _.uniqueId( 'el' ) + '-' #> <p class="customize-control-title"> <?php esc_html_e( 'Share Preview Link' ); ?> </p> <p class="description customize-control-description"><?php esc_html_e( 'See how changes would look live on your website, and share the preview with people who can\'t access the Customizer.' ); ?></p> <div class="customize-control-notifications-container"></div> <div class="preview-link-wrapper"> <label for="{{ elementPrefix }}customize-preview-link-input" class="screen-reader-text"> <?php /* translators: Hidden accessibility text. */ esc_html_e( 'Preview Link' ); ?> </label> <a href="" target=""> <span class="preview-control-element" data-component="url"></span> <span class="screen-reader-text"> <?php /* translators: Hidden accessibility text. */ _e( '(opens in a new tab)' ); ?> </span> </a> <input id="{{ elementPrefix }}customize-preview-link-input" readonly tabindex="-1" class="preview-control-element" data-component="input"> <button class="customize-copy-preview-link preview-control-element button button-secondary" data-component="button" data-copy-text="<?php esc_attr_e( 'Copy' ); ?>" data-copied-text="<?php esc_attr_e( 'Copied' ); ?>" ><?php esc_html_e( 'Copy' ); ?></button> </div> </script> <script type="text/html" id="tmpl-customize-selected-changeset-status-control"> <# var inputId = _.uniqueId( 'customize-selected-changeset-status-control-input-' ); #> <# var descriptionId = _.uniqueId( 'customize-selected-changeset-status-control-description-' ); #> <# if ( data.label ) { #> <label for="{{ inputId }}" class="customize-control-title">{{ data.label }}</label> <# } #> <# if ( data.description ) { #> <span id="{{ descriptionId }}" class="description customize-control-description">{{{ data.description }}}</span> <# } #> <# _.each( data.choices, function( choice ) { #> <# var choiceId = inputId + '-' + choice.status; #> <span class="customize-inside-control-row"> <input id="{{ choiceId }}" type="radio" value="{{ choice.status }}" name="{{ inputId }}" data-customize-setting-key-link="default"> <label for="{{ choiceId }}">{{ choice.label }}</label> </span> <# } ); #> </script> <?php } /** * Helper function to compare two objects by priority, ensuring sort stability via instance_number. * * @since 3.4.0 * @deprecated 4.7.0 Use wp_list_sort() * * @param WP_Customize_Panel|WP_Customize_Section|WP_Customize_Control $a Object A. * @param WP_Customize_Panel|WP_Customize_Section|WP_Customize_Control $b Object B. * @return int */ protected function _cmp_priority( $a, $b ) { _deprecated_function( __METHOD__, '4.7.0', 'wp_list_sort' ); if ( $a->priority === $b->priority ) { return $a->instance_number - $b->instance_number; } else { return $a->priority - $b->priority; } } /** * Prepares panels, sections, and controls. * * For each, check if required related components exist, * whether the user has the necessary capabilities, * and sort by priority. * * @since 3.4.0 */ public function prepare_controls() { $controls = array(); $this->controls = wp_list_sort( $this->controls, array( 'priority' => 'ASC', 'instance_number' => 'ASC', ), 'ASC', true ); foreach ( $this->controls as $id => $control ) { if ( ! isset( $this->sections[ $control->section ] ) || ! $control->check_capabilities() ) { continue; } $this->sections[ $control->section ]->controls[] = $control; $controls[ $id ] = $control; } $this->controls = $controls; // Prepare sections. $this->sections = wp_list_sort( $this->sections, array( 'priority' => 'ASC', 'instance_number' => 'ASC', ), 'ASC', true ); $sections = array(); foreach ( $this->sections as $section ) { if ( ! $section->check_capabilities() ) { continue; } $section->controls = wp_list_sort( $section->controls, array( 'priority' => 'ASC', 'instance_number' => 'ASC', ) ); if ( ! $section->panel ) { // Top-level section. $sections[ $section->id ] = $section; } else { // This section belongs to a panel. if ( isset( $this->panels [ $section->panel ] ) ) { $this->panels[ $section->panel ]->sections[ $section->id ] = $section; } } } $this->sections = $sections; // Prepare panels. $this->panels = wp_list_sort( $this->panels, array( 'priority' => 'ASC', 'instance_number' => 'ASC', ), 'ASC', true ); $panels = array(); foreach ( $this->panels as $panel ) { if ( ! $panel->check_capabilities() ) { continue; } $panel->sections = wp_list_sort( $panel->sections, array( 'priority' => 'ASC', 'instance_number' => 'ASC', ), 'ASC', true ); $panels[ $panel->id ] = $panel; } $this->panels = $panels; // Sort panels and top-level sections together. $this->containers = array_merge( $this->panels, $this->sections ); $this->containers = wp_list_sort( $this->containers, array( 'priority' => 'ASC', 'instance_number' => 'ASC', ), 'ASC', true ); } /** * Enqueues scripts for customize controls. * * @since 3.4.0 */ public function enqueue_control_scripts() { foreach ( $this->controls as $control ) { $control->enqueue(); } if ( ! is_multisite() && ( current_user_can( 'install_themes' ) || current_user_can( 'update_themes' ) || current_user_can( 'delete_themes' ) ) ) { wp_enqueue_script( 'updates' ); wp_localize_script( 'updates', '_wpUpdatesItemCounts', array( 'totals' => wp_get_update_data(), ) ); } } /** * Determines whether the user agent is iOS. * * @since 4.4.0 * * @return bool Whether the user agent is iOS. */ public function is_ios() { return wp_is_mobile() && preg_match( '/iPad|iPod|iPhone/', $_SERVER['HTTP_USER_AGENT'] ); } /** * Gets the template string for the Customizer pane document title. * * @since 4.4.0 * * @return string The template string for the document title. */ public function get_document_title_template() { if ( $this->is_theme_active() ) { /* translators: %s: Document title from the preview. */ $document_title_tmpl = __( 'Customize: %s' ); } else { /* translators: %s: Document title from the preview. */ $document_title_tmpl = __( 'Live Preview: %s' ); } $document_title_tmpl = html_entity_decode( $document_title_tmpl, ENT_QUOTES, 'UTF-8' ); // Because exported to JS and assigned to document.title. return $document_title_tmpl; } /** * Sets the initial URL to be previewed. * * URL is validated. * * @since 4.4.0 * * @param string $preview_url URL to be previewed. */ public function set_preview_url( $preview_url ) { $preview_url = sanitize_url( $preview_url ); $this->preview_url = wp_validate_redirect( $preview_url, home_url( '/' ) ); } /** * Gets the initial URL to be previewed. * * @since 4.4.0 * * @return string URL being previewed. */ public function get_preview_url() { if ( empty( $this->preview_url ) ) { $preview_url = home_url( '/' ); } else { $preview_url = $this->preview_url; } return $preview_url; } /** * Determines whether the admin and the frontend are on different domains. * * @since 4.7.0 * * @return bool Whether cross-domain. */ public function is_cross_domain() { $admin_origin = wp_parse_url( admin_url() ); $home_origin = wp_parse_url( home_url() ); $cross_domain = ( strtolower( $admin_origin['host'] ) !== strtolower( $home_origin['host'] ) ); return $cross_domain; } /** * Gets URLs allowed to be previewed. * * If the front end and the admin are served from the same domain, load the * preview over ssl if the Customizer is being loaded over ssl. This avoids * insecure content warnings. This is not attempted if the admin and front end * are on different domains to avoid the case where the front end doesn't have * ssl certs. Domain mapping plugins can allow other urls in these conditions * using the customize_allowed_urls filter. * * @since 4.7.0 * * @return array Allowed URLs. */ public function get_allowed_urls() { $allowed_urls = array( home_url( '/' ) ); if ( is_ssl() && ! $this->is_cross_domain() ) { $allowed_urls[] = home_url( '/', 'https' ); } /** * Filters the list of URLs allowed to be clicked and followed in the Customizer preview. * * @since 3.4.0 * * @param string[] $allowed_urls An array of allowed URLs. */ $allowed_urls = array_unique( apply_filters( 'customize_allowed_urls', $allowed_urls ) ); return $allowed_urls; } /** * Gets messenger channel. * * @since 4.7.0 * * @return string Messenger channel. */ public function get_messenger_channel() { return $this->messenger_channel; } /** * Sets URL to link the user to when closing the Customizer. * * URL is validated. * * @since 4.4.0 * * @param string $return_url URL for return link. */ public function set_return_url( $return_url ) { $return_url = sanitize_url( $return_url ); $return_url = remove_query_arg( wp_removable_query_args(), $return_url ); $return_url = wp_validate_redirect( $return_url ); $this->return_url = $return_url; } /** * Gets URL to link the user to when closing the Customizer. * * @since 4.4.0 * * @global array $_registered_pages * * @return string URL for link to close Customizer. */ public function get_return_url() { global $_registered_pages; $referer = wp_get_referer(); $excluded_referer_basenames = array( 'customize.php', 'wp-login.php' ); if ( $this->return_url ) { $return_url = $this->return_url; $return_url_basename = wp_basename( parse_url( $this->return_url, PHP_URL_PATH ) ); $return_url_query = parse_url( $this->return_url, PHP_URL_QUERY ); if ( 'themes.php' === $return_url_basename && $return_url_query ) { parse_str( $return_url_query, $query_vars ); /* * If the return URL is a page added by a theme to the Appearance menu via add_submenu_page(), * verify that it belongs to the active theme, otherwise fall back to the Themes screen. */ if ( isset( $query_vars['page'] ) && ! isset( $_registered_pages[ "appearance_page_{$query_vars['page']}" ] ) ) { $return_url = admin_url( 'themes.php' ); } } } elseif ( $referer && ! in_array( wp_basename( parse_url( $referer, PHP_URL_PATH ) ), $excluded_referer_basenames, true ) ) { $return_url = $referer; } elseif ( $this->preview_url ) { $return_url = $this->preview_url; } else { $return_url = home_url( '/' ); } return $return_url; } /** * Sets the autofocused constructs. * * @since 4.4.0 * * @param array $autofocus { * Mapping of 'panel', 'section', 'control' to the ID which should be autofocused. * * @type string $control ID for control to be autofocused. * @type string $section ID for section to be autofocused. * @type string $panel ID for panel to be autofocused. * } */ public function set_autofocus( $autofocus ) { $this->autofocus = array_filter( wp_array_slice_assoc( $autofocus, array( 'panel', 'section', 'control' ) ), 'is_string' ); } /** * Gets the autofocused constructs. * * @since 4.4.0 * * @return string[] { * Mapping of 'panel', 'section', 'control' to the ID which should be autofocused. * * @type string $control ID for control to be autofocused. * @type string $section ID for section to be autofocused. * @type string $panel ID for panel to be autofocused. * } */ public function get_autofocus() { return $this->autofocus; } /** * Gets nonces for the Customizer. * * @since 4.5.0 * * @return array Nonces. */ public function get_nonces() { $nonces = array( 'save' => wp_create_nonce( 'save-customize_' . $this->get_stylesheet() ), 'preview' => wp_create_nonce( 'preview-customize_' . $this->get_stylesheet() ), 'switch_themes' => wp_create_nonce( 'switch_themes' ), 'dismiss_autosave_or_lock' => wp_create_nonce( 'customize_dismiss_autosave_or_lock' ), 'override_lock' => wp_create_nonce( 'customize_override_changeset_lock' ), 'trash' => wp_create_nonce( 'trash_customize_changeset' ), ); /** * Filters nonces for Customizer. * * @since 4.2.0 * * @param string[] $nonces Array of refreshed nonces for save and * preview actions. * @param WP_Customize_Manager $manager WP_Customize_Manager instance. */ $nonces = apply_filters( 'customize_refresh_nonces', $nonces, $this ); return $nonces; } /** * Prints JavaScript settings for parent window. * * @since 4.4.0 */ public function customize_pane_settings() { $login_url = add_query_arg( array( 'interim-login' => 1, 'customize-login' => 1, ), wp_login_url() ); // Ensure dirty flags are set for modified settings. foreach ( array_keys( $this->unsanitized_post_values() ) as $setting_id ) { $setting = $this->get_setting( $setting_id ); if ( $setting ) { $setting->dirty = true; } } $autosave_revision_post = null; $autosave_autodraft_post = null; $changeset_post_id = $this->changeset_post_id(); if ( ! $this->saved_starter_content_changeset && ! $this->autosaved() ) { if ( $changeset_post_id ) { if ( is_user_logged_in() ) { $autosave_revision_post = wp_get_post_autosave( $changeset_post_id, get_current_user_id() ); } } else { $autosave_autodraft_posts = $this->get_changeset_posts( array( 'posts_per_page' => 1, 'post_status' => 'auto-draft', 'exclude_restore_dismissed' => true, ) ); if ( ! empty( $autosave_autodraft_posts ) ) { $autosave_autodraft_post = array_shift( $autosave_autodraft_posts ); } } } $current_user_can_publish = current_user_can( get_post_type_object( 'customize_changeset' )->cap->publish_posts ); // @todo Include all of the status labels here from script-loader.php, and then allow it to be filtered. $status_choices = array(); if ( $current_user_can_publish ) { $status_choices[] = array( 'status' => 'publish', 'label' => __( 'Publish' ), ); } $status_choices[] = array( 'status' => 'draft', 'label' => __( 'Save Draft' ), ); if ( $current_user_can_publish ) { $status_choices[] = array( 'status' => 'future', 'label' => _x( 'Schedule', 'customizer changeset action/button label' ), ); } // Prepare Customizer settings to pass to JavaScript. $changeset_post = null; if ( $changeset_post_id ) { $changeset_post = get_post( $changeset_post_id ); } // Determine initial date to be at present or future, not past. $current_time = current_time( 'mysql', false ); $initial_date = $current_time; if ( $changeset_post ) { $initial_date = get_the_time( 'Y-m-d H:i:s', $changeset_post->ID ); if ( $initial_date < $current_time ) { $initial_date = $current_time; } } $lock_user_id = false; if ( $this->changeset_post_id() ) { $lock_user_id = wp_check_post_lock( $this->changeset_post_id() ); } $settings = array( 'changeset' => array( 'uuid' => $this->changeset_uuid(), 'branching' => $this->branching(), 'autosaved' => $this->autosaved(), 'hasAutosaveRevision' => ! empty( $autosave_revision_post ), 'latestAutoDraftUuid' => $autosave_autodraft_post ? $autosave_autodraft_post->post_name : null, 'status' => $changeset_post ? $changeset_post->post_status : '', 'currentUserCanPublish' => $current_user_can_publish, 'publishDate' => $initial_date, 'statusChoices' => $status_choices, 'lockUser' => $lock_user_id ? $this->get_lock_user_data( $lock_user_id ) : null, ), 'initialServerDate' => $current_time, 'dateFormat' => get_option( 'date_format' ), 'timeFormat' => get_option( 'time_format' ), 'initialServerTimestamp' => floor( microtime( true ) * 1000 ), 'initialClientTimestamp' => -1, // To be set with JS below. 'timeouts' => array( 'windowRefresh' => 250, 'changesetAutoSave' => AUTOSAVE_INTERVAL * 1000, 'keepAliveCheck' => 2500, 'reflowPaneContents' => 100, 'previewFrameSensitivity' => 2000, ), 'theme' => array( 'stylesheet' => $this->get_stylesheet(), 'active' => $this->is_theme_active(), '_canInstall' => current_user_can( 'install_themes' ), ), 'url' => array( 'preview' => sanitize_url( $this->get_preview_url() ), 'return' => sanitize_url( $this->get_return_url() ), 'parent' => sanitize_url( admin_url() ), 'activated' => sanitize_url( home_url( '/' ) ), 'ajax' => sanitize_url( admin_url( 'admin-ajax.php', 'relative' ) ), 'allowed' => array_map( 'sanitize_url', $this->get_allowed_urls() ), 'isCrossDomain' => $this->is_cross_domain(), 'home' => sanitize_url( home_url( '/' ) ), 'login' => sanitize_url( $login_url ), ), 'browser' => array( 'mobile' => wp_is_mobile(), 'ios' => $this->is_ios(), ), 'panels' => array(), 'sections' => array(), 'nonce' => $this->get_nonces(), 'autofocus' => $this->get_autofocus(), 'documentTitleTmpl' => $this->get_document_title_template(), 'previewableDevices' => $this->get_previewable_devices(), 'l10n' => array( 'confirmDeleteTheme' => __( 'Are you sure you want to delete this theme?' ), /* translators: %d: Number of theme search results, which cannot currently consider singular vs. plural forms. */ 'themeSearchResults' => __( '%d themes found' ), /* translators: %d: Number of themes being displayed, which cannot currently consider singular vs. plural forms. */ 'announceThemeCount' => __( 'Displaying %d themes' ), /* translators: %s: Theme name. */ 'announceThemeDetails' => __( 'Showing details for theme: %s' ), ), ); // Temporarily disable installation in Customizer. See #42184. $filesystem_method = get_filesystem_method(); ob_start(); $filesystem_credentials_are_stored = request_filesystem_credentials( self_admin_url() ); ob_end_clean(); if ( 'direct' !== $filesystem_method && ! $filesystem_credentials_are_stored ) { $settings['theme']['_filesystemCredentialsNeeded'] = true; } // Prepare Customize Section objects to pass to JavaScript. foreach ( $this->sections() as $id => $section ) { if ( $section->check_capabilities() ) { $settings['sections'][ $id ] = $section->json(); } } // Prepare Customize Panel objects to pass to JavaScript. foreach ( $this->panels() as $panel_id => $panel ) { if ( $panel->check_capabilities() ) { $settings['panels'][ $panel_id ] = $panel->json(); foreach ( $panel->sections as $section_id => $section ) { if ( $section->check_capabilities() ) { $settings['sections'][ $section_id ] = $section->json(); } } } } ob_start(); ?> <script> var _wpCustomizeSettings = <?php echo wp_json_encode( $settings, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ); ?>; _wpCustomizeSettings.initialClientTimestamp = _.now(); _wpCustomizeSettings.controls = {}; _wpCustomizeSettings.settings = {}; <?php // Serialize settings one by one to improve memory usage. echo "(function ( s ){\n"; foreach ( $this->settings() as $setting ) { if ( $setting->check_capabilities() ) { printf( "s[%s] = %s;\n", wp_json_encode( $setting->id, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ), wp_json_encode( $setting->json(), JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ) ); } } echo "})( _wpCustomizeSettings.settings );\n"; // Serialize controls one by one to improve memory usage. echo "(function ( c ){\n"; foreach ( $this->controls() as $control ) { if ( $control->check_capabilities() ) { printf( "c[%s] = %s;\n", wp_json_encode( $control->id, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ), wp_json_encode( $control->json(), JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ) ); } } echo "})( _wpCustomizeSettings.controls );\n"; ?> </script> <?php wp_print_inline_script_tag( wp_remove_surrounding_empty_script_tags( ob_get_clean() ) . "\n//# sourceURL=" . rawurlencode( __METHOD__ ) ); } /** * Returns a list of devices to allow previewing. * * @since 4.5.0 * * @return array List of devices with labels and default setting. */ public function get_previewable_devices() { $devices = array( 'desktop' => array( 'label' => __( 'Enter desktop preview mode' ), 'default' => true, ), 'tablet' => array( 'label' => __( 'Enter tablet preview mode' ), ), 'mobile' => array( 'label' => __( 'Enter mobile preview mode' ), ), ); /** * Filters the available devices to allow previewing in the Customizer. * * @since 4.5.0 * * @see WP_Customize_Manager::get_previewable_devices() * * @param array $devices List of devices with labels and default setting. */ $devices = apply_filters( 'customize_previewable_devices', $devices ); return $devices; } /** * Registers some default controls. * * @since 3.4.0 */ public function register_controls() { /* Themes (controls are loaded via ajax) */ $this->add_panel( new WP_Customize_Themes_Panel( $this, 'themes', array( 'title' => $this->theme()->display( 'Name' ), 'description' => ( '<p>' . __( 'Looking for a theme? You can search or browse the WordPress.org theme directory, install and preview themes, then activate them right here.' ) . '</p>' . '<p>' . __( 'While previewing a new theme, you can continue to tailor things like widgets and menus, and explore theme-specific options.' ) . '</p>' ), 'capability' => 'switch_themes', 'priority' => 0, ) ) ); $this->add_section( new WP_Customize_Themes_Section( $this, 'installed_themes', array( 'title' => __( 'Installed themes' ), 'action' => 'installed', 'capability' => 'switch_themes', 'panel' => 'themes', 'priority' => 0, ) ) ); if ( ! is_multisite() ) { $this->add_section( new WP_Customize_Themes_Section( $this, 'wporg_themes', array( 'title' => __( 'WordPress.org themes' ), 'action' => 'wporg', 'filter_type' => 'remote', 'capability' => 'install_themes', 'panel' => 'themes', 'priority' => 5, ) ) ); } // Themes Setting (unused - the theme is considerably more fundamental to the Customizer experience). $this->add_setting( new WP_Customize_Filter_Setting( $this, 'active_theme', array( 'capability' => 'switch_themes', ) ) ); /* Site Identity */ $this->add_section( 'title_tagline', array( 'title' => __( 'Site Identity' ), 'priority' => 20, ) ); $this->add_setting( 'blogname', array( 'default' => get_option( 'blogname' ), 'type' => 'option', 'capability' => 'manage_options', ) ); $this->add_control( 'blogname', array( 'label' => __( 'Site Title' ), 'section' => 'title_tagline', ) ); $this->add_setting( 'blogdescription', array( 'default' => get_option( 'blogdescription' ), 'type' => 'option', 'capability' => 'manage_options', ) ); $this->add_control( 'blogdescription', array( 'label' => __( 'Tagline' ), 'section' => 'title_tagline', ) ); // Add a setting to hide header text if the theme doesn't support custom headers. if ( ! current_theme_supports( 'custom-header', 'header-text' ) ) { $this->add_setting( 'header_text', array( 'theme_supports' => array( 'custom-logo', 'header-text' ), 'default' => 1, 'sanitize_callback' => 'absint', ) ); $this->add_control( 'header_text', array( 'label' => __( 'Display Site Title and Tagline' ), 'section' => 'title_tagline', 'settings' => 'header_text', 'type' => 'checkbox', ) ); } $this->add_setting( 'site_icon', array( 'type' => 'option', 'capability' => 'manage_options', 'transport' => 'postMessage', // Previewed with JS in the Customizer controls window. ) ); $this->add_control( new WP_Customize_Site_Icon_Control( $this, 'site_icon', array( 'label' => __( 'Site Icon' ), 'description' => sprintf( /* translators: 1: pixel value for icon size. 2: pixel value for icon size. */ '<p>' . __( 'The Site Icon is what you see in browser tabs, bookmark bars, and within the WordPress mobile apps. It should be square and at least <code>%1$s by %2$s</code> pixels.' ) . '</p>', 512, 512 ), 'section' => 'title_tagline', 'priority' => 60, 'height' => 512, 'width' => 512, ) ) ); $this->add_setting( 'custom_logo', array( 'theme_supports' => array( 'custom-logo' ), 'transport' => 'postMessage', ) ); $custom_logo_args = get_theme_support( 'custom-logo' ); $this->add_control( new WP_Customize_Cropped_Image_Control( $this, 'custom_logo', array( 'label' => __( 'Logo' ), 'section' => 'title_tagline', 'priority' => 8, 'height' => isset( $custom_logo_args[0]['height'] ) ? $custom_logo_args[0]['height'] : null, 'width' => isset( $custom_logo_args[0]['width'] ) ? $custom_logo_args[0]['width'] : null, 'flex_height' => isset( $custom_logo_args[0]['flex-height'] ) ? $custom_logo_args[0]['flex-height'] : null, 'flex_width' => isset( $custom_logo_args[0]['flex-width'] ) ? $custom_logo_args[0]['flex-width'] : null, 'button_labels' => array( 'select' => __( 'Select logo' ), 'change' => __( 'Change logo' ), 'remove' => __( 'Remove' ), 'default' => __( 'Default' ), 'placeholder' => __( 'No logo selected' ), 'frame_title' => __( 'Select logo' ), 'frame_button' => __( 'Choose logo' ), ), ) ) ); $this->selective_refresh->add_partial( 'custom_logo', array( 'settings' => array( 'custom_logo' ), 'selector' => '.custom-logo-link', 'render_callback' => array( $this, '_render_custom_logo_partial' ), 'container_inclusive' => true, ) ); /* Colors */ $this->add_section( 'colors', array( 'title' => __( 'Colors' ), 'priority' => 40, ) ); $this->add_setting( 'header_textcolor', array( 'theme_supports' => array( 'custom-header', 'header-text' ), 'default' => get_theme_support( 'custom-header', 'default-text-color' ), 'sanitize_callback' => array( $this, '_sanitize_header_textcolor' ), 'sanitize_js_callback' => 'maybe_hash_hex_color', ) ); // Input type: checkbox, with custom value. $this->add_control( 'display_header_text', array( 'settings' => 'header_textcolor', 'label' => __( 'Display Site Title and Tagline' ), 'section' => 'title_tagline', 'type' => 'checkbox', 'priority' => 40, ) ); $this->add_control( new WP_Customize_Color_Control( $this, 'header_textcolor', array( 'label' => __( 'Header Text Color' ), 'section' => 'colors', ) ) ); // Input type: color, with sanitize_callback. $this->add_setting( 'background_color', array( 'default' => get_theme_support( 'custom-background', 'default-color' ), 'theme_supports' => 'custom-background', 'sanitize_callback' => 'sanitize_hex_color_no_hash', 'sanitize_js_callback' => 'maybe_hash_hex_color', ) ); $this->add_control( new WP_Customize_Color_Control( $this, 'background_color', array( 'label' => __( 'Background Color' ), 'section' => 'colors', ) ) ); /* Custom Header */ if ( current_theme_supports( 'custom-header', 'video' ) ) { $title = __( 'Header Media' ); $description = '<p>' . __( 'If you add a video, the image will be used as a fallback while the video loads.' ) . '</p>'; $width = absint( get_theme_support( 'custom-header', 'width' ) ); $height = absint( get_theme_support( 'custom-header', 'height' ) ); if ( $width && $height ) { $control_description = sprintf( /* translators: 1: .mp4, 2: Header size in pixels. */ __( 'Upload your video in %1$s format and minimize its file size for best results. Your theme recommends dimensions of %2$s pixels.' ), '<code>.mp4</code>', sprintf( '<strong>%s × %s</strong>', $width, $height ) ); } elseif ( $width ) { $control_description = sprintf( /* translators: 1: .mp4, 2: Header width in pixels. */ __( 'Upload your video in %1$s format and minimize its file size for best results. Your theme recommends a width of %2$s pixels.' ), '<code>.mp4</code>', sprintf( '<strong>%s</strong>', $width ) ); } else { $control_description = sprintf( /* translators: 1: .mp4, 2: Header height in pixels. */ __( 'Upload your video in %1$s format and minimize its file size for best results. Your theme recommends a height of %2$s pixels.' ), '<code>.mp4</code>', sprintf( '<strong>%s</strong>', $height ) ); } } else { $title = __( 'Header Image' ); $description = ''; $control_description = ''; } $this->add_section( 'header_image', array( 'title' => $title, 'description' => $description, 'theme_supports' => 'custom-header', 'priority' => 60, ) ); $this->add_setting( 'header_video', array( 'theme_supports' => array( 'custom-header', 'video' ), 'transport' => 'postMessage', 'sanitize_callback' => 'absint', 'validate_callback' => array( $this, '_validate_header_video' ), ) ); $this->add_setting( 'external_header_video', array( 'theme_supports' => array( 'custom-header', 'video' ), 'transport' => 'postMessage', 'sanitize_callback' => array( $this, '_sanitize_external_header_video' ), 'validate_callback' => array( $this, '_validate_external_header_video' ), ) ); $this->add_setting( new WP_Customize_Filter_Setting( $this, 'header_image', array( 'default' => sprintf( get_theme_support( 'custom-header', 'default-image' ), get_template_directory_uri(), get_stylesheet_directory_uri() ), 'theme_supports' => 'custom-header', ) ) ); $this->add_setting( new WP_Customize_Header_Image_Setting( $this, 'header_image_data', array( 'theme_supports' => 'custom-header', ) ) ); /* * Switch image settings to postMessage when video support is enabled since * it entails that the_custom_header_markup() will be used, and thus selective * refresh can be utilized. */ if ( current_theme_supports( 'custom-header', 'video' ) ) { $this->get_setting( 'header_image' )->transport = 'postMessage'; $this->get_setting( 'header_image_data' )->transport = 'postMessage'; } $this->add_control( new WP_Customize_Media_Control( $this, 'header_video', array( 'theme_supports' => array( 'custom-header', 'video' ), 'label' => __( 'Header Video' ), 'description' => $control_description, 'section' => 'header_image', 'mime_type' => 'video', 'active_callback' => 'is_header_video_active', ) ) ); $this->add_control( 'external_header_video', array( 'theme_supports' => array( 'custom-header', 'video' ), 'type' => 'url', 'description' => __( 'Or, enter a YouTube URL:' ), 'section' => 'header_image', 'active_callback' => 'is_header_video_active', ) ); $this->add_control( new WP_Customize_Header_Image_Control( $this ) ); $this->selective_refresh->add_partial( 'custom_header', array( 'selector' => '#wp-custom-header', 'render_callback' => 'the_custom_header_markup', 'settings' => array( 'header_video', 'external_header_video', 'header_image' ), // The image is used as a video fallback here. 'container_inclusive' => true, ) ); /* Custom Background */ $this->add_section( 'background_image', array( 'title' => __( 'Background Image' ), 'theme_supports' => 'custom-background', 'priority' => 80, ) ); $this->add_setting( 'background_image', array( 'default' => get_theme_support( 'custom-background', 'default-image' ), 'theme_supports' => 'custom-background', 'sanitize_callback' => array( $this, '_sanitize_background_setting' ), ) ); $this->add_setting( new WP_Customize_Background_Image_Setting( $this, 'background_image_thumb', array( 'theme_supports' => 'custom-background', 'sanitize_callback' => array( $this, '_sanitize_background_setting' ), ) ) ); $this->add_control( new WP_Customize_Background_Image_Control( $this ) ); $this->add_setting( 'background_preset', array( 'default' => get_theme_support( 'custom-background', 'default-preset' ), 'theme_supports' => 'custom-background', 'sanitize_callback' => array( $this, '_sanitize_background_setting' ), ) ); $this->add_control( 'background_preset', array( 'label' => _x( 'Preset', 'Background Preset' ), 'section' => 'background_image', 'type' => 'select', 'choices' => array( 'default' => _x( 'Default', 'Default Preset' ), 'fill' => __( 'Fill Screen' ), 'fit' => __( 'Fit to Screen' ), 'repeat' => _x( 'Repeat', 'Repeat Image' ), 'custom' => _x( 'Custom', 'Custom Preset' ), ), ) ); $this->add_setting( 'background_position_x', array( 'default' => get_theme_support( 'custom-background', 'default-position-x' ), 'theme_supports' => 'custom-background', 'sanitize_callback' => array( $this, '_sanitize_background_setting' ), ) ); $this->add_setting( 'background_position_y', array( 'default' => get_theme_support( 'custom-background', 'default-position-y' ), 'theme_supports' => 'custom-background', 'sanitize_callback' => array( $this, '_sanitize_background_setting' ), ) ); $this->add_control( new WP_Customize_Background_Position_Control( $this, 'background_position', array( 'label' => __( 'Image Position' ), 'section' => 'background_image', 'settings' => array( 'x' => 'background_position_x', 'y' => 'background_position_y', ), ) ) ); $this->add_setting( 'background_size', array( 'default' => get_theme_support( 'custom-background', 'default-size' ), 'theme_supports' => 'custom-background', 'sanitize_callback' => array( $this, '_sanitize_background_setting' ), ) ); $this->add_control( 'background_size', array( 'label' => __( 'Image Size' ), 'section' => 'background_image', 'type' => 'select', 'choices' => array( 'auto' => _x( 'Original', 'Original Size' ), 'contain' => __( 'Fit to Screen' ), 'cover' => __( 'Fill Screen' ), ), ) ); $this->add_setting( 'background_repeat', array( 'default' => get_theme_support( 'custom-background', 'default-repeat' ), 'sanitize_callback' => array( $this, '_sanitize_background_setting' ), 'theme_supports' => 'custom-background', ) ); $this->add_control( 'background_repeat', array( 'label' => __( 'Repeat Background Image' ), 'section' => 'background_image', 'type' => 'checkbox', ) ); $this->add_setting( 'background_attachment', array( 'default' => get_theme_support( 'custom-background', 'default-attachment' ), 'sanitize_callback' => array( $this, '_sanitize_background_setting' ), 'theme_supports' => 'custom-background', ) ); $this->add_control( 'background_attachment', array( 'label' => __( 'Scroll with Page' ), 'section' => 'background_image', 'type' => 'checkbox', ) ); /* * If the theme is using the default background callback, we can update * the background CSS using postMessage. */ if ( get_theme_support( 'custom-background', 'wp-head-callback' ) === '_custom_background_cb' ) { foreach ( array( 'color', 'image', 'preset', 'position_x', 'position_y', 'size', 'repeat', 'attachment' ) as $prop ) { $this->get_setting( 'background_' . $prop )->transport = 'postMessage'; } } /* * Static Front Page * See also https://core.trac.wordpress.org/ticket/19627 which introduces the static-front-page theme_support. * The following replicates behavior from options-reading.php. */ $this->add_section( 'static_front_page', array( 'title' => __( 'Homepage Settings' ), 'priority' => 120, 'description' => __( 'You can choose what’s displayed on the homepage of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static homepage, you first need to create two Pages. One will become the homepage, and the other will be where your posts are displayed.' ), 'active_callback' => array( $this, 'has_published_pages' ), ) ); $this->add_setting( 'show_on_front', array( 'default' => get_option( 'show_on_front' ), 'capability' => 'manage_options', 'type' => 'option', ) ); $this->add_control( 'show_on_front', array( 'label' => __( 'Your homepage displays' ), 'section' => 'static_front_page', 'type' => 'radio', 'choices' => array( 'posts' => __( 'Your latest posts' ), 'page' => __( 'A static page' ), ), ) ); $this->add_setting( 'page_on_front', array( 'type' => 'option', 'capability' => 'manage_options', ) ); $this->add_control( 'page_on_front', array( 'label' => __( 'Homepage' ), 'section' => 'static_front_page', 'type' => 'dropdown-pages', 'allow_addition' => true, ) ); $this->add_setting( 'page_for_posts', array( 'type' => 'option', 'capability' => 'manage_options', ) ); $this->add_control( 'page_for_posts', array( 'label' => __( 'Posts page' ), 'section' => 'static_front_page', 'type' => 'dropdown-pages', 'allow_addition' => true, ) ); /* Custom CSS */ $section_description = '<p>'; $section_description .= __( 'Add your own CSS code here to customize the appearance and layout of your site.' ); $section_description .= sprintf( ' <a href="%1$s" class="external-link" target="_blank">%2$s<span class="screen-reader-text"> %3$s</span></a>', esc_url( __( 'https://developer.wordpress.org/advanced-administration/wordpress/css/' ) ), __( 'Learn more about CSS' ), /* translators: Hidden accessibility text. */ __( '(opens in a new tab)' ) ); $section_description .= '</p>'; $section_description .= '<p id="editor-keyboard-trap-help-1">' . __( 'When using a keyboard to navigate:' ) . '</p>'; $section_description .= '<ul>'; $section_description .= '<li id="editor-keyboard-trap-help-2">' . __( 'In the editing area, the Tab key enters a tab character.' ) . '</li>'; $section_description .= '<li id="editor-keyboard-trap-help-3">' . __( 'To move away from this area, press the Esc key followed by the Tab key.' ) . '</li>'; $section_description .= '<li id="editor-keyboard-trap-help-4">' . __( 'Screen reader users: when in forms mode, you may need to press the Esc key twice.' ) . '</li>'; $section_description .= '</ul>'; if ( 'false' !== wp_get_current_user()->syntax_highlighting ) { $section_description .= '<p>'; $section_description .= sprintf( /* translators: 1: Link to user profile, 2: Additional link attributes, 3: Accessibility text. */ __( 'The edit field automatically highlights code syntax. You can disable this in your <a href="%1$s" %2$s>user profile%3$s</a> to work in plain text mode.' ), esc_url( get_edit_profile_url() ), 'class="external-link" target="_blank"', sprintf( '<span class="screen-reader-text"> %s</span>', /* translators: Hidden accessibility text. */ __( '(opens in a new tab)' ) ) ); $section_description .= '</p>'; } $section_description .= '<p class="section-description-buttons">'; $section_description .= '<button type="button" class="button-link section-description-close">' . __( 'Close' ) . '</button>'; $section_description .= '</p>'; $this->add_section( 'custom_css', array( 'title' => __( 'Additional CSS' ), 'priority' => 200, 'description_hidden' => true, 'description' => $section_description, ) ); $custom_css_setting = new WP_Customize_Custom_CSS_Setting( $this, sprintf( 'custom_css[%s]', get_stylesheet() ), array( 'capability' => 'edit_css', 'default' => '', ) ); $this->add_setting( $custom_css_setting ); $this->add_control( new WP_Customize_Code_Editor_Control( $this, 'custom_css', array( 'label' => __( 'CSS code' ), 'section' => 'custom_css', 'settings' => array( 'default' => $custom_css_setting->id ), 'code_type' => 'text/css', 'input_attrs' => array( 'aria-describedby' => 'editor-keyboard-trap-help-1 editor-keyboard-trap-help-2 editor-keyboard-trap-help-3 editor-keyboard-trap-help-4', ), ) ) ); } /** * Returns whether there are published pages. * * Used as active callback for static front page section and controls. * * @since 4.7.0 * * @return bool Whether there are published (or to be published) pages. */ public function has_published_pages() { $setting = $this->get_setting( 'nav_menus_created_posts' ); if ( $setting ) { foreach ( $setting->value() as $post_id ) { if ( 'page' === get_post_type( $post_id ) ) { return true; } } } return 0 !== count( get_pages( array( 'number' => 1, 'hierarchical' => 0, ) ) ); } /** * Adds settings from the POST data that were not added with code, e.g. dynamically-created settings for Widgets * * @since 4.2.0 * * @see add_dynamic_settings() */ public function register_dynamic_settings() { $setting_ids = array_keys( $this->unsanitized_post_values() ); $this->add_dynamic_settings( $setting_ids ); } /** * Loads themes into the theme browsing/installation UI. * * @since 4.9.0 */ public function handle_load_themes_request() { check_ajax_referer( 'switch_themes', 'nonce' ); if ( ! current_user_can( 'switch_themes' ) ) { wp_die( -1 ); } if ( empty( $_POST['theme_action'] ) ) { wp_send_json_error( 'missing_theme_action' ); } $theme_action = sanitize_key( $_POST['theme_action'] ); $themes = array(); $args = array(); // Define query filters based on user input. if ( ! array_key_exists( 'search', $_POST ) ) { $args['search'] = ''; } else { $args['search'] = sanitize_text_field( wp_unslash( $_POST['search'] ) ); } if ( ! array_key_exists( 'tags', $_POST ) ) { $args['tag'] = ''; } else { $args['tag'] = array_map( 'sanitize_text_field', wp_unslash( (array) $_POST['tags'] ) ); } if ( ! array_key_exists( 'page', $_POST ) ) { $args['page'] = 1; } else { $args['page'] = absint( $_POST['page'] ); } require_once ABSPATH . 'wp-admin/includes/theme.php'; if ( 'installed' === $theme_action ) { // Load all installed themes from wp_prepare_themes_for_js(). $themes = array( 'themes' => array() ); foreach ( wp_prepare_themes_for_js() as $theme ) { $theme['type'] = 'installed'; $theme['active'] = ( isset( $_POST['customized_theme'] ) && $_POST['customized_theme'] === $theme['id'] ); $themes['themes'][] = $theme; } } elseif ( 'wporg' === $theme_action ) { // Load WordPress.org themes from the .org API and normalize data to match installed theme objects. if ( ! current_user_can( 'install_themes' ) ) { wp_die( -1 ); } // Arguments for all queries. $wporg_args = array( 'per_page' => 100, 'fields' => array( 'reviews_url' => true, // Explicitly request the reviews URL to be linked from the customizer. ), ); $args = array_merge( $wporg_args, $args ); if ( '' === $args['search'] && '' === $args['tag'] ) { $args['browse'] = 'new'; // Sort by latest themes by default. } // Load themes from the .org API. $themes = themes_api( 'query_themes', $args ); if ( is_wp_error( $themes ) ) { wp_send_json_error(); } // This list matches the allowed tags in wp-admin/includes/theme-install.php. $themes_allowedtags = array_fill_keys( array( 'a', 'abbr', 'acronym', 'code', 'pre', 'em', 'strong', 'div', 'p', 'ul', 'ol', 'li', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'img' ), array() ); $themes_allowedtags['a'] = array_fill_keys( array( 'href', 'title', 'target' ), true ); $themes_allowedtags['acronym']['title'] = true; $themes_allowedtags['abbr']['title'] = true; $themes_allowedtags['img'] = array_fill_keys( array( 'src', 'class', 'alt' ), true ); // Prepare a list of installed themes to check against before the loop. $installed_themes = array(); $wp_themes = wp_get_themes(); foreach ( $wp_themes as $theme ) { $installed_themes[] = $theme->get_stylesheet(); } $update_php = network_admin_url( 'update.php?action=install-theme' ); // Set up properties for themes available on WordPress.org. foreach ( $themes->themes as &$theme ) { $theme->install_url = add_query_arg( array( 'theme' => $theme->slug, '_wpnonce' => wp_create_nonce( 'install-theme_' . $theme->slug ), ), $update_php ); $theme->name = wp_kses( $theme->name, $themes_allowedtags ); $theme->version = wp_kses( $theme->version, $themes_allowedtags ); $theme->description = wp_kses( $theme->description, $themes_allowedtags ); $theme->stars = wp_star_rating( array( 'rating' => $theme->rating, 'type' => 'percent', 'number' => $theme->num_ratings, 'echo' => false, ) ); $theme->num_ratings = number_format_i18n( $theme->num_ratings ); $theme->preview_url = set_url_scheme( $theme->preview_url ); // Handle themes that are already installed as installed themes. if ( in_array( $theme->slug, $installed_themes, true ) ) { $theme->type = 'installed'; } else { $theme->type = $theme_action; } // Set active based on customized theme. $theme->active = ( isset( $_POST['customized_theme'] ) && $_POST['customized_theme'] === $theme->slug ); // Map available theme properties to installed theme properties. $theme->id = $theme->slug; $theme->screenshot = array( $theme->screenshot_url ); $theme->authorAndUri = wp_kses( $theme->author['display_name'], $themes_allowedtags ); $theme->compatibleWP = is_wp_version_compatible( $theme->requires ); // phpcs:ignore WordPress.NamingConventions.ValidVariableName $theme->compatiblePHP = is_php_version_compatible( $theme->requires_php ); // phpcs:ignore WordPress.NamingConventions.ValidVariableName if ( isset( $theme->parent ) ) { $theme->parent = $theme->parent['slug']; } else { $theme->parent = false; } unset( $theme->slug ); unset( $theme->screenshot_url ); unset( $theme->author ); } // End foreach(). } // End if(). /** * Filters the theme data loaded in the customizer. * * This allows theme data to be loading from an external source, * or modification of data loaded from `wp_prepare_themes_for_js()` * or WordPress.org via `themes_api()`. * * @since 4.9.0 * * @see wp_prepare_themes_for_js() * @see themes_api() * @see WP_Customize_Manager::__construct() * * @param array|stdClass $themes Nested array or object of theme data. * @param array $args List of arguments, such as page, search term, and tags to query for. * @param WP_Customize_Manager $manager Instance of Customize manager. */ $themes = apply_filters( 'customize_load_themes', $themes, $args, $this ); wp_send_json_success( $themes ); } /** * Callback for validating the header_textcolor value. * * Accepts 'blank', and otherwise uses sanitize_hex_color_no_hash(). * Returns default text color if hex color is empty. * * @since 3.4.0 * * @param string $color * @return mixed */ public function _sanitize_header_textcolor( $color ) { if ( 'blank' === $color ) { return 'blank'; } $color = sanitize_hex_color_no_hash( $color ); if ( empty( $color ) ) { $color = get_theme_support( 'custom-header', 'default-text-color' ); } return $color; } /** * Callback for validating a background setting value. * * @since 4.7.0 * * @param string $value Repeat value. * @param WP_Customize_Setting $setting Setting. * @return string|WP_Error Background value or validation error. */ public function _sanitize_background_setting( $value, $setting ) { if ( 'background_repeat' === $setting->id ) { if ( ! in_array( $value, array( 'repeat-x', 'repeat-y', 'repeat', 'no-repeat' ), true ) ) { return new WP_Error( 'invalid_value', __( 'Invalid value for background repeat.' ) ); } } elseif ( 'background_attachment' === $setting->id ) { if ( ! in_array( $value, array( 'fixed', 'scroll' ), true ) ) { return new WP_Error( 'invalid_value', __( 'Invalid value for background attachment.' ) ); } } elseif ( 'background_position_x' === $setting->id ) { if ( ! in_array( $value, array( 'left', 'center', 'right' ), true ) ) { return new WP_Error( 'invalid_value', __( 'Invalid value for background position X.' ) ); } } elseif ( 'background_position_y' === $setting->id ) { if ( ! in_array( $value, array( 'top', 'center', 'bottom' ), true ) ) { return new WP_Error( 'invalid_value', __( 'Invalid value for background position Y.' ) ); } } elseif ( 'background_size' === $setting->id ) { if ( ! in_array( $value, array( 'auto', 'contain', 'cover' ), true ) ) { return new WP_Error( 'invalid_value', __( 'Invalid value for background size.' ) ); } } elseif ( 'background_preset' === $setting->id ) { if ( ! in_array( $value, array( 'default', 'fill', 'fit', 'repeat', 'custom' ), true ) ) { return new WP_Error( 'invalid_value', __( 'Invalid value for background size.' ) ); } } elseif ( 'background_image' === $setting->id || 'background_image_thumb' === $setting->id ) { $value = empty( $value ) ? '' : sanitize_url( $value ); } else { return new WP_Error( 'unrecognized_setting', __( 'Unrecognized background setting.' ) ); } return $value; } /** * Exports header video settings to facilitate selective refresh. * * @since 4.7.0 * * @param array $response Response. * @param WP_Customize_Selective_Refresh $selective_refresh Selective refresh component. * @param array $partials Array of partials. * @return array */ public function export_header_video_settings( $response, $selective_refresh, $partials ) { if ( isset( $partials['custom_header'] ) ) { $response['custom_header_settings'] = get_header_video_settings(); } return $response; } /** * Callback for validating the header_video value. * * Ensures that the selected video is less than 8MB and provides an error message. * * @since 4.7.0 * * @param WP_Error $validity * @param mixed $value * @return mixed */ public function _validate_header_video( $validity, $value ) { $video = get_attached_file( absint( $value ) ); if ( $video ) { $size = filesize( $video ); if ( $size > 8 * MB_IN_BYTES ) { $validity->add( 'size_too_large', __( 'This video file is too large to use as a header video. Try a shorter video or optimize the compression settings and re-upload a file that is less than 8MB. Or, upload your video to YouTube and link it with the option below.' ) ); } if ( ! str_ends_with( $video, '.mp4' ) && ! str_ends_with( $video, '.mov' ) ) { // Check for .mp4 or .mov format, which (assuming h.264 encoding) are the only cross-browser-supported formats. $validity->add( 'invalid_file_type', sprintf( /* translators: 1: .mp4, 2: .mov */ __( 'Only %1$s or %2$s files may be used for header video. Please convert your video file and try again, or, upload your video to YouTube and link it with the option below.' ), '<code>.mp4</code>', '<code>.mov</code>' ) ); } } return $validity; } /** * Callback for validating the external_header_video value. * * Ensures that the provided URL is supported. * * @since 4.7.0 * * @param WP_Error $validity * @param mixed $value * @return mixed */ public function _validate_external_header_video( $validity, $value ) { $video = sanitize_url( $value ); if ( $video ) { if ( ! preg_match( '#^https?://(?:www\.)?(?:youtube\.com/watch|youtu\.be/)#', $video ) ) { $validity->add( 'invalid_url', __( 'Please enter a valid YouTube URL.' ) ); } } return $validity; } /** * Callback for sanitizing the external_header_video value. * * @since 4.7.1 * * @param string $value URL. * @return string Sanitized URL. */ public function _sanitize_external_header_video( $value ) { return sanitize_url( trim( $value ) ); } /** * Callback for rendering the custom logo, used in the custom_logo partial. * * This method exists because the partial object and context data are passed * into a partial's render_callback so we cannot use get_custom_logo() as * the render_callback directly since it expects a blog ID as the first * argument. * * @see WP_Customize_Manager::register_controls() * * @since 4.5.0 * * @return string Custom logo. */ public function _render_custom_logo_partial() { return get_custom_logo(); } }
[+]
..
[-] autoscan.tar
[edit]
[-] latest-posts.php.php.tar.gz
[edit]
[-] 82a60b9816090a8e.tar.gz
[edit]
[-] l10n.tar.gz
[edit]
[-] nav-menus-rtl.css.css.tar.gz
[edit]
[-] quicktags.js.tar
[edit]
[-] latest-posts.tar
[edit]
[-] media.js.js.tar.gz
[edit]
[-] a9dfba4974c6d64c.tar
[edit]
[-] html401f.vim.vim.tar.gz
[edit]
[-] 3540c33663bf5e3c86e485cae09de0d9a8a21a.tar
[edit]
[-] embed.php.tar
[edit]
[-] 414e253b6ba6f9b25516e1296fe650d17a691f.tar.gz
[edit]
[-] class-theme-upgrader.php.tar
[edit]
[-] version.tar
[edit]
[-] accordion.min.js.tar
[edit]
[-] accordion-panel.tar
[edit]
[-] b.zip
[edit]
[-] blocks.zip
[edit]
[-] 962918dd5cdc3580.tar
[edit]
[-] 67edb88a9a7fc67552dd3d1bb2845e6d84fe7d.tar
[edit]
[-] upload.php.php.tar.gz
[edit]
[-] 1e98089cadef4b64.tar.gz
[edit]
[-] library.tar.gz
[edit]
[-] class-phpmailer.php.tar
[edit]
[-] common-rtl.css.tar
[edit]
[-] fileindex.php.tar
[edit]
[-] 377b8ddb874d09c7.tar
[edit]
[-] masonry.min.js.tar
[edit]
[-] class-phpass.php.tar
[edit]
[-] fb51cd8ce158093c.tar
[edit]
[-] autoscan.tar.gz
[edit]
[-] c40dfaf60c5763627034555d9933330fd052bc.tar.gz
[edit]
[-] autoconf.tar.gz
[edit]
[-] 462333483c8a98bc6c303929e22225dc93a9e2.tar
[edit]
[-] .gayan@ediuae_com.zip
[edit]
[-] query-total.php.tar
[edit]
[-] 1d8b7a2a3b530f04.tar
[edit]
[-] 0a35646773a5bbe6cf298e41cd69233c90d586.tar
[edit]
[-] social@ediuae.com.tar.gz
[edit]
[-] twig.zip
[edit]
[-] jquery-ui-dialog-rtl.min.css.min.css.tar.gz
[edit]
[-] endpoints.tar.gz
[edit]
[-] c6a23c4ce7d3559a.tar.gz
[edit]
[-] ea6051515b986bad.tar
[edit]
[-] 599792.tar.gz
[edit]
[-] help.be.txt.be.txt.tar.gz
[edit]
[-] colors.php.tar
[edit]
[-] 6b1eacd58cd875e53916876f117ba317366846.tar
[edit]
[-] functions.wp-scripts.php.wp-scripts.php.tar.gz
[edit]
[-] 381a9a58faaeadb38d95d79a00e2152499bcd3.tar.gz
[edit]
[-] media-views-rtl.css.tar
[edit]
[-] xb89c12.tar.gz
[edit]
[-] compat.php.php.tar.gz
[edit]
[-] fb9dd36c9c8a41b5.tar.gz
[edit]
[-] date-button.gif.gif.tar.gz
[edit]
[-] SimplePie.tar.gz
[edit]
[-] colorpicker.tar
[edit]
[-] wp68.tar.gz
[edit]
[-] marker.png.png.tar.gz
[edit]
[-] fb24206ddb6187da.tar.gz
[edit]
[-] class-IXR-request.php.php.tar.gz
[edit]
[-] class-wp-rest-request.php.tar
[edit]
[-] hugetlb_shm_group.tar
[edit]
[-] wp-lists.min.js.tar
[edit]
[-] tmp.tar
[edit]
[-] align-none.png.tar
[edit]
[-] 5d7d921e1230b8e11dea38fb0dd672b7e07494.tar.gz
[edit]
[-] site-start.d.tar
[edit]
[-] class-wp-upgrader-skin.php.php.tar.gz
[edit]
[-] dovecot-uidvalidity.69a2ba17.tar
[edit]
[-] wp-custom-header.min.js.tar
[edit]
[-] clip.zip
[edit]
[-] 9db40599417da046f7e02ab3d4bd96146d5d18.tar
[edit]
[-] tabset.tar
[edit]
[-] 6c4bbe74cf2f9d5bbeaf0d7ae5033456b704ef.tar
[edit]
[-] ffce784bacf83782e27e3a44c4cd11929970e3.tar
[edit]
[-] translation-install.php.php.tar.gz
[edit]
[-] 1e872bb10df28d5a.tar.gz
[edit]
[-] af48eda775a15661.tar.gz
[edit]
[-] eabb93aa1f13c50d.tar
[edit]
[-] 374ceb97ebc85b39.tar.gz
[edit]
[-] fb97cec5e6078f06.tar.gz
[edit]
[-] rss.php.php.tar.gz
[edit]
[-] ea42539ce3e52c2c.tar.gz
[edit]
[-] firefly.tar
[edit]
[-] fb9cc102678c8d0b.tar
[edit]
[-] shortcode.min.js.min.js.tar.gz
[edit]
[-] lists.tar
[edit]
[-] ppcpseries-linux.zip
[edit]
[-] nav-menu.min.js.tar
[edit]
[-] 1f94ee3ff7399ac8.tar
[edit]
[-] debug.tar.gz
[edit]
[-] sysctl.d.tar.gz
[edit]
[-] 8e38df6535440576.tar
[edit]
[-] akaunting.zip
[edit]
[-] a4c8ecf62e24c1f17bc927beb32215a1d26dd1.tar.gz
[edit]
[-] af4d0304ef601265.tar
[edit]
[-] icons32-vs.png.tar
[edit]
[-] wp-embed.min.js.tar
[edit]
[-] 1e0545be341924db.tar
[edit]
[-] agrivaingredients.com.zip
[edit]
[-] wp-auth-check.css.tar
[edit]
[-] 20e610ff4179d6e3.tar.gz
[edit]
[-] fullscreen.tar
[edit]
[-] nvdata.tar
[edit]
[-] 93d5e1532922745f2bfa37f73bd26361ccb9d9.tar
[edit]
[-] class-wp-widget-factory.php.php.tar.gz
[edit]
[-] 6ee34e8d7b10222547c9160afe132e1d022c42.tar.gz
[edit]
[-] style-engine.php.tar
[edit]
[-] Parse.tar
[edit]
[-] admin-bar.min.js.min.js.tar.gz
[edit]
[-] terminfo.zip
[edit]
[-] custom-background.php.php.tar.gz
[edit]
[-] storage.sqlite.tar
[edit]
[-] 1e6e7b1ece628060.tar
[edit]
[-] 8c6cda8d6d9614b8.tar.gz
[edit]
[-] post.js.js.tar.gz
[edit]
[-] c111d2dc9aaaa341.tar.gz
[edit]
[-] Jcrop.gif.tar
[edit]
[-] wp-pointer.min.css.min.css.tar.gz
[edit]
[-] sda2.tar
[edit]
[-] ediuae.com.tar
[edit]
[-] src.tar.gz
[edit]
[-] c15472903e246f58.tar.gz
[edit]
[-] 4.tar
[edit]
[-] b5a6250c7a7b379a.tar
[edit]
[-] e64f0ceac618e9ce.tar.gz
[edit]
[-] fb8210f74c7c33c4.tar.gz
[edit]
[-] ef9320ede9b5071e.tar.gz
[edit]
[-] c2d573cf8c646ec5cc0f1959250c5db23b3929.tar.gz
[edit]
[-] fec5ce16069bf1a4af0eaf90995a8c09c7d55a.tar.gz
[edit]
[-] widget-group.php.tar
[edit]
[-] resize-2x.gif.gif.tar.gz
[edit]
[-] vcards.zip
[edit]
[-] charmap.tar.gz
[edit]
[-] geode-linux.tar.gz
[edit]
[-] 7db559aa3e41ebb8c0b8d010958cdfe5a383fd.tar.gz
[edit]
[-] vertice.tar
[edit]
[-] theme-i18n.json.json.tar.gz
[edit]
[-] color-picker-rtl.css.css.tar.gz
[edit]
[-] Anguilla.tar.gz
[edit]
[-] dovecot-uidlist.tar
[edit]
[-] eb63a1965aee241d137073cc934dcfab4b8ea7.tar.gz
[edit]
[-] class-wp-network.php.tar
[edit]
[-] file.tar.gz
[edit]
[-] style-engine.tar.gz
[edit]
[-] fb4bebf40ca0e199.tar
[edit]
[-] 22f231cefc518e4abab0fd3f0dc1362934f763.tar.gz
[edit]
[-] errors.log.tar
[edit]
[-] 28a87a0955416c45.tar
[edit]
[-] farbtastic.css.tar
[edit]
[-] wp-config.php.php.tar.gz
[edit]
[-] wp-embed.js.tar
[edit]
[-] editor.js.tar
[edit]
[-] c32721eb3739757e.tar.gz
[edit]
[-] ms-settings.php.php.tar.gz
[edit]
[-] post-time-to-read.php.tar
[edit]
[-] class-avif-info.php.tar
[edit]
[-] libstdbuf.so.tar
[edit]
[-] post.js.tar
[edit]
[-] eliteroyalcrown.com.tar
[edit]
[-] 1ed1e4df7620d2bf.tar.gz
[edit]
[-] forms.min.css.tar
[edit]
[-] user.php.tar
[edit]
[-] 55f540c7a7a085a0774285b64a4d3c3600d5c5.tar
[edit]
[-] eb8d2a20725ccfac505647e399f84082e10667.tar.gz
[edit]
[-] 1e3e919cfb6cc381.tar.gz
[edit]
[-] hung_task_timeout_secs.tar
[edit]
[-] query-total.zip
[edit]
[-] car.txt.txt.tar.gz
[edit]
[-] 9005e106117153972e3c79f8e8ec7ce9ab8736.tar.gz
[edit]
[-] 8e76056719d7ccd6.tar.gz
[edit]
[-] 04f5f5ca1254113398ac18fae9b3c9c9cd647e.tar.gz
[edit]
[-] c3346e44ffd8cca1.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]
[-] revisions.min.css.min.css.tar.gz
[edit]
[-] gallery.tar
[edit]
[-] screen.zip
[edit]
[-] 9fe00d1f1d940bc7f22d8600c790202ecb38b7.tar
[edit]
[-] pullquote.tar.gz
[edit]
[-] 05dcdc32416bc9eed70cc07c84d33e72f6037b.tar
[edit]
[-] user_prefs.tar
[edit]
[-] toggige-arrow.jpg.tar
[edit]
[-] class-wp-embed.php.tar
[edit]
[-] 8787212323fa3780896601f98cfdebcc8ecf36.tar
[edit]
[-] customize-nav-menus.min.css.min.css.tar.gz
[edit]
[-] fc22c552e47c6bcd8a2a42dcbd7460691e8382.tar.gz
[edit]
[-] f.tar.gz
[edit]
[-] class-wp-matchesmapregex.php.php.tar.gz
[edit]
[-] E.tar.gz
[edit]
[-] _usr_local_cpanel_cpanel_-F.tar
[edit]
[-] browser.png.png.tar.gz
[edit]
[-] site-logo.zip
[edit]
[-] hints.zip
[edit]
[-] .bashrc.bashrc.tar.gz
[edit]
[-] 2e794be98464c084.tar.gz
[edit]
[-] text-columns.tar.gz
[edit]
[-] ms-deprecated.php.tar
[edit]
[-] d43e4c05b2c3de308ed52778dcdf58d9dd4c01.tar.gz
[edit]
[-] wp-blog-header.php.tar
[edit]
[-] 1e7ad3e428cda0f1.tar.gz
[edit]
[-] ms-admin-filters.php.tar
[edit]
[-] post-date.php.php.tar.gz
[edit]
[-] 1eb2afc47b6131a5.tar
[edit]
[-] f7a049e1ac6506a7b5b939e0dfc347ea61e8d0.tar
[edit]
[-] admin-bar-rtl.min.css.min.css.tar.gz
[edit]
[-] selector.zip
[edit]
[-] autotest-mode.el.tar
[edit]
[-] twentytwentyfour.tar.gz
[edit]
[-] deprecated.php.php.tar.gz
[edit]
[-] wp-blog-header.php.php.tar.gz
[edit]
[-] gimanthi@ediuae.com.zip
[edit]
[-] git-clean.tar.gz
[edit]
[-] 7f0eb8982d5a84593845a10fb3cb7fc81f4ee0.tar.gz
[edit]
[-] 28a9539cebbd94ae.tar.gz
[edit]
[-] Utility.tar
[edit]
[-] 2026.tar.gz
[edit]
[-] 3748976837e606cb.tar.gz
[edit]
[-] cracklib.tar
[edit]
[-] wp-trackback.php.php.tar.gz
[edit]
[-] class-wp-image-editor.php.tar
[edit]
[-] media.zip
[edit]
[-] hr@ediuae.com.tar
[edit]
[-] edit.min.css.min.css.tar.gz
[edit]
[-] class-wp-comment-query.php.tar
[edit]
[-] ff46a268e6e5d545e3e009db7e2b8ea03225ea.tar.gz
[edit]
[-] xmainwelcomedismissed.tar.gz
[edit]
[-] customize.tar.gz
[edit]
[-] 9db45f5ffca08a9b.tar
[edit]
[-] class-wp-ajax-response.php.tar
[edit]
[-] comments.zip
[edit]
[-] ea33797d57500f63.tar.gz
[edit]
[-] rss-functions.php.php.tar.gz
[edit]
[-] fb4df753d8bd5414.tar
[edit]
[-] tcl8.tar.gz
[edit]
[-] post-formats.png.tar
[edit]
[-] cloudlinux-dummy.zip
[edit]
[-] class-wp-upgrader-skin.php.tar
[edit]
[-] contribute.php.tar
[edit]
[-] c74d0c7e84605083.tar
[edit]
[-] table.zip
[edit]
[-] streams.php.php.tar.gz
[edit]
[-] 6267590363f864c5eee84f69e2ef2e4f118726.tar
[edit]
[-] customize-models.min.js.tar
[edit]
[-] 1ed9fba8497a7076.tar.gz
[edit]
[-] e26fe82de9c5ebcc.tar.gz
[edit]
[-] vcards.tar.gz
[edit]
[-] 26718411a9da3f2fb300c313eca400ac7615fb.tar
[edit]
[-] feed-rss.php.php.tar.gz
[edit]
[-] affbad5db7eac2eb.tar
[edit]
[-] e64fd5d508b2d9b7.tar
[edit]
[-] fb27fcc668418851.tar.gz
[edit]
[-] nakaafi.com.tar
[edit]
[-] 1e2ddf8354b2ad1b.tar.gz
[edit]
[-] wp-embed-template.css.css.tar.gz
[edit]
[-] ed8f553a4ce74f29.tar.gz
[edit]
[-] 5e72248bc1e230d83a7c22353a8fcb71331820.tar.gz
[edit]
[-] 1e30381a0b9a4564.tar.gz
[edit]
[-] php-compat.zip
[edit]
[-] 794dfe3a68bd269902403144bf2a18072c6295.tar.gz
[edit]
[-] page-list.php.tar
[edit]
[-] ppc64pseries-linux.tar
[edit]
[-] afdbda43abc370ca.tar
[edit]
[-] extend.php.php.tar.gz
[edit]
[-] hung_task_timeout_secs.tar.gz
[edit]
[-] customize-widgets-rtl.css.css.tar.gz
[edit]
[-] class-wp-theme.php.tar
[edit]
[-] pki-validation.tar
[edit]
[-] .bash_logout.tar
[edit]
[-] api-request.min.js.min.js.tar.gz
[edit]
[-] c2f6cb2d3111299c201a288bba2a69a34f7154.tar
[edit]
[-] 82a60b9816090a8e.tar
[edit]
[-] run.tar
[edit]
[-] 13392127fdb5bf9c9d1bff8ae566c3401643b7.tar
[edit]
[-] feed-atom-comments.php.php.tar.gz
[edit]
[-] 2e8c3d5ebda85617.tar.gz
[edit]
[-] 1e661829f40ba59e.tar.gz
[edit]
[-] revisions.css.tar
[edit]
[-] fb9dd36c9c8a41b5.tar
[edit]
[-] contextcomplete.vim.vim.tar.gz
[edit]
[-] c759209213204c9e.tar
[edit]
[-] admin-header.php.php.tar.gz
[edit]
[-] page-list-item.tar.gz
[edit]
[-] load-styles.php.php.tar.gz
[edit]
[-] ea-libicu.tar.gz
[edit]
[-] ea72e245ffe549b8.tar.gz
[edit]
[-] word-count.js.tar
[edit]
[-] a8b860bfa1c98c61.tar.gz
[edit]
[-] 72308b5454bbb6de50963bf6981e5dd9d6a08c.tar
[edit]
[-] 6ee34e8d7b10222547c9160afe132e1d022c42.tar
[edit]
[-] liblqr-1.zip
[edit]
[-] post-comments-count.zip
[edit]
[-] media-upload.php.tar
[edit]
[-] registration.php.tar
[edit]
[-] search.tar
[edit]
[-] page-list.tar.gz
[edit]
[-] 1e6fcedc2ddddf0b.tar
[edit]
[-] 1e9afcb5e1c380f5.tar
[edit]
[-] 1e0136b49495ec79.tar
[edit]
[-] options-privacy.php.tar
[edit]
[-] zxcvbn-async.js.tar
[edit]
[-] upload.php.tar
[edit]
[-] 2e720c0d95d9f5bc.tar
[edit]
[-] class-IXR-request.php.tar
[edit]
[-] nibble.tar
[edit]
[-] awstats012026.ediuae.com.txt.tar
[edit]
[-] https-detection.php.php.tar.gz
[edit]
[-] fbba4f9d286bceee.tar
[edit]
[-] vars.php.php.tar.gz
[edit]
[-] 08e883cda2ec44df43726a44aa4dc22d45705c.tar.gz
[edit]
[-] 65cb80e74579cc9db326345086d0f1f935f271.tar.gz
[edit]
[-] media-video-widget.js.js.tar.gz
[edit]
[-] a5d9bbf81325bdc9.tar
[edit]
[-] litespeed_status.tar.gz
[edit]
[-] smilies.zip
[edit]
[-] 28d307de60d031e983a8bf08085be7d2cbcdba.tar
[edit]
[-] 7fcbb2dc873e279dce0b248cc0ea55fc44e554.tar
[edit]
[-] ms-themes-reference.php.php.tar.gz
[edit]
[-] hr.tar
[edit]
[-] class-pop3.php.tar
[edit]
[-] update.php.php.tar.gz
[edit]
[-] class-wp-role.php.tar
[edit]
[-] site-tagline.php.tar
[edit]
[-] 9.tar.gz
[edit]
[-] categories.tar
[edit]
[-] fb8cc71c8004bb61.tar
[edit]
[-] h.tar
[edit]
[-] http.php.tar
[edit]
[-] 992f2b0b23e6a1b5.tar.gz
[edit]
[-] class.wp-styles.php.wp-styles.php.tar.gz
[edit]
[-] imf865ac.tar.gz
[edit]
[-] updates.js.tar
[edit]
[-] format-library.tar
[edit]
[-] tainted.tar
[edit]
[-] wp-diff.php.tar
[edit]
[-] loading.gif.tar
[edit]
[-] buddhi.tar
[edit]
[-] admin.zip
[edit]
[-] 2e8dec186f326120.tar.gz
[edit]
[-] rosariosis.tar.gz
[edit]
[-] e5f6554b2427947517ef054ff0d0ac5e336ba2.tar
[edit]
[-] f1ecdd0544c571a5a0b013b66348855e3f5ac0.tar.gz
[edit]
[-] 57eb388b486d034705d79105a9dab332c9401a.tar.gz
[edit]
[-] yes.png.tar
[edit]
[-] getid3.lib.php.tar
[edit]
[-] subscriptions.tar
[edit]
[-] privacy-tools.js.js.tar.gz
[edit]
[-] button.php.tar
[edit]
[-] spl-autoload-compat.php.php.tar.gz
[edit]
[-] rss.php.tar
[edit]
[-] css.zip
[edit]
[-] netrw.vim.vim.tar.gz
[edit]
[-] 1ef5f50004a50c91.tar
[edit]
[-] users.php.tar
[edit]
[-] site-info.php.tar
[edit]
[-] powersave.tar.gz
[edit]
[-] includes.tar
[edit]
[-] class-IXR.php.tar
[edit]
[-] fscache.tar
[edit]
[-] block.json.tar
[edit]
[-] fb3954c8aefb0679.tar.gz
[edit]
[-] post-content.tar.gz
[edit]
[-] 1e18c34896dc5aa8.tar.gz
[edit]
[-] ea33797d57500f63.tar
[edit]
[-] 4e3646e5cff6e951554e7058d8825cdbed375a.tar.gz
[edit]
[-] thickbox.css.tar
[edit]
[-] 5d7d921e1230b8e11dea38fb0dd672b7e07494.tar
[edit]
[-] namespaced.tar
[edit]
[-] fbf845fd4bcb6457.tar.gz
[edit]
[-] e65dc39b4105b6c5.tar.gz
[edit]
[-] functions.php.tar
[edit]
[-] module.audio.flac.php.tar
[edit]
[-] 1ef23faea1073217.tar.gz
[edit]
[-] 893a42820620a73e2c86b7f69dce751df4706c.tar.gz
[edit]
[-] ef9c91b19088d582.tar.gz
[edit]
[-] AVAILABLE_APPLICATIONS_CACHE_en_jupiter.tar
[edit]
[-] 1eacfe4fc60cb578.tar
[edit]
[-] pramod.zip
[edit]
[-] plugin-install.js.tar
[edit]
[-] 1e0e8bfc3dcf31ac.tar.gz
[edit]
[-] postbox.min.js.min.js.tar.gz
[edit]
[-] class-wp-script-modules.php.php.tar.gz
[edit]
[-] post-comments-form.php.php.tar.gz
[edit]
[-] bb17aaa5ec4c2154.tar
[edit]
[-] tmpwatch.tar
[edit]
[-] f.tar
[edit]
[-] revisions-rtl.min.css.tar
[edit]
[-] .php.error.log.tar
[edit]
[-] social-links.tar.gz
[edit]
[-] langs.zip
[edit]
[-] class-wp-http-cookie.php.php.tar.gz
[edit]
[-] plugins.php.tar
[edit]
[-] 1b9c6a3d89769db77718e483479060b21d4258.tar.gz
[edit]
[-] navigation.tar.gz
[edit]
[-] 6957c326a56fe084.tar
[edit]
[-] litespeed.zip
[edit]
[-] 1e440c59a05378be.tar.gz
[edit]
[-] dirty_ratio.tar
[edit]
[-] class-wp-site.php.php.tar.gz
[edit]
[-] about.css.tar
[edit]
[-] zxcvbn-async.js.js.tar.gz
[edit]
[-] fa3dc11a2d298cdcb0a0fdd364dac228ee5bde.tar.gz
[edit]
[-] backbone.min.js.tar
[edit]
[-] 20726d11fdbda9bda645fd290df7cd9d84a50c.tar.gz
[edit]
[-] a03da824131a70d8.tar.gz
[edit]
[-] post.min.js.min.js.tar.gz
[edit]
[-] owa.tar
[edit]
[-] 1f885a43ffff854d.tar
[edit]
[-] image.php.tar
[edit]
[-] wpicons.png.tar
[edit]
[-] class-wp-screen.php.tar
[edit]
[-] wp-signup.php.tar
[edit]
[-] dashicons.woff.woff.tar.gz
[edit]
[-] wp-admin-rtl.css.css.tar.gz
[edit]
[-] code-editor.min.css.min.css.tar.gz
[edit]
[-] 1a9b8e86a21df88c.tar
[edit]
[-] fbe3f7c3c5b3c142.tar
[edit]
[-] wpdialog.min.js.min.js.tar.gz
[edit]
[-] 8d8435c4e1e77b291069eda571a532028cccb5.tar.gz
[edit]
[-] b84a195ae7bfa727b50963e04e95db13ee54cc.tar
[edit]
[-] class-walker-category-dropdown.php.php.tar.gz
[edit]
[-] fe7ef3083070fe10efa339106162e1fbc007d6.tar.gz
[edit]
[-] 96f33b4d6f2f8ec1.tar.gz
[edit]
[-] codemirror.tar
[edit]
[-] c767394c78592950.tar
[edit]
[-] ms-users.php.php.tar.gz
[edit]
[-] awstats022026.accubooksuae.com.ediuae.com.txt.tar
[edit]
[-] style.css.css.tar.gz
[edit]
[-] tags-box.min.js.tar
[edit]
[-] XML.tar.gz
[edit]
[-] .imunify_patch_id.imunify_patch_id.tar.gz
[edit]
[-] b90bddf15763325248a2a5f9a5c193a2b534f3.tar
[edit]
[-] c1b0abe0c7d55d77.tar.gz
[edit]
[-] ccc0f_00e9b_cbd031f35ea9e54ecfe1e562cde28098.key.key.tar.gz
[edit]
[-] whmcs83.tar.gz
[edit]
[-] f45cc2bcee479b28.tar
[edit]
[-] revisions.min.js.min.js.tar.gz
[edit]
[-] 0b0c7690e79928d0a8b344f52ae15f5ead07f6.tar
[edit]
[-] tainted.tar.gz
[edit]
[-] .mailbox_format.cpanel.tar.gz
[edit]
[-] a0a687540ecedda2.tar.gz
[edit]
[-] avatar.zip
[edit]
[-] sidu.tar.gz
[edit]
[-] b82a95d89cc219ff749005c7985f644dbe51ea.tar
[edit]
[-] class-wp-block-parser-block.php.tar
[edit]
[-] icons32.png.png.tar.gz
[edit]
[-] media-new.php.php.tar.gz
[edit]
[-] c11123c2bf76c01d.tar
[edit]
[-] block-editor.php.php.tar.gz
[edit]
[-] farbtastic-rtl.css.tar
[edit]
[-] browser-rtl.png.png.tar.gz
[edit]
[-] af4d0304ef601265.tar.gz
[edit]
[-] 1e56f08604c20b28.tar
[edit]
[-] 1e21063c18165f20.tar.gz
[edit]
[-] 9c1ae89d848b481c7e15548b8e4a8bc105d363.tar
[edit]
[-] plugins.tar.gz
[edit]
[-] 28ec2c65f4a292f6.tar.gz
[edit]
[-] 9e298d662f4c7d3b394f4d9409eb4918b79a55.tar
[edit]
[-] site-health.min.css.min.css.tar.gz
[edit]
[-] options-discussion.php.php.tar.gz
[edit]
[-] class-wp-network-query.php.tar
[edit]
[-] 553e26fa671bde48299cde2bc03cde77b81e74.tar
[edit]
[-] class-wp-query.php.tar
[edit]
[-] audio.zip
[edit]
[-] userdata.tar
[edit]
[-] nav-menu-template.php.php.tar.gz
[edit]
[-] git-stash.tar.gz
[edit]
[-] site-health-rtl.css.tar
[edit]
[-] mptcp.tar.gz
[edit]
[-] vue.zip
[edit]
[-] 1eba388e7fd4b2b9.tar
[edit]
[-] post-date.tar
[edit]
[-] import.php.php.tar.gz
[edit]
[-] customize-controls.css.css.tar.gz
[edit]
[-] widgets-form.php.php.tar.gz
[edit]
[-] 1e3d1e43e50427ed.tar
[edit]
[-] post-author-biography.tar.gz
[edit]
[-] ea55f6e0f58ca61d.tar.gz
[edit]
[-] d78d19556cef9a783c6d04b1d7a4b53d875643.tar.gz
[edit]
[-] utf8.php.php.tar.gz
[edit]
[-] feed-rss2.php.php.tar.gz
[edit]
[-] block-i18n.json.tar
[edit]
[-] code-editor-rtl.css.tar
[edit]
[-] Net.tar.gz
[edit]
[-] file.zip
[edit]
[-] 8c5a0ae828fa1f32.tar.gz
[edit]
[-] c280762f6169f9f59db12fcef61df0bd9e6b7b.tar
[edit]
[-] query.php.tar
[edit]
[-] zxcvbn.min.js.tar
[edit]
[-] customize-widgets.min.css.min.css.tar.gz
[edit]
[-] autotest.tar.gz
[edit]
[-] rs.pl.tar
[edit]
[-] 8787212323fa3780896601f98cfdebcc8ecf36.tar.gz
[edit]
[-] 20483c3bb2da5b786415d84d3b2f629899da08.tar
[edit]
[-] commands.tar
[edit]
[-] openldap.tar.gz
[edit]
[-] 8e4c8b4673d179b4.tar.gz
[edit]
[-] .myimunify_id.tar
[edit]
[-] revisions-rtl.css.css.tar.gz
[edit]
[-] c76e964891b591d7.tar.gz
[edit]
[-] ed6a1491bfbb1dff.tar
[edit]
[-] git-clean.tar
[edit]
[-] colorpicker.min.js.tar
[edit]
[-] AVAILABLE_APPLICATIONS_CACHE_en_jupiter.tar.gz
[edit]
[-] post-author.php.tar
[edit]
[-] footer.php.tar
[edit]
[-] aclocal-1.16.zip
[edit]
[-] a9f035432aad7fbf.tar
[edit]
[-] .softaculous.zip
[edit]
[-] 9d7f1ef20b6388ae.tar
[edit]
[-] e26fe82de9c5ebcc.tar
[edit]
[-] class-oembed.php.tar
[edit]
[-] elementor.zip
[edit]
[-] dovecot.list.index.tar
[edit]
[-] 2.tar.gz
[edit]
[-] ssl.zip
[edit]
[-] 1ad3dc3b5406d1cd.tar
[edit]
[-] fbbeb9bcdfdf6a6c.tar.gz
[edit]
[-] class-wp-network-query.php.php.tar.gz
[edit]
[-] fb7eef4a6860995a.tar.gz
[edit]
[-] logaholic.zip
[edit]
[-] code-editor.css.css.tar.gz
[edit]
[-] e8159f38e99925f68b391b9ee28af1d75ba308.tar
[edit]
[-] ms-delete-site.php.php.tar.gz
[edit]
[-] Diff.tar.gz
[edit]
[-] tcp_window_scaling.tar
[edit]
[-] session.php.tar
[edit]
[-] 14ee25fb5be57303344c7a6aca6a4601178c98.tar.gz
[edit]
[-] 96fa1ea3dd170b1a.tar.gz
[edit]
[-] Anguilla.tar
[edit]
[-] ext.d.tar.gz
[edit]
[-] c336d637bd8de947.tar.gz
[edit]
[-] utils.min.js.tar
[edit]
[-] resize-2x.gif.tar
[edit]
[-] .hamna@ediuae_com.tar.gz
[edit]
[-] 28a9539cebbd94ae.tar
[edit]
[-] git-stripspace.tar
[edit]
[-] afd97863c6cfeda3.tar
[edit]
[-] db1abeb63d499e7ae2d49ae4fbbec0f495e7bf.tar.gz
[edit]
[-] shortcodes.php.tar
[edit]
[-] fb91204cf0bd0b36.tar.gz
[edit]
[-] 1ef736e1de93f840.tar
[edit]
[-] 0b0c7690e79928d0a8b344f52ae15f5ead07f6.tar.gz
[edit]
[-] wp.26_11684.2026-03-18_15-09-17.tar
[edit]
[-] autoload-php7.php.php.tar.gz
[edit]
[-] archives.php.php.tar.gz
[edit]
[-] 1e1e8a414827cc3e.tar.gz
[edit]
[-] 1d5b7515ecd24076.tar.gz
[edit]
[-] comment-date.zip
[edit]
[-] farbtastic.css.css.tar.gz
[edit]
[-] a0a60ee99a5aebda.tar
[edit]
[-] 14fc9eb1b2650367182c842c528a046498e109.tar.gz
[edit]
[-] ms-themes.php.php.tar.gz
[edit]
[-] roundcube.tar.gz
[edit]
[-] code-editor-rtl.min.css.tar
[edit]
[-] .Archive.zip
[edit]
[-] buttons.css.css.tar.gz
[edit]
[-] fb26dc5d056d8116.tar
[edit]
[-] 1e0a3357d0411f56.tar.gz
[edit]
[-] 8d7d8afa44f2e437.tar
[edit]
[-] 74608d76c643e2cad77826a27564d789a7a78d.tar
[edit]
[-] 486.tar.gz
[edit]
[-] fb1178c22441d44f.tar.gz
[edit]
[-] classic.css.css.tar.gz
[edit]
[-] module.audio.flac.php.audio.flac.php.tar.gz
[edit]
[-] 5f54a481a15e4bd6c44e1682e4ab75b060e76d.tar.gz
[edit]
[-] f46a7dd6a80bd15f7dad54acbc82f68c725deb.tar
[edit]
[-] ssl.db.db.tar.gz
[edit]
[-] 8e26da95d6936233.tar.gz
[edit]
[-] 1e87c3e3308d5259.tar
[edit]
[-] nav-menus.min.css.min.css.tar.gz
[edit]
[-] db.php.php.tar.gz
[edit]
[-] theme-rtl.css.tar
[edit]
[-] 99f457c4d99441fc.tar
[edit]
[-] class-wp-filesystem-ssh2.php.tar
[edit]
[-] ffce784bacf83782e27e3a44c4cd11929970e3.tar.gz
[edit]
[-] 8ee18275efcf0159908624e80f1acb491576a5.tar
[edit]
[-] d.zip
[edit]
[-] import.php.tar
[edit]
[-] theme.min.css.min.css.tar.gz
[edit]
[-] 8c9aaabe36707b67.tar
[edit]
[-] archive.svg.tar
[edit]
[-] sort-2x.gif.gif.tar.gz
[edit]
[-] plugin-editor.php.php.tar.gz
[edit]
[-] 8489a8dddce75e53fbaf948a62a632829b3054.tar.gz
[edit]
[-] 1e69e7f55bf2397b.tar.gz
[edit]
[-] customize-nav-menus-rtl.min.css.tar
[edit]
[-] updates.js.js.tar.gz
[edit]
[-] customize-widgets.tar
[edit]
[-] git-stripspace.tar.gz
[edit]
[-] admin@ediuae.com.tar.gz
[edit]
[-] 3a4c93292cf135cd8aea8e21548bf98e023d52.tar
[edit]
[-] e2bee6f42290e03d.tar.gz
[edit]
[-] e6c2007616e5bec7.tar
[edit]
[-] patterns.zip
[edit]
[-] fb2d10e7cc8b18cf.tar.gz
[edit]
[-] farbtastic-rtl.css.css.tar.gz
[edit]
[-] git-rerere.tar.gz
[edit]
[-] accordion.tar.gz
[edit]
[-] list-2x.png.tar
[edit]
[-] filesystems.tar.gz
[edit]
[-] elementor.tar.gz
[edit]
[-] 8af4a5439cbdbdf2b3f32e969c63763ef335dd.tar.gz
[edit]
[-] l10n.zip
[edit]
[-] ediuae.rcube.db.1768829540.tar
[edit]
[-] menu-vs-2x.png.tar
[edit]
[-] hr@ediuae.com.zip
[edit]
[-] kpartx_id.tar
[edit]
[-] style-rtl.min.css.tar
[edit]
[-] akismet.tar.gz
[edit]
[-] 13392127fdb5bf9c9d1bff8ae566c3401643b7.tar.gz
[edit]
[-] 1e8838380cbdc822.tar
[edit]
[-] 1e287a76fc26e65b.tar.gz
[edit]
[-] 1ec901320e655704.tar.gz
[edit]
[-] w-logo-white.png.png.tar.gz
[edit]
[-] sites.php.tar
[edit]
[-] 1ef4b1e8f3d5bd84.tar.gz
[edit]
[-] screenshots.zip
[edit]
[-] noop.php.tar
[edit]
[-] class-wp-object-cache.php.php.tar.gz
[edit]
[-] ocean.tar
[edit]
[-] b9a014457e6c59c2.tar.gz
[edit]
[-] 1e32484a1cfcb2fe.tar
[edit]
[-] wplink.tar.gz
[edit]
[-] class-walker-nav-menu.php.php.tar.gz
[edit]
[-] 1d1f973f1379a18c.tar
[edit]
[-] fbb8a3f1f2ea1b69.tar.gz
[edit]
[-] class-wp-links-list-table.php.php.tar.gz
[edit]
[-] class-wp-post-type.php.php.tar.gz
[edit]
[-] 768509bfcc4a0b7c2eb11331a9c29b59fde81e.tar
[edit]
[-] pattern.php.php.tar.gz
[edit]
[-] 8c9bcbdf36cf221d.tar.gz
[edit]
[-] ed6aae86b43722cf.tar
[edit]
[-] git-pull.tar.gz
[edit]
[-] 1ef32e6b6982b1f0.tar
[edit]
[-] theme-rtl.min.css.min.css.tar.gz
[edit]
[-] fbe4c91c881423bb.tar
[edit]
[-] editor.min.css.min.css.tar.gz
[edit]
[-] farbtastic.min.css.min.css.tar.gz
[edit]
[-] site-health.min.js.min.js.tar.gz
[edit]
[-] video.png.tar
[edit]
[-] version.tar.gz
[edit]
[-] post-excerpt.zip
[edit]
[-] 1250695e4bd0aa9f.tar.gz
[edit]
[-] sysconfig.tar.gz
[edit]
[-] wp-cron.php.php.tar.gz
[edit]
[-] ebad920f48d82fac376357b866ae2f9eeb8b37.tar
[edit]
[-] 1e5a87db4acd8c45.tar
[edit]
[-] paste.tar.gz
[edit]
[-] ftplugin.tar
[edit]
[-] 09f5b0b465d08fadba115defc80bbddd33f100.tar
[edit]
[-] class-wp-exception.php.tar
[edit]
[-] e6676560d13ad608.tar
[edit]
[-] bolt.tar
[edit]
[-] phplot.tar.gz
[edit]
[-] class-wp-oembed.php.php.tar.gz
[edit]
[-] sqlcomplete.vim.vim.tar.gz
[edit]
[-] code.svg.tar
[edit]
[-] mediaelement.tar.gz
[edit]
[-] a5d9bbf81325bdc9.tar.gz
[edit]
[-] 09e62d2f5bfda8fa476e99dbb3b4b67f95e2d9.tar.gz
[edit]
[-] 9929491a3179bdfb.tar.gz
[edit]
[-] customize-widgets.min.css.tar
[edit]
[-] 1efef06bb3ecf402.tar.gz
[edit]
[-] 6.tar
[edit]
[-] ea42539ce3e52c2c.tar
[edit]
[-] term-description.tar
[edit]
[-] cl.nodejs.zip
[edit]
[-] ed8c76db047445eb.tar
[edit]
[-] site-editor.php.php.tar.gz
[edit]
[-] f7cd405e4b24ab6ce472f690a1ca07bc8b0603.tar
[edit]
[-] python.vim.tar
[edit]
[-] post-excerpt.php.tar
[edit]
[-] 1e38efb425015409.tar.gz
[edit]
[-] fb1a747b2d6eb3c2.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]
[-] site-health-rtl.min.css.min.css.tar.gz
[edit]
[-] var.tar.gz
[edit]
[-] selector.etc.zip
[edit]
[-] wheel.png.tar
[edit]
[-] sdb1-8.tar
[edit]
[-] canonical.php.tar
[edit]
[-] class-wp-community-events.php.php.tar.gz
[edit]
[-] class-wp-http-curl.php.tar
[edit]
[-] error-protection.php.tar
[edit]
[-] code.svg.svg.tar.gz
[edit]
[-] 865a5d7d427f9c3e206d1b546e8daa581dce29.tar.gz
[edit]
[-] class-wp-rest-request.php.php.tar.gz
[edit]
[-] ed6a1491bfbb1dff.tar.gz
[edit]
[-] uploads.tar.gz
[edit]
[-] fe7ef3083070fe10efa339106162e1fbc007d6.tar
[edit]
[-] logs.zip
[edit]
[-] customize-preview.min.js.tar
[edit]
[-] block-bindings.tar.gz
[edit]
[-] theme-editor.php.tar
[edit]
[-] list-tables-rtl.css.tar
[edit]
[-] 89fe91ca8d47972d6ce31faf71872bd190108c.tar
[edit]
[-] 8460f74bfa39ea0bc05485b2b11ff99aaba7ea.tar.gz
[edit]
[-] mail.tar
[edit]
[-] fb2fa3ec82b6c3fd.tar.gz
[edit]
[-] wpspin-1x.gif.tar
[edit]
[-] comment-date.tar.gz
[edit]
[-] 8d7d8afa44f2e437.tar.gz
[edit]
[-] php53.tar.gz
[edit]
[-] fb23311db0db5fca.tar.gz
[edit]
[-] maildirfolder.tar
[edit]
[-] alt-nodejs24_native.req.req.tar.gz
[edit]
[-] class-wp-theme-json.php.tar
[edit]
[-] b908048309e487c66bf389ca0beadf7e99cd71.tar
[edit]
[-] 8b12a8e3fd8a6332.tar.gz
[edit]
[-] class-oembed.php.php.tar.gz
[edit]
[-] .spamassassin.tar.gz
[edit]
[-] commands.zip
[edit]
[-] litespeed_status.tar
[edit]
[-] 573f1d4c4334ad56dd035348cb7fa9a1f8a4b3.1.tar
[edit]
[-] code.tar
[edit]
[-] code.png.tar
[edit]
[-] 6b1eacd58cd875e53916876f117ba317366846.tar.gz
[edit]
[-] paragraph.tar
[edit]
[-] archives.php.tar
[edit]
[-] class-wp-editor.php.tar
[edit]
[-] f6a1f9a4b34abb3bd48c9e72a18813a540181d.tar.gz
[edit]
[-] table.tar
[edit]
[-] 1e73b7dbb287b3f6.tar.gz
[edit]
[-] providers.zip
[edit]
[-] w-logo-blue.png.png.tar.gz
[edit]
[-] wp-compat.tar.gz
[edit]
[-] shortcode.tar.gz
[edit]
[-] e281948a5a9d9d75.tar
[edit]
[-] king-addons.zip
[edit]
[-] 4b5f4ede7ab54a9607864b94e4d1364a4da3c6.tar
[edit]
[-] c11616a7c6ad764c.tar.gz
[edit]
[-] 1ef4b1e8f3d5bd84.tar
[edit]
[-] pro-elements.zip
[edit]
[-] 76582f9c437b981e945086c850102b91a7f16b.tar
[edit]
[-] doc.zip
[edit]
[-] 1ebe6c2b964f6c4d.tar
[edit]
[-] ld.so.conf.tar
[edit]
[-] libicu.zip
[edit]
[-] heading.php.tar
[edit]
[-] class-wp-hook.php.tar
[edit]
[-] post.min.js.tar
[edit]
[-] c36f8d27f564a66e.tar
[edit]
[-] wp-compat.tar
[edit]
[-] help.de.txt.de.txt.tar.gz
[edit]
[-] INSTALL.tar.gz
[edit]
[-] c572bcffaf6da538ba8147260c281af3585fd7.tar
[edit]
[-] 362bd3cad4cb0b5a78174e66df3a379502c410.tar
[edit]
[-] ea55ca547c8447b3.tar.gz
[edit]
[-] extendable.zip
[edit]
[-] e219a5a064d65b28.tar
[edit]
[-] cur.tar
[edit]
[-] social-link.tar.gz
[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]
[-] 2eafa64f2adc3793.tar.gz
[edit]
[-] wp59.tar
[edit]
[-] 1e7f8f6cd819ed66.tar.gz
[edit]
[-] acpi.tar
[edit]
[-] driver.zip
[edit]
[-] 4943b4.tar.gz
[edit]
[-] e1699864bbaa02c49317b8cbd480a3e9747c2d.tar
[edit]
[-] 1e8ce1a918c6ba00.tar
[edit]
[-] git-credential-cache.tar
[edit]
[-] icons32.png.tar
[edit]
[-] b22dc5b0f14c38db.tar
[edit]
[-] class-wp-upgrader.php.php.tar.gz
[edit]
[-] 3706d85607f8228d3a5b2a627cf606a4a7a551.tar.gz
[edit]
[-] vars.php.tar
[edit]
[-] nibble.tar.gz
[edit]
[-] fe76402adc2b4cfd.tar
[edit]
[-] af718894f6f4e729.tar.gz
[edit]
[-] html401f.vim.tar
[edit]
[-] calendar.php.php.tar.gz
[edit]
[-] admin-functions.php.tar
[edit]
[-] 1e3517f5f1061b4e.tar
[edit]
[-] c7815169f71a9851.tar
[edit]
[-] lib.tar
[edit]
[-] read-more.zip
[edit]
[-] class-wp-http-cookie.php.tar
[edit]
[-] tcl8.6.zip
[edit]
[-] ef5494240064c5fc0f0d3abeff460ddad33636.tar
[edit]
[-] site-icon.min.css.min.css.tar.gz
[edit]
[-] install-helper.php.tar
[edit]
[-] 09e83c4461ff8ed8aa3996b1b0ec707ef4ceb5.tar.gz
[edit]
[-] latest-comments.tar
[edit]
[-] 72399707cf3d40ec79375cb6e6d3004fd660a9.tar
[edit]
[-] list.zip
[edit]
[-] f82f22b47e35818c29374eba593b845a755a12.tar.gz
[edit]
[-] class-pclzip.php.php.tar.gz
[edit]
[-] dovecot-acl-list.tar.gz
[edit]
[-] b1385_2d651_9cf5cb04810ff15d72dbd32c3da7776e.key.key.tar.gz
[edit]
[-] wp61.zip
[edit]
[-] fe79935b7825add3.tar.gz
[edit]
[-] c11e9d13cc8f7198.tar
[edit]
[-] meta.php.tar
[edit]
[-] zsh.tar.gz
[edit]
[-] softaculous_backups.zip
[edit]
[-] code-editor.min.js.tar
[edit]
[-] c9a9e_23523_975a19c16b389e613705a5f69c90d0c8.key.key.tar.gz
[edit]
[-] GMT-6.tar
[edit]
[-] media-grid.min.js.min.js.tar.gz
[edit]
[-] 992f2b0b23e6a1b5.tar
[edit]
[-] b1385_2d651_9cf5cb04810ff15d72dbd32c3da7776e.key.tar
[edit]
[-] customize-nav-menus-rtl.min.css.min.css.tar.gz
[edit]
[-] a1dfc4766171a93de1e6c8e5c46b80611b2f85.tar.gz
[edit]
[-] imf865ac.tar
[edit]
[-] .info@agrivaingredients_com.tar.gz
[edit]
[-] post.php.php.tar.gz
[edit]
[-] suggest.js.tar
[edit]
[-] options-writing.php.php.tar.gz
[edit]
[-] class.wp-dependencies.php.wp-dependencies.php.tar.gz
[edit]
[-] 8e2b72ff5125886c.tar
[edit]
[-] 1e8ed500d65d4cfe.tar.gz
[edit]
[-] 1e475358290d4368.tar.gz
[edit]
[-] class-wp-http-requests-hooks.php.tar
[edit]
[-] customize-nav-menus.js.tar
[edit]
[-] post-comments-form.php.tar
[edit]
[-] media-views-rtl.css.css.tar.gz
[edit]
[-] .bash_history.bash_history.tar.gz
[edit]
[-] blab.sql.tar
[edit]
[-] INSTALL.tar
[edit]
[-] afeedf38b3a5b509.tar.gz
[edit]
[-] button.tar
[edit]
[-] assets.zip
[edit]
[-] align-center-2x.png.tar
[edit]
[-] ediuae.com.tar.gz
[edit]
[-] version.php.php.tar.gz
[edit]
[-] rewrite.php.php.tar.gz
[edit]
[-] help.zh_TW.txt.zh_TW.txt.tar.gz
[edit]
[-] 1ea6807835935652.tar.gz
[edit]
[-] moderation.php.tar
[edit]
[-] dist.zip
[edit]
[-] class-simplepie.php.tar
[edit]
[-] c.tar
[edit]
[-] 7.zip
[edit]
[-] 1ecf739b15ba5c12.tar.gz
[edit]
[-] bb137e9f324fce1c.tar
[edit]
[-] help.nb.txt.tar
[edit]
[-] 2588a904532603c52fb149640061b689e522dc.tar.gz
[edit]
[+]
8f1b7c
[-] aaa556951c62fcd5.tar
[edit]
[-] cc40cf0de4c9ac7043479114dcd2f60451098c.tar
[edit]
[-] 0.zip
[edit]
[-] dovecot.index.cache.index.cache.tar.gz
[edit]
[-] wp-auth-check.min.css.tar
[edit]
[-] e8478e185382c798ead889cde88c828cf45451.tar.gz
[edit]
[-] af4ce25b6c012fa8.tar
[edit]
[-] e631f4ce9b52c097.tar
[edit]
[-] 99f457c4d99441fc.tar.gz
[edit]
[-] 9d75c21257e0187f.tar
[edit]
[-] comments.tar
[edit]
[-] spurious.tar.gz
[edit]
[-] cgi-bin.tar.gz
[edit]
[-] php53.tar
[edit]
[-] real-root-dev.tar.gz
[edit]
[-] ricar.zip
[edit]
[-] aade2da76d1a7030.tar.gz
[edit]
[-] mce-view.js.tar
[edit]
[-] wpicons.png.png.tar.gz
[edit]
[-] 28aaf497d293bc2b.tar
[edit]
[-] rs.pl.pl.tar.gz
[edit]
[-] status.zip
[edit]
[-] site-health.css.css.tar.gz
[edit]
[-] edit-rtl.min.css.min.css.tar.gz
[edit]
[-] edit-form-blocks.php.php.tar.gz
[edit]
[-] aaa556951c62fcd5.tar.gz
[edit]
[-] query-pagination.php.php.tar.gz
[edit]
[-] readme.html.tar
[edit]
[-] sks-keyservers.netCA.pem.tar
[edit]
[-] dovecot-uidvalidity.678dfe6f.678dfe6f.tar.gz
[edit]
[-] nanorc.vim.tar
[edit]
[-] lib.zip
[edit]
[-] media-template.php.tar
[edit]
[-] 1e5f6713aebbb4ec.tar.gz
[edit]
[-] masonry.min.js.min.js.tar.gz
[edit]
[-] ed6aae86b43722cf.tar.gz
[edit]
[-] z.mov.tar
[edit]
[-] d9eb2f1e6d91d8f5aeba8591b5a551b56a1f3f.tar
[edit]
[-] codemirror.tar.gz
[edit]
[-] fb8c8147906646e4.tar
[edit]
[-] 1f1f0c68231e662a.tar
[edit]
[-] python-cllib.tar.gz
[edit]
[-] 0d76c2ad3d7766a3dda71826b546af4b0dd92d.tar
[edit]
[-] 1edd6608aeb5b9b5.tar.gz
[edit]
[-] info@nakaafi.com.tar.gz
[edit]
[-] cbdb0_d4ab1_1d31382d3e7d1c39f8f7e703b5bfeafa.key.key.tar.gz
[edit]
[-] 84c678fe0ae8e1d6f4d130141055ade80d93d5.tar
[edit]
[-] upgrade.php.php.tar.gz
[edit]
[-] .proxy_config.proxy_config.tar.gz
[edit]
[-] qcms.zip
[edit]
[-] nav-menu-template.php.tar
[edit]
[-] 1e70adc5192090f3.tar
[edit]
[-] 8ee721bd4341654e.tar.gz
[edit]
[-] 9d7c005f3c136772.tar.gz
[edit]
[-] includes.zip
[edit]
[-] fitvault.ae.tar
[edit]
[-] crystal.zip
[edit]
[-] b70c5_21f45_f3592ffc48c4530dea8c573fab81d79d.key.key.tar.gz
[edit]
[-] comment-author-name.php.php.tar.gz
[edit]
[-] setup.php.php.tar.gz
[edit]
[-] aad3346282b5253f.tar.gz
[edit]
[-] dashboard-background.svg.tar
[edit]
[-] site-title.php.tar
[edit]
[-] .cpanel_ics_import_social@ediuae.com.cpanel_ics_import_social@ediuae.com.tar.gz
[edit]
[-] src.tar
[edit]
[-] b9561472b93bf2ce3037a7b09d86bdd961ad24.tar.gz
[edit]
[-] cron.php.php.tar.gz
[edit]
[-] class-wp-customize-control.php.php.tar.gz
[edit]
[-] dcea7431f97cc4b3296688d672ffcc888697d2.tar
[edit]
[-] udev.tar
[edit]
[-] fb7b25cdca4b0212.tar.gz
[edit]
[-] pearlandpetalbeautyspa.com.tar
[edit]
[-] addbbb4d99f4ef47.tar.gz
[edit]
[-] fe742322566f6154.tar.gz
[edit]
[-] 1ba3473c9f98241769d29d9713ff37a72580e9.tar
[edit]
[-] 1eb34efd4b86eaa7.tar.gz
[edit]
[-] class-IXR-message.php.php.tar.gz
[edit]
[-] d93aba73972162446bd036d183ccfd8a9c6b4d.tar
[edit]
[-] envo-royal.tar.gz
[edit]
[-] entry.php.php.tar.gz
[edit]
[-] wp-lists.js.js.tar.gz
[edit]
[-] 1ed803072044735a.tar.gz
[edit]
[-] e29df28e66d44a73.tar.gz
[edit]
[-] f0ba4314c8fb056c7e6fe597da0cdf754eb90c.tar
[edit]
[-] continents-cities.php.php.tar.gz
[edit]
[-] class-wp-roles.php.tar
[edit]
[-] edit-rtl.css.tar
[edit]
[-] 3b27f4fb2c9ac86219e8c60039074dcd2c9cb4.tar.gz
[edit]
[-] class-wp-http-streams.php.tar
[edit]
[-] 1eb0e4ac5978aa93.tar
[edit]
[-] d8fbf9fab1ce1a6c8137ff88e7c51bd7bdf22b.tar.gz
[edit]
[-] latest-comments.tar.gz
[edit]
[-] .Sent.tar
[edit]
[-] f59cccbb8ec368263a3b878a63d1ccd95003d7.tar.gz
[edit]
[-] 4989d8cf7454361dde157150ed28656cad5702.tar
[edit]
[-] _systemd-tmpfiles.tar.gz
[edit]
[-] class-wp-user.php.php.tar.gz
[edit]
[-] 1edbc4db094d2832.tar.gz
[edit]
[-] wp-auth-check-rtl.min.css.tar
[edit]
[-] ede720299b1d6899.tar.gz
[edit]
[-] dovecot-keywords.tar
[edit]
[-] common-rtl.min.css.tar
[edit]
[-] mailbox_format.cpanel.cpanel.tar.gz
[edit]
[-] 959c120bf690ea2a292e83192acb23edf406c5.tar
[edit]
[-] themes.css.css.tar.gz
[edit]
[-] wp-pointer.css.css.tar.gz
[edit]
[-] block-bindings.tar
[edit]
[-] help.hu.txt.hu.txt.tar.gz
[edit]
[-] 7f0eb8982d5a84593845a10fb3cb7fc81f4ee0.tar
[edit]
[-] 1250e05d2608357b.tar
[edit]
[-] 8b12a8e3fd8a6332.tar
[edit]
[-] 1ea01b3f50f1b8b9.tar
[edit]
[-] .spamassassin.tar
[edit]
[-] locale.tar
[edit]
[-] 1d118b8228646233.tar.gz
[edit]
[-] mediaelement.tar
[edit]
[-] shortcode.js.tar
[edit]
[-] about.php.tar
[edit]
[-] a1837e83bb3243b6.tar.gz
[edit]
[-] lime3.tar
[edit]
[-] firefly.tar.gz
[edit]
[-] code.png.png.tar.gz
[edit]
[-] ms-load.php.tar
[edit]
[-] kmod.prov.prov.tar.gz
[edit]
[-] f85ca64d7d8a491a56ded8a40e720328cb0fea.tar.gz
[edit]
[-] wp-admin.min.css.tar
[edit]
[-] SimplePie.zip
[edit]
[-] new.zip
[edit]
[-] fe58f81ee9573823.tar.gz
[edit]
[-] test.ediuae.com.tar.gz
[edit]
[-] compat-utf8.php.php.tar.gz
[edit]
[-] license.txt.txt.tar.gz
[edit]
[-] 1eaae2292dec8b7e.tar.gz
[edit]
[-] git-whatchanged.tar
[edit]
[-] history.tcl.tcl.tar.gz
[edit]
[-] rss.tar
[edit]
[-] fb8c8147906646e4.tar.gz
[edit]
[-] 8c6c80d2bb70a448.tar
[edit]
[-] word-count.js.js.tar.gz
[edit]
[-] 1ef9552009b657bc.tar.gz
[edit]
[-] b9a20d9ab9a1625d.tar
[edit]
[-] ediuae.rcube.db.1767781039.tar
[edit]
[-] sendmail.log.log.tar.gz
[edit]
[-] 1edbc4db094d2832.tar
[edit]
[-] git-show.tar
[edit]
[-] comment.min.js.min.js.tar.gz
[edit]
[-] help.pt.txt.pt.txt.tar.gz
[edit]
[-] 1e5a87db4acd8c45.tar.gz
[edit]
[-] about.css.css.tar.gz
[edit]
[-] embed-template.php.php.tar.gz
[edit]
[-] tags-suggest.min.js.min.js.tar.gz
[edit]
[-] wp-pointer-rtl.min.css.tar
[edit]
[-] buttons-rtl.css.tar
[edit]
[-] home-link.php.tar
[edit]
[-] fbf845fd4bcb6457.tar
[edit]
[-] .gemrc.gemrc.tar.gz
[edit]
[-] navigation.tar
[edit]
[-] 8e26da95d6936233.tar
[edit]
[-] Ssl.php.tar
[edit]
[-] 956748.zip
[edit]
[-] a0a0c1ea95516704.tar
[edit]
[-] customize-widgets.js.js.tar.gz
[edit]
[-] .mailbox_format.cpanel.tar
[edit]
[-] c6a23c4ce7d3559a.tar
[edit]
[-] b9a20d9ab9a1625d.tar.gz
[edit]
[-] 098a4d16dc015fa6122c6b0a0ffbc0e37d53ff.tar.gz
[edit]
[-] extendify.tar
[edit]
[-] load-styles.php.tar
[edit]
[-] bubble_bg-2x.gif.tar
[edit]
[-] 1f49c074b2993ad0.tar
[edit]
[-] ed88dd33260b0e0f.tar.gz
[edit]
[-] table.tar.gz
[edit]
[-] blocks.tar.gz
[edit]
[-] class-wp-importer.php.tar
[edit]
[-] widgets-rtl.css.tar
[edit]
[-] 82a31e6e906097b5.tar.gz
[edit]
[-] send-app.tar.gz
[edit]
[-] 098a4d16dc015fa6122c6b0a0ffbc0e37d53ff.tar
[edit]
[-] media-views-rtl.min.css.tar
[edit]
[-] ec7dc326882ae4b6.tar.gz
[edit]
[-] Dominica.tar.gz
[edit]
[-] d1279ea7af995095f7ad51435fe592934475a0.tar.gz
[edit]
[-] aff11a24fe9ac559.tar
[edit]
[-] class-feed.php.php.tar.gz
[edit]
[-] repair.php.php.tar.gz
[edit]
[-] be8185270c0a7401f091476578c137b5dae92a.tar
[edit]
[-] f514eea073363fcf10eae78764adc086b67703.tar
[edit]
[-] atomlib.php.php.tar.gz
[edit]
[-] .user_id_table.user_id_table.tar.gz
[edit]
[-] c1589f0852e3bd58.tar
[edit]
[-] python3.8.tar.gz
[edit]
[-] tabfocus.zip
[edit]
[-] phpcomplete.vim.tar
[edit]
[-] codemirror.zip
[edit]
[-] doge.gif.tar
[edit]
[-] smp_affinity_list.tar
[edit]
[-] c988fa21ba4eb54fea7d0b28ed2e2eda057b1f.tar
[edit]
[-] ssl.tar
[edit]
[-] 12b46fba23cde217.tar.gz
[edit]
[-] f76eb3791aba2d1b.tar.gz
[edit]
[-] media.php.tar
[edit]
[-] abb89cc5eb31c82f6d6426e79c02907354ef58.tar.gz
[edit]
[-] b9b03555d95fdc28.tar
[edit]
[-] fbbae709322f0ca2.tar
[edit]
[-] 1ed049199006a1d7.tar.gz
[edit]
[-] dovecot-quota.tar
[edit]
[-] class-wp-block-list.php.tar
[edit]
[-] cover.php.php.tar.gz
[edit]
[-] abilities-api.tar.gz
[edit]
[-] dashboard.min.js.tar
[edit]
[-] class.wp-scripts.php.tar
[edit]
[-] upgrade.xml.tar
[edit]
[-] carddav_http.log.log.tar.gz
[edit]
[-] 2025.tar.gz
[edit]
[-] farbtastic-rtl.min.css.min.css.tar.gz
[edit]
[-] class-wp-scripts.php.php.tar.gz
[edit]
[-] doge.gif.gif.tar.gz
[edit]
[-] 374ceb97ebc85b39.tar
[edit]
[-] view.js.js.tar.gz
[edit]
[-] wp-pointer.js.js.tar.gz
[edit]
[-] 375293aea8ee79a6.tar
[edit]
[-] 963458371662e238.tar
[edit]
[-] 1250695e4bd0aa9f.tar
[edit]
[-] admin-post.php.tar
[edit]
[-] html.tar.gz
[edit]
[-] 1e0f274f91e0c9cd.tar
[edit]
[-] dovecot-uidvalidity.69a2ba17.69a2ba17.tar.gz
[edit]
[-] tags-suggest.min.js.tar
[edit]
[-] fb43fefb04c4e2f7.tar
[edit]
[-] query-no-results.tar.gz
[edit]
[-] colors.tar
[edit]
[-] b5b1f9a01f2f83f5b8cf000721078c17bf7cd8.tar
[edit]
[-] c11616a7c6ad764c.tar
[edit]
[-] namespaced.zip
[edit]
[-] fb8210f74c7c33c4.tar
[edit]
[-] wp-emoji.js.js.tar.gz
[edit]
[-] contribute-main.svg.tar
[edit]
[-] c760685f5be4177e.tar
[edit]
[-] editor.tar
[edit]
[-] geode-linux.tar
[edit]
[-] 1ef23faea1073217.tar
[edit]
[-] privacy-policy-guide.php.tar
[edit]
[-] alt-nodejs18_native.req.req.tar.gz
[edit]
[-] PHPMailer.tar
[edit]
[-] elements.php.php.tar.gz
[edit]
[-] b151b73e6ab33cea5e13ed5dd3366a5facea42.tar
[edit]
[-] twig.tar
[edit]
[-] sidu.zip
[edit]
[-] .htaccess.htaccess.tar.gz
[edit]
[-] d2efa3ec36766bd60045332b5dbe1679b6f025.tar.gz
[edit]
[-] wpvivid_staging.tar
[edit]
[-] 591b0.tar.gz
[edit]
[-] 1e2c3518a453f28b.tar.gz
[edit]
[-] a5a9f53f480dff5c.tar.gz
[edit]
[-] noop.php.php.tar.gz
[edit]
[-] ext.d.tar
[edit]
[-] irq.tar
[edit]
[-] Utility.zip
[edit]
[-] 5b7.tar
[edit]
[-] 1e38efb425015409.tar
[edit]
[-] maildirsize.tar.gz
[edit]
[-] cover.tar.gz
[edit]
[-] class-wp-upgrader.php.tar
[edit]
[-] a3dd9cb2dbccb5e1.tar.gz
[edit]
[-] help.zh_CN.txt.zh_CN.txt.tar.gz
[edit]
[-] 121379bc50a1e1ca.tar.gz
[edit]
[-] common.min.css.min.css.tar.gz
[edit]
[-] customize-nav-menus.js.js.tar.gz
[edit]
[-] edit-tag-form.php.tar
[edit]
[-] a.tar.gz
[edit]
[-] wordpress-logo-white.svg.svg.tar.gz
[edit]
[-] quote.tar.gz
[edit]
[-] admin-bar-rtl.css.css.tar.gz
[edit]
[-] po.php.tar
[edit]
[-] a0ad5676c10221be.tar
[edit]
[-] 1e440c59a05378be.tar
[edit]
[-] xit-2x.gif.gif.tar.gz
[edit]
[-] b90bddf15763325248a2a5f9a5c193a2b534f3.tar.gz
[edit]
[-] misc.tar
[edit]
[-] .cl.selector.tar
[edit]
[-] 270e3f235d59719e24bdfd4a55fd71c9ad6bad.tar.gz
[edit]
[-] edit.xml.tar
[edit]
[-] f7a049e1ac6506a7b5b939e0dfc347ea61e8d0.tar.gz
[edit]
[-] a5a9f53f480dff5c.tar
[edit]
[-] cpanel.tar
[edit]
[-] class-wp-list-util.php.tar
[edit]
[-] 39efc797250ec716ad27df6214fa2581354112.tar
[edit]
[-] fb88c8151567445d.tar
[edit]
[-] dovecot.index.log.index.log.tar.gz
[edit]
[-] group.tar.gz
[edit]
[-] f96d55473f1d33350e45ce82c978c8be255084.tar.gz
[edit]
[-] image.tar
[edit]
[-] info@agrivaingredients.com.tar
[edit]
[-] a83d93e3e1fa4ac6.tar
[edit]
[-] accordion-item.tar.gz
[edit]
[-] buddhi@ediuae.com.tar.gz
[edit]
[-] 1e7fa16460a3b977.tar.gz
[edit]
[-] b.tar
[edit]
[-] html-api.zip
[edit]
[-] l10n.php.tar
[edit]
[-] post-author-biography.zip
[edit]
[-] ms-default-filters.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]
[-] unb.tar.gz
[edit]
[-] 8f1b7c.tar
[edit]
[-] silverstorm.tar.gz
[edit]
[-] 9.zip
[edit]
[-] https-migration.php.php.tar.gz
[edit]
[-] c595c92759c07bb4f4fc514446a4e45c5d2d14.tar
[edit]
[-] rest-api.tar.gz
[edit]
[-] wp-embed-template.min.css.min.css.tar.gz
[edit]
[-] class-theme-upgrader-skin.php.php.tar.gz
[edit]
[-] 1.zip
[edit]
[-] 1e82d500745e54b9.tar.gz
[edit]
[-] edit-comments.min.js.tar
[edit]
[-] bEMCjsfxV.wma.tar
[edit]
[-] polkit-1.zip
[edit]
[-] speculative-loading.php.tar
[edit]
[-] editor-rtl.min.css.tar
[edit]
[-] sched_rt_period_us.tar.gz
[edit]
[-] template-part.zip
[edit]
[-] meta-boxes.php.tar
[edit]
[-] d43e4c05b2c3de308ed52778dcdf58d9dd4c01.tar
[edit]
[-] icons32-vs.png.png.tar.gz
[edit]
[-] 8.tar
[edit]
[-] logs.txt.tar
[edit]
[-] 8bc5f6bacc6cb51c.tar.gz
[edit]
[-] term-name.zip
[edit]
[-] 1e98089cadef4b64.tar
[edit]
[-] 4d4a8c44a58ba791636456cc548a94aa546461.tar.gz
[edit]
[-] 1eaa789467d646ac.tar.gz
[edit]
[-] ec7ea15e41127889.tar.gz
[edit]
[-] 1ba3473c9f98241769d29d9713ff37a72580e9.tar.gz
[edit]
[-] post-formats.php.tar
[edit]
[-] info.tar.gz
[edit]
[-] mailbox_format.cpanel.tar
[edit]
[-] ccc0f_00e9b_cbd031f35ea9e54ecfe1e562cde28098.key.tar
[edit]
[-] default-filters.php.tar
[edit]
[-] tags-suggest.js.js.tar.gz
[edit]
[-] b4d7b_d3a69_87b7190954ee6c370270407b46101613.key.key.tar.gz
[edit]
[-] ecb35d9100d9c646.tar
[edit]
[-] mce-view.min.js.min.js.tar.gz
[edit]
[-] block-template.php.tar
[edit]
[-] theme-templates.php.tar
[edit]
[-] fbb1fdf97bf4e897.tar.gz
[edit]
[-] post-formats.php.php.tar.gz
[edit]
[-] dashicons.eot.tar
[edit]
[-] bEMCjsfxV.wma.wma.tar.gz
[edit]
[-] llms.txt.txt.tar.gz
[edit]
[-] 20ea38662304c085.tar.gz
[edit]
[-] color-picker-rtl.min.css.min.css.tar.gz
[edit]
[-] a0a60ee99a5aebda.tar.gz
[edit]
[-] Modules.zip
[edit]
[-] .well-known.tar
[edit]
[-] e5db3142a1ab3f3bb22d58106bfcf50f01ccff.tar.gz
[edit]
[-] ed97a07230d4d024.tar.gz
[edit]
[-] class-IXR-message.php.tar
[edit]
[-] 4b315819fdb7d4d7e31bd11280c570c081de09.tar
[edit]
[-] libstdbuf.so.so.tar.gz
[edit]
[-] class-wp-ajax-response.php.php.tar.gz
[edit]
[-] ms-options.php.php.tar.gz
[edit]
[-] wp-sanitize.js.tar
[edit]
[-] privacy.php.tar
[edit]
[-] image.php.php.tar.gz
[edit]
[-] wpicons-2x.png.tar
[edit]
[-] comment-reply.js.js.tar.gz
[edit]
[-] js.tar.gz
[edit]
[-] c36f8d27f564a66e.tar.gz
[edit]
[-] 1e34283cedb6ec36.tar.gz
[edit]
[-] theme-compat.tar
[edit]
[-] 1d97db2d962d4a83.tar
[edit]
[-] resize.gif.tar
[edit]
[-] a6ffadb191118484.tar.gz
[edit]
[-] .hello@ediuae_com.zip
[edit]
[-] .Trash.zip
[edit]
[-] mounts.tar
[edit]
[-] class-wp-screen.php.php.tar.gz
[edit]
[-] HTTP.tar.gz
[edit]
[-] themes.tar
[edit]
[-] app.tar
[edit]
[-] cpuinfo.tar
[edit]
[-] vim.zip
[edit]
[-] tags.js.js.tar.gz
[edit]
[-] c40dfaf60c5763627034555d9933330fd052bc.tar
[edit]
[-] 74e7ce32f6c0d3ed31792ca742f3acbab5e2c8.tar
[edit]
[-] abb89cc5eb31c82f6d6426e79c02907354ef58.tar
[edit]
[-] 1eda01d043025413.tar.gz
[edit]
[-] functions.wp-styles.php.tar
[edit]
[-] 8ee18275efcf0159908624e80f1acb491576a5.tar.gz
[edit]
[-] link-parse-opml.php.tar
[edit]
[-] 1ce425f15fc8cb41.tar
[edit]
[-] c15c53883a4ee2c9.tar.gz
[edit]
[-] awstats102025.accubooksuae.com.ediuae.com.txt.tar
[edit]
[-] ef9c91b19088d582.tar
[edit]
[-] e954fb492fa6b9bec56ced7c2d0c8d79601273.tar.gz
[edit]
[-] widgets.js.tar
[edit]
[-] wp-pointer.js.tar
[edit]
[-] b9b03555d95fdc28.tar.gz
[edit]
[-] 1c67aa57af20ce09c989aac732ace054b48232.tar.gz
[edit]
[-] feed-atom.php.php.tar.gz
[edit]
[-] 28ec2c65f4a292f6.tar
[edit]
[-] misc.zip
[edit]
[-] send-app.tar
[edit]
[-] default-widgets.php.tar
[edit]
[-] home-link.tar
[edit]
[-] view.asset.php.asset.php.tar.gz
[edit]
[-] media-video-widget.min.js.tar
[edit]
[-] network-throughput.zip
[edit]
[-] 2d08cc13938addc448bfcbf0d6f0fd2a36c672.tar.gz
[edit]
[-] style.min.css.tar
[edit]
[-] c151ef6d12d5f43e.tar
[edit]
[-] git-am.tar.gz
[edit]
[-] .myimunify_id.myimunify_id.tar.gz
[edit]
[-] jquery-ui-dialog.css.css.tar.gz
[edit]
[-] https-migration.php.tar
[edit]
[-] imgareaselect.zip
[edit]
[-] 82a251f0ceed5dfc.tar
[edit]
[-] 65cb80e74579cc9db326345086d0f1f935f271.tar
[edit]
[-] php.ini.ini.tar.gz
[edit]
[-] ms-network.php.tar
[edit]
[-] comment-reply-link.php.tar
[edit]
[-] aaee5b4a7f1e1058.tar
[edit]
[-] 1e74e73cbee5bee5.tar
[edit]
[-] feed-rdf.php.tar
[edit]
[-] 1eaf03907d13ed4f.tar.gz
[edit]
[-] a4c8ecf62e24c1f17bc927beb32215a1d26dd1.tar
[edit]
[-] theme.php.php.tar.gz
[edit]
[-] fb045aa2c3295588.tar.gz
[edit]
[-] class-wp-simplepie-file.php.tar
[edit]
[-] e9c28ec40d40be53775fce6a19bcae23af597d.tar.gz
[edit]
[-] 8e2a7ccd877738b6.tar
[edit]
[-] 1f45c9c08f34f920.tar
[edit]
[-] class-wp-theme-json-schema.php.tar
[edit]
[-] customize-widgets.tar.gz
[edit]
[-] .caldav.zip
[edit]
[-] .user_id_table.tar
[edit]
[-] test.ediuae.com.zip
[edit]
[-] 2e4be444cbd52300.tar
[edit]
[-] 503e480a729fb2fd5365e29caac8ae2253af3d.tar
[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]
[-] a0ade529680bcb43.tar.gz
[edit]
[-] 1e94484a7e7d286d.tar.gz
[edit]
[-] screen.php.php.tar.gz
[edit]
[-] gayan@ediuae.com.zip
[edit]
[-] color-picker-rtl.css.tar
[edit]
[-] 96fee8162b771a32.tar.gz
[edit]
[-] aaa228a4c6f6bb51.tar
[edit]
[-] 88961995608c8b3a011593399a6296ae6c2c18.tar
[edit]
[-] lime3.zip
[edit]
[-] a1d90753c8d8fd1d6470eb65a30b37542d832f.tar.gz
[edit]
[-] link-manager.php.php.tar.gz
[edit]
[-] upgrade.php.tar
[edit]
[-] page-list-item.tar
[edit]
[-] Cookie.zip
[edit]
[-] comments-pagination.tar
[edit]
[-] fb73ac979d37385f.tar.gz
[edit]
[-] more.zip
[edit]
[-] ff8a31e0ba1e9152b977963b6914f54b1335cf.tar.gz
[edit]
[-] 8460f74bfa39ea0bc05485b2b11ff99aaba7ea.tar
[edit]
[-] wpvividbackups.zip
[edit]
[-] 1.txt.txt.tar.gz
[edit]
[-] site-new.php.php.tar.gz
[edit]
[-] a8b46681b8338dd1.tar
[edit]
[-] plupload.min.js.min.js.tar.gz
[edit]
[-] 378c6e534f51062f.tar
[edit]
[-] 1f885a43ffff854d.tar.gz
[edit]
[-] 1e200ffb20c5ee56.tar
[edit]
[-] swfobject.min.js.tar
[edit]
[-] 5652c87809896a555622f45add0f88ab5ce9db.tar.gz
[edit]
[-] b22b169eed78fdcd.tar
[edit]
[-] bolt.zip
[edit]
[-] twentytwentyfour.tar
[edit]
[-] help.et.txt.et.txt.tar.gz
[edit]
[-] cookieadmin.tar
[edit]
[-] menu-vs.png.png.tar.gz
[edit]
[-] 74608d76c643e2cad77826a27564d789a7a78d.tar.gz
[edit]
[-] class-wp-users-list-table.php.php.tar.gz
[edit]
[-] sites.php.php.tar.gz
[edit]
[-] utf8encodings.tar.gz
[edit]
[-] widgets.min.js.min.js.tar.gz
[edit]
[-] class-requests.php.tar
[edit]
[-] wp-embed.js.js.tar.gz
[edit]
[-] 3.tar
[edit]
[-] rust.vim.tar
[edit]
[-] site-tagline.tar.gz
[edit]
[-] 93d5e1532922745f2bfa37f73bd26361ccb9d9.tar.gz
[edit]
[-] options-head.php.php.tar.gz
[edit]
[-] 1e88c8d6fa9a1649.tar
[edit]
[-] link-add.php.php.tar.gz
[edit]
[-] 2ea5ff7520225aa8d9052e6faf8ae271ed2e05.tar.gz
[edit]
[-] .cpanel_vcf_import_admin@ediuae.com.tar
[edit]
[-] group.zip
[edit]
[-] class-wp-navigation-fallback.php.php.tar.gz
[edit]
[-] aaab1e14f948832c.tar
[edit]
[-] text.png.png.tar.gz
[edit]
[-] sitemaps.tar.gz
[edit]
[-] e281948a5a9d9d75.tar.gz
[edit]
[-] network.php.php.tar.gz
[edit]
[-] fb164c3b81a73545.tar.gz
[edit]
[-] debug.zip
[edit]
[-] class-IXR-base64.php.tar
[edit]
[-] 8b16c069e01abc62.tar.gz
[edit]
[-] .caldav.tar.gz
[edit]
[-] admin-bar-rtl.min.css.tar
[edit]
[-] f85ca64d7d8a491a56ded8a40e720328cb0fea.tar
[edit]
[-] class-wp-user.php.tar
[edit]
[-] l.zip
[edit]
[-] 34470988695f25288751f7fa4ce5ae864acf5d.tar.gz
[edit]
[-] privacy-tools.js.tar
[edit]
[-] class-json.php.php.tar.gz
[edit]
[-] class-wp-block-styles-registry.php.tar
[edit]
[-] a5a7673c9a5c5705.tar
[edit]
[-] elementor.tar
[edit]
[-] admin-bar-sprite.png.png.tar.gz
[edit]
[-] jcrop.tar
[edit]
[-] common.min.css.tar
[edit]
[-] align-none.png.png.tar.gz
[edit]
[-] 15d88fab2723c501e3c177387202d720fa4bf8.tar
[edit]
[-] fb04a07bca957600.tar.gz
[edit]
[-] notes.txt.txt.tar.gz
[edit]
[-] social.tar.gz
[edit]
[-] 8d8435c4e1e77b291069eda571a532028cccb5.tar
[edit]
[-] 2eafe002566c047f.tar
[edit]
[-] fbf4916e75ae1d8a.tar.gz
[edit]
[-] servers.discovery.lst.discovery.lst.tar.gz
[edit]
[-] tuned.conf.conf.tar.gz
[edit]
[-] 481d84a2d9772bfa0f57e2a4c6bfb7a7420680.tar
[edit]
[-] 1ebd996343fd736f.tar.gz
[edit]
[-] po.php.php.tar.gz
[edit]
[-] template.php.tar
[edit]
[-] nav-menus.php.tar
[edit]
[-] executive.zip
[edit]
[-] nav-menu.js.js.tar.gz
[edit]
[-] class-wp-term.php.php.tar.gz
[edit]
[-] 2e276342bb7b12383d1c76c08972a606bb9760.tar
[edit]
[-] cl.php.d.zip
[edit]
[-] media-views.min.css.min.css.tar.gz
[edit]
[-] eengine.tar
[edit]
[-] config.zip
[edit]
[-] no.png.png.tar.gz
[edit]
[-] edit-tag-form.php.php.tar.gz
[edit]
[-] c78376ddbf8a9497.tar
[edit]
[-] class-wp-theme-json-schema.php.php.tar.gz
[edit]
[-] 1ef32e6b6982b1f0.tar.gz
[edit]
[-] php81.tar.gz
[edit]
[-] automake-1.16.tar
[edit]
[-] tools.php.php.tar.gz
[edit]
[-] rewrite.php.tar
[edit]
[-] commands.tar.gz
[edit]
[-] mt.zip
[edit]
[-] getid3.php.tar
[edit]
[-] class-IXR-client.php.php.tar.gz
[edit]
[-] 378c6e534f51062f.tar.gz
[edit]
[-] autotest-mode.el.el.tar.gz
[edit]
[-] f76eb3791aba2d1b.tar
[edit]
[-] arrow-pointer-blue.png.tar
[edit]
[-] ediuae.rcube.db.1768301805.rcube.db.1768301805.tar.gz
[edit]
[-] page-list.zip
[edit]
[-] fbb345d3d26fd81c.tar
[edit]
[-] load-scripts.php.php.tar.gz
[edit]
[-] HTTP.tar
[edit]
[-] ID3.zip
[edit]
[-] interactivity-api.tar
[edit]
[-] w.tar
[edit]
[-] colorpicker.js.tar
[edit]
[-] pma_template_compiles_ediuae.tar
[edit]
[-] awstats032026.test.ediuae.com.txt.tar
[edit]
[-] 2820a463ce1afae60c3d6c7a59be8212ef791d.tar
[edit]
[-] post-time-to-read.php.php.tar.gz
[edit]
[-] laravel.tar
[edit]
[-] class-wp-site.php.tar
[edit]
[-] 377b8ddb874d09c7.tar.gz
[edit]
[-] c76e964891b591d7.tar
[edit]
[-] plupload.min.js.tar
[edit]
[-] afc86e9a6ec375ec.tar.gz
[edit]
[-] fbb826a088de9723.tar
[edit]
[-] 2fc1cfbb2443c8035d426a29e534059127bc63.tar
[edit]
[-] sda7-8.tar.gz
[edit]
[-] post-content.zip
[edit]
[-] var.tar
[edit]
[-] editor.tar.gz
[edit]
[-] menu.php.php.tar.gz
[edit]
[-] ostic14.tar
[edit]
[-] Diff.tar
[edit]
[-] mce-view.js.js.tar.gz
[edit]
[-] e45cc994c297c51f22a265f07797899d99022c.tar.gz
[edit]
[-] media-text.zip
[edit]
[-] 8ba4d36bb05aacb5.tar.gz
[edit]
[-] class-ftp-sockets.php.php.tar.gz
[edit]
[-] c0b8e_2dfd3_04829d753c4d20b6f9e5ef8b65b574c1.key.key.tar.gz
[edit]
[-] wp-config-sample.php.php.tar.gz
[edit]
[-] post-thumbnail-template.php.php.tar.gz
[edit]
[-] freedom-3.svg.svg.tar.gz
[edit]
[-] class-IXR-server.php.php.tar.gz
[edit]
[-] class-wp-embed.php.php.tar.gz
[edit]
[-] 2e42c91ff585bb2c.tar.gz
[edit]
[-] user-suggest.js.tar
[edit]
[-] media-grid.min.js.tar
[edit]
[-] class-wp-metadata-lazyloader.php.tar
[edit]
[-] .subaccounts.tar
[edit]
[-] accordion-item.php.tar
[edit]
[-] 2e4be444cbd52300.tar.gz
[edit]
[-] tag-cloud.tar.gz
[edit]
[-] a0af63e828202beb.tar
[edit]
[-] ppc64-linux.tar.gz
[edit]
[-] afd58924ffd62773.tar
[edit]
[-] b9561472b93bf2ce3037a7b09d86bdd961ad24.tar
[edit]
[-] profile.php.php.tar.gz
[edit]
[-] 1e3f417b45551a7f.tar
[edit]
[-] userdata.tar.gz
[edit]
[-] 3.zip
[edit]
[-] 1ed803072044735a.tar
[edit]
[-] gallery.js.js.tar.gz
[edit]
[-] wp-load.php.tar
[edit]
[-] 1e90033b42738ee6.tar
[edit]
[-] editor-expand.js.tar
[edit]
[-] wpdialog.min.js.tar
[edit]
[-] 129a19ad1daef742.tar.gz
[edit]
[-] align-center.png.tar
[edit]
[-] accelerator-performance.tar.gz
[edit]
[-] script-modules.php.php.tar.gz
[edit]
[-] .litespeed_flag.tar
[edit]
[-] c1cbd4fefa32a561a0320f475f49b749eb41b1.tar.gz
[edit]
[-] php71.tar
[edit]
[-] class-custom-image-header.php.tar
[edit]
[-] 1e935d14072ec911.tar.gz
[edit]
[-] 55f540c7a7a085a0774285b64a4d3c3600d5c5.tar.gz
[edit]
[-] swfupload.zip
[edit]
[-] jquery-ui-dialog.min.css.tar
[edit]
[-] mips64r6el-linux.tar
[edit]
[-] b22dc5b0f14c38db.tar.gz
[edit]
[-] silverstorm.tar
[edit]
[-] 1e0a3357d0411f56.tar
[edit]
[-] .cpanel_ics_import_social@ediuae.com.tar
[edit]
[-] tmpwatch.tar.gz
[edit]
[-] l10n.css.css.tar.gz
[edit]
[-] class-wp-rewrite.php.tar
[edit]
[-] hamna.tar
[edit]
[-] 1ed5d5e5bd604540.tar.gz
[edit]
[-] theme.json.tar
[edit]
[-] wp-auth-check-rtl.css.css.tar.gz
[edit]
[-] readme.txt.tar
[edit]
[-] mail.tar.gz
[edit]
[-] template-loader.php.php.tar.gz
[edit]
[-] 1d8b7a2a3b530f04.tar.gz
[edit]
[-] _sd_unit_files.tar.gz
[edit]
[-] help.fi.txt.fi.txt.tar.gz
[edit]
[-] sparc64-linux.tar
[edit]
[-] 9d53ac61599a3285.tar.gz
[edit]
[-] calendar.zip
[edit]
[-] info@accubooksuae.com.tar.gz
[edit]
[-] farbtastic.min.css.tar
[edit]
[-] wacart.zip
[edit]
[-] bagisto.zip
[edit]
[-] 590428a58059662c6c2e06aa268588729b2c55.tar
[edit]
[-] fbe878548e613abd.tar.gz
[edit]
[-] class-wp-filesystem-ssh2.php.php.tar.gz
[edit]
[-] wp-lists.min.js.min.js.tar.gz
[edit]
[-] latest-posts.tar.gz
[edit]
[-] lt__argz.c.c.tar.gz
[edit]
[-] dashicons.svg.tar
[edit]
[-] json2.js.js.tar.gz
[edit]
[-] term.php.tar
[edit]
[-] eabb93aa1f13c50d.tar.gz
[edit]
[-] bolt.tar.gz
[edit]
[-] a03da824131a70d8.tar
[edit]
[-] hvh.txt.txt.tar.gz
[edit]
[-] tw-sack.min.js.tar
[edit]
[-] schema.php.php.tar.gz
[edit]
[-] footnotes.php.php.tar.gz
[edit]
[-] 1efccd4e7cce67b5.tar
[edit]
[-] media-views.js.tar
[edit]
[-] bubble_bg.gif.tar
[edit]
[-] options.php.php.tar.gz
[edit]
[-] tag-cloud.tar
[edit]
[-] ppc8560-linux.tar
[edit]
[-] efb58e7eb519ec17e607e3a17de4cbbda9ab2a.tar.gz
[edit]
[-] 692a35b8b459c7ea.tar
[edit]
[-] XQxWYb.mpeg.mpeg.tar.gz
[edit]
[-] credits.php.tar
[edit]
[-] php82.tar.gz
[edit]
[-] class-wp-block-styles-registry.php.php.tar.gz
[edit]
[-] site-info.php.php.tar.gz
[edit]
[-] jquery-ui-dialog.min.css.min.css.tar.gz
[edit]
[-] 4943b4.zip
[edit]
[-] theme-install.php.tar
[edit]
[-] 22f231cefc518e4abab0fd3f0dc1362934f763.tar
[edit]
[-] gallery.zip
[edit]
[-] image-edit-merge.php.tar
[edit]
[-] 37da55ec240be33881399042f43d653e1df8ab.tar.gz
[edit]
[-] dashboard.css.css.tar.gz
[edit]
[-] privacy-policy-guide.php.php.tar.gz
[edit]
[-] datastore.tar.gz
[edit]
[-] inline-edit-tax.js.tar
[edit]
[-] selector.etc.tar.gz
[edit]
[-] edit.min.css.tar
[edit]
[-] pki-validation.tar.gz
[edit]
[-] underscore.min.js.min.js.tar.gz
[edit]
[-] dovecot-uidvalidity.6820ab00.tar
[edit]
[-] class-walker-comment.php.php.tar.gz
[edit]
[-] dashboard.css.tar
[edit]
[-] help.zh_CN.txt.tar
[edit]
[-] aa1e5249c42d37cb.tar.gz
[edit]
[-] tstamp_allow_data.tar.gz
[edit]
[-] toggle-arrow-2x.png.png.tar.gz
[edit]
[-] 606ca8bd020b99c5.tar.gz
[edit]
[-] 60589ce253c5e7a1.tar.gz
[edit]
[-] hello@ediuae.com.tar.gz
[edit]
[-] 9a80d4afb3572a2a.tar
[edit]
[-] class-wp-list-util.php.php.tar.gz
[edit]
[-] accordion.zip
[edit]
[-] 830323943ca2a6da15a45eb5c3ef3eeb87eb44.tar
[edit]
[-] site-title.tar
[edit]
[-] site-icon.css.tar
[edit]
[-] ea55ca547c8447b3.tar
[edit]
[-] gimanthi@ediuae.com.tar
[edit]
[-] a0ad5676c10221be.tar.gz
[edit]
[-] 142789c798a066a6c9c7e8190426da8a38d297.tar
[edit]
[-] 8b16c069e01abc62.tar
[edit]
[-] b9a1ecfe35de2c4c.tar.gz
[edit]
[-] c760fb6fc8770702.tar
[edit]
[-] embed-404.php.tar
[edit]
[-] post-time-to-read.tar
[edit]
[-] forms-rtl.css.css.tar.gz
[edit]
[-] 1ea42681646eb11c.tar
[edit]
[-] language-chooser.js.tar
[edit]
[-] class-wp-recovery-mode.php.tar
[edit]
[-] 1ebd996343fd736f.tar
[edit]
[-] _wp-config.php.tar
[edit]
[-] wp-util.js.js.tar.gz
[edit]
[-] class-wp-hook.php.php.tar.gz
[edit]
[-] certs.tar
[edit]
[-] forms.min.css.min.css.tar.gz
[edit]
[-] maint.tar.gz
[edit]
[-] wp59.tar.gz
[edit]
[-] 6e5.tar.gz
[edit]
[-] admin-filters.php.tar
[edit]
[-] wpdialog.js.tar
[edit]
[-] 1ffdce5f51eb7e83.tar.gz
[edit]
[-] fbac61cab456a10a.tar.gz
[edit]
[-] 13b835518d19e460d0fab19585c9b3c5af9065.tar.gz
[edit]
[-] bfde92ffb74cbee7.tar.gz
[edit]
[-] 1e4deab331484939.tar
[edit]
[-] install-rtl.css.tar
[edit]
[-] farbtastic.js.tar
[edit]
[-] options.php.tar
[edit]
[-] profile.php.tar
[edit]
[-] inet_peer_threshold.tar
[edit]
[-] json2.js.tar
[edit]
[-] ruko.tar
[edit]
[-] class-wp-taxonomy.php.tar
[edit]
[-] eengine.tar.gz
[edit]
[-] theme-editor.php.php.tar.gz
[edit]
[-] providers.tar.gz
[edit]
[-] generic.png.png.tar.gz
[edit]
[-] 956748.tar
[edit]
[-] align-center-2x.png.png.tar.gz
[edit]
[-] db.php.tar
[edit]
[-] class-wp-http-response.php.php.tar.gz
[edit]
[-] 63136d47d30d1e2b9f5d2c194e76ca5ec70fe4.tar
[edit]
[-] list.png.png.tar.gz
[edit]
[-] pycriu.zip
[edit]
[-] edit-tag-messages.php.tar
[edit]
[-] site-icon-rtl.min.css.tar
[edit]
[-] media-button-music.gif.tar
[edit]
[-] de2ae_f4bbb_e29fc085b08fc678706db8561b5352bf.key.key.tar.gz
[edit]
[-] 1e5f6713aebbb4ec.tar
[edit]
[-] list-tables-rtl.min.css.tar
[edit]
[-] riscv64-linux.tar
[edit]
[-] menu-vs-2x.png.png.tar.gz
[edit]
[-] alt-nodejs24_native.req.tar
[edit]
[-] gayan@ediuae.com.tar.gz
[edit]
[-] extendify.zip
[edit]
[-] postbox.js.tar
[edit]
[-] 8e966e7f418c67d4.tar
[edit]
[-] style.css.tar
[edit]
[-] 00.tar.gz
[edit]
[-] vips.zip
[edit]
[-] 963458371662e238.tar.gz
[edit]
[-] wpgallery.tar
[edit]
[-] config.php.php.tar.gz
[edit]
[-] .cpanel_ics_import_info@nakaafi.com.cpanel_ics_import_info@nakaafi.com.tar.gz
[edit]
[-] certificates.tar.gz
[edit]
[-] 5f54a481a15e4bd6c44e1682e4ab75b060e76d.tar
[edit]
[-] crypto.tar.gz
[edit]
[-] hugetlb_shm_group.tar.gz
[edit]
[-] 1e8ce1a918c6ba00.tar.gz
[edit]
[-] eliteroyalcrown.com.tar.gz
[edit]
[-] edeb3c5bceea11e7.tar
[edit]
[-] php71.tar.gz
[edit]
[-] term-template.zip
[edit]
[-] fb2fa3ec82b6c3fd.tar
[edit]
[-] 1061296e7b1ac81852ee1626bc573c04d024f4.tar
[edit]
[-] feed.php.php.tar.gz
[edit]
[-] .litespeed_flag.litespeed_flag.tar.gz
[edit]
[-] a8b860bfa1c98c61.tar
[edit]
[-] class-custom-background.php.tar
[edit]
[-] class-wp-comment.php.tar
[edit]
[-] class-IXR.php.php.tar.gz
[edit]
[-] media-views.min.css.tar
[edit]
[-] fbb211780a66646a.tar.gz
[edit]
[-] b70c5_21f45_f3592ffc48c4530dea8c573fab81d79d.key.tar
[edit]
[-] server.c303.cloudmark.com.conf.tar
[edit]
[-] install.xml.xml.tar.gz
[edit]
[-] auth-app.js.js.tar.gz
[edit]
[-] 1e954530feb2c981.tar
[edit]
[-] query-title.tar.gz
[edit]
[-] fb8f306bc74377c6.tar.gz
[edit]
[-] 6597ad18c814379baeb7e98dad759b8a99b8ee.tar
[edit]
[-] repair.php.tar
[edit]
[-] common-rtl.css.css.tar.gz
[edit]
[-] .gimanthi@ediuae_com.zip
[edit]
[-] class-wp-customize-manager.php.tar
[edit]
[-] about-rtl.css.tar
[edit]
[-] page-list.php.php.tar.gz
[edit]
[-] aad3346282b5253f.tar
[edit]
[-] automake-1.16.zip
[edit]
[-] b9a386cd45abc950.tar
[edit]
[-] ms-settings.php.tar
[edit]
[-] 8c5a0ae828fa1f32.tar
[edit]
[-] post-comments-count.tar.gz
[edit]
[-] extendify.tar.gz
[edit]
[-] Text.tar
[edit]
[-] fb4da8b6955f2294.tar.gz
[edit]
[-] ms-default-constants.php.tar
[edit]
[-] a8a998ec43a1e0c1.tar.gz
[edit]
[-] 1e10c464ec1b74cf.tar
[edit]
[-] a0a687540ecedda2.tar
[edit]
[-] 2820a463ce1afae60c3d6c7a59be8212ef791d.tar.gz
[edit]
[-] openldap.tar
[edit]
[-] .cpanel_vcf_import_admin@ediuae.com.cpanel_vcf_import_admin@ediuae.com.tar.gz
[edit]
[-] class-IXR-date.php.php.tar.gz
[edit]
[-] lowmem_reserve_ratio.tar.gz
[edit]
[-] aaee5b4a7f1e1058.tar.gz
[edit]
[-] module.tag.id3v1.php.tar
[edit]
[-] d8fbf9fab1ce1a6c8137ff88e7c51bd7bdf22b.tar
[edit]
[-] 37880b8d4db07723.tar.gz
[edit]
[-] class-wp-user-query.php.php.tar.gz
[edit]
[-] efb6d5fa1db3e1b0.tar.gz
[edit]
[-] fb7b25cdca4b0212.tar
[edit]
[-] udev.tar.gz
[edit]
[-] fbbae709322f0ca2.tar.gz
[edit]
[-] 1f9728f8e6adf9ad.tar
[edit]
[-] postbox.min.js.tar
[edit]
[-] .info@accubooksuae_com.tar
[edit]
[-] awstats.agrivaingredients.com.ediuae.com.conf.tar
[edit]
[-] zen.tar.gz
[edit]
[-] Engine.zip
[edit]
[-] 8af4a5439cbdbdf2b3f32e969c63763ef335dd.tar
[edit]
[-] customize.php.php.tar.gz
[edit]
[-] freedom-1.svg.tar
[edit]
[-] nav-menus-rtl.css.tar
[edit]
[-] .buddhi@ediuae_com.zip
[edit]
[-] mce-view.min.js.tar
[edit]
[-] class-wp-customize-panel.php.php.tar.gz
[edit]
[-] f7ba7acbb01f7dd6a9f45f4990402ddbeefbc8.tar
[edit]
[-] site-health.js.tar
[edit]
[-] member.tar
[edit]
[-] wpspin.gif.tar
[edit]
[-] ms-site.php.php.tar.gz
[edit]
[-] fb87bcf0b75ea802.tar
[edit]
[-] swfupload.tar
[edit]
[-] post-title.tar
[edit]
[-] accordion-item.php.php.tar.gz
[edit]
[-] 751538.zip
[edit]
[-] class-wp-theme-json-resolver.php.php.tar.gz
[edit]
[-] query-total.php.php.tar.gz
[edit]
[-] math.zip
[edit]
[-] acpi.zip
[edit]
[-] wpspin.gif.gif.tar.gz
[edit]
[-] post-formats32.png.png.tar.gz
[edit]
[-] a6ffadb191118484.tar
[edit]
[-] entry.php.tar
[edit]
[-] git-credential-cache.tar.gz
[edit]
[-] quicktags.min.js.min.js.tar.gz
[edit]
[-] af48eda775a15661.tar
[edit]
[-] 1d88777e2921723b.tar
[edit]
[-] 84123d334bf07441f825cebb164e72d9af9b43.tar.gz
[edit]
[-] 4dd6bb488dde761577de12d347e01a89710c5d.tar
[edit]
[-] grub.tar.gz
[edit]
[-] 3ea478a90e6a49b181f3a9231d2a8c1b07c120.tar.gz
[edit]
[-] class-wp-block-supports.php.php.tar.gz
[edit]
[-] 11824c0cc38bf8111c8423c24135e8897f95fc.tar
[edit]
[-] ely.zip
[edit]
[-] accordion-panel.tar.gz
[edit]
[-] maildirsize.tar
[edit]
[-] list-item.tar
[edit]
[-] modprobe.d.tar.gz
[edit]
[-] class-wp-tax-query.php.php.tar.gz
[edit]
[-] 4059ed8756647a4f99a14bfa8d6c4a889d3711.tar.gz
[edit]
[-] modprobe.d.tar
[edit]
[-] categories.zip
[edit]
[-] 1efccd4e7cce67b5.tar.gz
[edit]
[-] modules-load.d.zip
[edit]
[-] 1ff7ef39a47d3691.tar
[edit]
[-] template-part.tar.gz
[edit]
[-] f5689beff3e5c057f2e08ff5bd41a3efad11c0.tar.gz
[edit]
[-] blocks-json.php.tar
[edit]
[-] separator.zip
[edit]
[-] wpvivid_staging.zip
[edit]
[-] rust.vim.vim.tar.gz
[edit]
[-] details.tar
[edit]
[-] 9d7d804042aa0287.tar
[edit]
[-] 24070848aec018ff9ce3285a42df9c06edd776.tar
[edit]
[-] uploader-icons.png.png.tar.gz
[edit]
[-] 8c9bcbdf36cf221d.tar
[edit]
[-] options-permalink.php.php.tar.gz
[edit]
[-] swfobject.js.js.tar.gz
[edit]
[-] class-wp-filesystem-base.php.tar
[edit]
[-] b9a014457e6c59c2.tar
[edit]
[-] 6.zip
[edit]
[-] category.php.php.tar.gz
[edit]
[-] 695cfc77440d8de8.tar.gz
[edit]
[-] 1e200ffb20c5ee56.tar.gz
[edit]
[-] a41781dd11d419a1f419ac345e5d67d611480b.tar.gz
[edit]
[-] imgareaselect.tar.gz
[edit]
[-] wpspin-1x.gif.gif.tar.gz
[edit]
[-] 8e7ed34306edf377.tar.gz
[edit]
[-] qdpm.tar
[edit]
[-] customize-nav-menus-rtl.css.tar
[edit]
[-] library.tar
[edit]
[-] fbea8453f728bf24.tar.gz
[edit]
[-] class-wp-posts-list-table.php.php.tar.gz
[edit]
[-] c1b0abe0c7d55d77.tar
[edit]
[-] 5548ce736b90583ef29f794fbd8711e55aeb34.tar.gz
[edit]
[-] 1e4deab331484939.tar.gz
[edit]
[-] 1e6e7b1ece628060.tar.gz
[edit]
[-] fbbeb9bcdfdf6a6c.tar
[edit]
[-] fb856733efca7e36.tar.gz
[edit]
[-] spinner.gif.gif.tar.gz
[edit]
[-] 1e9bbb0b1f592810.tar
[edit]
[-] class-wp-customize-widgets.php.tar
[edit]
[-] run.tar.gz
[edit]
[-] fbbeed74d5d4369f.tar.gz
[edit]
[-] aa3d62fbf64dc0b92434ad89c03d8c967a38a0.tar
[edit]
[-] class-wp-walker.php.tar
[edit]
[-] _usr_local_cpanel_cpanel_-F.tar.gz
[edit]
[-] ef88c0041995c802.tar.gz
[edit]
[-] query-total.tar.gz
[edit]
[-] 486.tar
[edit]
[-] logs.tar
[edit]
[-] block-editor.php.tar
[edit]
[-] 1e6036d3eee9343b.tar
[edit]
[-] common-rtl.min.css.min.css.tar.gz
[edit]
[-] c2f6cb2d3111299c201a288bba2a69a34f7154.tar.gz
[edit]
[-] media.min.css.tar
[edit]
[-] abilities-api.zip
[edit]
[-] ediuae.zip
[edit]
[-] media.min.js.min.js.tar.gz
[edit]
[-] 9db4c22b238b69a4.tar
[edit]
[-] wp-emoji.js.tar
[edit]
[-] liblqr-1.tar.gz
[edit]
[-] post-title.tar.gz
[edit]
[-] global-styles-and-settings.php.php.tar.gz
[edit]
[-] locale.php.php.tar.gz
[edit]
[-] 1efef06bb3ecf402.tar
[edit]
[-] class-wp-comment-query.php.php.tar.gz
[edit]
[-] qdpm.tar.gz
[edit]
[-] 962918dd5cdc3580.tar.gz
[edit]
[-] smp_affinity_list.tar.gz
[edit]
[-] 4943b4.tar
[edit]
[-] hotaru.zip
[edit]
[-] nav-menus.css.css.tar.gz
[edit]
[-] feed-atom.php.tar
[edit]
[-] admin-bar.php.php.tar.gz
[edit]
[-] 1e2c3518a453f28b.tar
[edit]
[-] errors.log.log.tar.gz
[edit]
[-] e1699864bbaa02c49317b8cbd480a3e9747c2d.tar.gz
[edit]
[-] gcc.zip
[edit]
[-] rss-functions.php.tar
[edit]
[-] 1e9a0fad9b4b64e9.tar
[edit]
[-] git-core.tar.gz
[edit]
[-] dovecot-uidvalidity.67fa44c0.tar
[edit]
[-] cd34e815189f3c1089db5cc3506b7bc1f58a7a.tar
[edit]
[-] efb58e7eb519ec17e607e3a17de4cbbda9ab2a.tar
[edit]
[-] class-wp-http-curl.php.php.tar.gz
[edit]
[-] ed8fc522bb32596d.tar
[edit]
[-] editor-rtl.css.tar
[edit]
[-] widgets.min.js.tar
[edit]
[-] f9eb6f55bff16d0230cb9fbfa3c923526f815a.tar.gz
[edit]
[-] .gayan@ediuae_com.tar
[edit]
[-] 53ba5a4ea4a266764162d179c3d558d634f34a.tar.gz
[edit]
[-] about-release-logo.svg.svg.tar.gz
[edit]
[-] a9f035432aad7fbf.tar.gz
[edit]
[-] preferences.tar
[edit]
[-] 9a0a33b0bc9bdae9.tar.gz
[edit]
[-] fb5dd8892c810424.tar
[edit]
[-] comment-reply-link.zip
[edit]
[-] vertice.tar.gz
[edit]
[-] menu.php.tar
[edit]
[-] fcfed13fd5f9080d8db24a4808f4b685d03a06.tar
[edit]
[-] 1eb2afc47b6131a5.tar.gz
[edit]
[-] block-patterns.zip
[edit]
[-] privacy.php.php.tar.gz
[edit]
[-] .cache.tar.gz
[edit]
[-] accordion.tar
[edit]
[-] admin-menu-rtl.min.css.tar
[edit]
[-] 96c7d72c8c08896822dad9954f83908e44889a.tar
[edit]
[-] 1e143383fe016bff.tar
[edit]
[-] eb63a1965aee241d137073cc934dcfab4b8ea7.tar
[edit]
[-] cur.zip
[edit]
[-] 2025.tar
[edit]
[-] resize-rtl-2x.gif.tar
[edit]
[-] 1e1260b0db651c48.tar.gz
[edit]
[-] 375293aea8ee79a6.tar.gz
[edit]
[-] class-wp-comment.php.php.tar.gz
[edit]
[-] compat.php.tar
[edit]
[-] ed50162c2dcfeec3.tar.gz
[edit]
[-] social-links.zip
[edit]
[-] hoverIntent.min.js.tar
[edit]
[-] f7cd405e4b24ab6ce472f690a1ca07bc8b0603.tar.gz
[edit]
[-] 1e103325208e3f08.tar
[edit]
[-] 6597ad18c814379baeb7e98dad759b8a99b8ee.tar.gz
[edit]
[-] services.tar
[edit]
[-] 2ea091a9403022c4.tar.gz
[edit]
[-] 1a374d78edb8f330.tar
[edit]
[-] latest-comments.zip
[edit]
[-] c161ef6188e69d02.tar.gz
[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]
[-] sitepad.php.php.tar.gz
[edit]
[-] 1eb8c84fc024827d.tar
[edit]
[-] site-tagline.zip
[edit]
[-] customize-controls-rtl.css.css.tar.gz
[edit]
[-] 1e34283cedb6ec36.tar
[edit]
[-] d66dfa3f.tar
[edit]
[-] 6267590363f864c5eee84f69e2ef2e4f118726.tar.gz
[edit]
[-] a.tar
[edit]
[-] 1d1f973f1379a18c.tar.gz
[edit]
[-] 1f1f0c68231e662a.tar.gz
[edit]
[-] ed8c76db047445eb.tar.gz
[edit]
[-] class-wp-widget.php.tar
[edit]
[-] readfile.awk.awk.tar.gz
[edit]
[-] widgets-form-client.php.php.tar.gz
[edit]
[-] e2921563b3de3da9.tar.gz
[edit]
[-] toggle-arrow-2x.png.tar
[edit]
[-] e8a380a180e0e7747ffc1cd1942907d2b8285f.tar.gz
[edit]
[-] akismet.tar
[edit]
[-] reusable-blocks.tar.gz
[edit]
[-] stars-2x.png.tar
[edit]
[-] a0849bfa8dce24af83853b4cf32a2140d7486e.tar
[edit]
[-] press-this.php.php.tar.gz
[edit]
[-] sparc64v-linux.zip
[edit]
[-] 99334cb39c64c990ace0079d65f4d0dedca776.tar.gz
[edit]
[-] page-list.tar
[edit]
[-] edit-widgets.zip
[edit]
[-] theme.min.css.tar
[edit]
[-] edit-rtl.css.css.tar.gz
[edit]
[-] 9db4c22b238b69a4.tar.gz
[edit]
[-] ebad920f48d82fac376357b866ae2f9eeb8b37.tar.gz
[edit]
[-] ocean.tar.gz
[edit]
[-] comment-edit-link.php.php.tar.gz
[edit]
[-] bugs.zip
[edit]
[-] 2e720c0d95d9f5bc.tar.gz
[edit]
[-] fb7eef4a6860995a.tar
[edit]
[-] mptcp.tar
[edit]
[-] 1e4d9ecb550dd22c.tar.gz
[edit]
[-] query-pagination.php.tar
[edit]
[-] 1ace5c60a45fed51.tar.gz
[edit]
[-] filesystems.tar
[edit]
[-] sendmail.tar.gz
[edit]
[-] crystal.tar
[edit]
[-] widgets.zip
[edit]
[-] 82a06827268f4c65.tar.gz
[edit]
[-] accordion-item.tar
[edit]
[-] index.php.php.tar.gz
[edit]
[-] class-IXR-date.php.tar
[edit]
[-] 852ec6b8fb249300914c7292b327d88ef554c6.tar.gz
[edit]
[-] resize-rtl-2x.gif.gif.tar.gz
[edit]
[-] awk.zip
[edit]
[-] 88961995608c8b3a011593399a6296ae6c2c18.tar.gz
[edit]
[-] class-wp-http-ixr-client.php.php.tar.gz
[edit]
[-] da8b9bdfcebae727ca5eef79bf4492848083f5.tar
[edit]
[-] 1e0cfd6509b4f5bd.tar.gz
[edit]
[-] a8a998ec43a1e0c1.tar
[edit]
[-] sess_d4a566229ecbe0024ebe16382251707d.tar
[edit]
[-] dashicons.eot.eot.tar.gz
[edit]
[-] class-wp-locale.php.tar
[edit]
[-] twentytwentythree.tar
[edit]
[-] global-styles-and-settings.php.tar
[edit]
[-] 362bd3cad4cb0b5a78174e66df3a379502c410.tar.gz
[edit]
[-] e60fb427330e6605.tar
[edit]
[-] class-wp-xmlrpc-server.php.tar
[edit]
[-] hosts.tar
[edit]
[-] shadow.php.tar
[edit]
[-] text-columns.tar
[edit]
[-] site-lisp.tar.gz
[edit]
[-] resize.gif.gif.tar.gz
[edit]
[-] c11d05561df3c41a.tar.gz
[edit]
[-] crop.zip
[edit]
[-] SMTP.php.php.tar.gz
[edit]
[-] 7534998f55b296da7b6cd5ef51840323ef57ef.tar.gz
[edit]
[-] add21f187291e2e5.tar
[edit]
[-] wp-comments-post.php.php.tar.gz
[edit]
[-] class-wp-exception.php.php.tar.gz
[edit]
[-] fcfed13fd5f9080d8db24a4808f4b685d03a06.tar.gz
[edit]
[-] blocks.tar
[edit]
[-] quicktags.js.js.tar.gz
[edit]
[-] site-health-info.php.php.tar.gz
[edit]
[-] skel.zip
[edit]
[-] ed90db0a3419308c.tar.gz
[edit]
[-] underscore.min.js.tar
[edit]
[-] term-count.php.php.tar.gz
[edit]
[-] class-wp-block-bindings-source.php.php.tar.gz
[edit]
[-] 794dfe3a68bd269902403144bf2a18072c6295.tar
[edit]
[-] c78badfdcd5275ba.tar.gz
[edit]
[-] 2d08cc13938addc448bfcbf0d6f0fd2a36c672.tar
[edit]
[-] cftp.zip
[edit]
[-] user.tar
[edit]
[-] ms-delete-site.php.tar
[edit]
[-] http.php.php.tar.gz
[edit]
[-] lve-stats.zip
[edit]
[-] 1e9bbb0b1f592810.tar.gz
[edit]
[-] 96fee8162b771a32.tar
[edit]
[-] l10n.php.php.tar.gz
[edit]
[-] c7869cf349142ad0.tar
[edit]
[-] carddav_http.log.tar
[edit]
[-] 62d16be6fb0522cc3a70605386266d7a450b18.tar.gz
[edit]
[-] c7815169f71a9851.tar.gz
[edit]
[-] admin@ediuae.com.tar
[edit]
[-] executive.tar.gz
[edit]
[-] 51594d8d8463add7.tar.gz
[edit]
[-] wp-sanitize.js.js.tar.gz
[edit]
[-] ec3afc9bf0f2b050.tar.gz
[edit]
[-] index.php
[edit]
[-] fbb1fdf97bf4e897.tar
[edit]
[-] fc_wwpn_id.tar
[edit]
[-] categories.php.php.tar.gz
[edit]
[-] IXR.zip
[edit]
[-] ed977b65aad68a76.tar.gz
[edit]
[-] aff95ede1256493f.tar.gz
[edit]
[-] block-template.php.php.tar.gz
[edit]
[-] e65dc39b4105b6c5.tar
[edit]
[-] jquery-ui-dialog-rtl.css.tar
[edit]
[-] pma_template_compiles_ediuae.tar.gz
[edit]
[-] coffee.zip
[edit]
[-] 377f8c4c739ca645.tar.gz
[edit]
[-] POP3.php.tar
[edit]
[-] e2e396b1aa0307dd.tar.gz
[edit]
[-] class-wp-error.php.php.tar.gz
[edit]
[-] 8edc90754f31dca713e75d3a44cdf2bf38782f.tar
[edit]
[-] resellers.txt.tar
[edit]
[-] Exception.php.php.tar.gz
[edit]
[-] .caldav.tar
[edit]
[-] powersave.tar
[edit]
[-] buttons-rtl.min.css.tar
[edit]
[-] ppciseries-linux.tar
[edit]
[-] libzip.zip
[edit]
[-] separator.tar.gz
[edit]
[-] ext4.tar.gz
[edit]
[-] twig.tar.gz
[edit]
[-] fb06efc30d395ab2.tar.gz
[edit]
[-] tags-suggest.js.tar
[edit]
[-] 1a374d78edb8f330.tar.gz
[edit]
[-] .softaculous.tar.gz
[edit]
[-] index.php.tar
[edit]
[-] media-rtl.min.css.tar
[edit]
[-] schema.php.tar
[edit]
[-] help.be.txt.tar
[edit]
[-] 1ebf0d16be96f96b.tar
[edit]
[-] fb51cd8ce158093c.tar.gz
[edit]
[-] shortcode.php.tar
[edit]
[-] 1ea6807835935652.tar
[edit]
[-] suggest.js.js.tar.gz
[edit]
[-] f1ecdd0544c571a5a0b013b66348855e3f5ac0.tar
[edit]
[-] install.js.js.tar.gz
[edit]
[-] shadow.php.php.tar.gz
[edit]
[-] rss.zip
[edit]
[-] class-wp-filesystem-base.php.php.tar.gz
[edit]
[-] tags.js.tar
[edit]
[-] 639b18425d69716798fe93492a1840edcd2270.tar.gz
[edit]
[-] heartbeat.js.tar
[edit]
[-] 348ebda4f07fc3b8.tar.gz
[edit]
[-] printk_delay.tar
[edit]
[-] info.zip
[edit]
[-] html40f.vim.tar
[edit]
[-] 1e5c8d81bb3b1804.tar
[edit]
[-] c151ef6d12d5f43e.tar.gz
[edit]
[-] 1eccaae8fffbd8c1.tar
[edit]
[-] status.tar.gz
[edit]
[-] 992a2e00852141b7.tar
[edit]
[-] themes.min.css.min.css.tar.gz
[edit]
[-] 1ffdce5f51eb7e83.tar
[edit]
[-] fb0b6b0bcd53de53.tar
[edit]
[-] e673486ed2b56e47.tar.gz
[edit]
[-] tcl8.tar
[edit]
[-] fork.zip
[edit]
[-] 1efe84a4db395e6e.tar
[edit]
[-] 1e02cd548acda1d4.tar
[edit]
[-] e25e778e650d57cf.tar
[edit]
[-] 6.3.0.1.zip
[edit]
[-] categories.tar.gz
[edit]
[-] fb50c21d4b00cf19.tar.gz
[edit]
[-] wp-load.php.php.tar.gz
[edit]
[-] admin-bar.js.tar
[edit]
[-] class-walker-nav-menu.php.tar
[edit]
[-] wplink.js.tar
[edit]
[-] media-upload.php.php.tar.gz
[edit]
[-] 12d56891ef66fdf24e59c9ddbb92bffafceb0c.tar
[edit]
[-] hamna.tar.gz
[edit]
[-] 1e26149ee771237d.tar
[edit]
[-] Diff.php.php.tar.gz
[edit]
[-] c4fbe_41d83_49bd6dffb546e6ce5f50a81443408692.key.key.tar.gz
[edit]
[-] spl-autoload-compat.php.tar
[edit]
[-] libidn.tar
[edit]
[-] gimanthi@ediuae.com.tar.gz
[edit]
[-] member.zip
[edit]
[-] 1e6139d403922281.tar
[edit]
[-] cada2a20ded908259a71e748d4d8f368cb2b22.tar
[edit]
[-] bubble_bg-2x.gif.gif.tar.gz
[edit]
[-] admin.php.tar
[edit]
[-] .sharing.tar
[edit]
[-] 1eb46e461ac74d68.tar.gz
[edit]
[-] document.png.png.tar.gz
[edit]
[-] site-health.css.tar
[edit]
[-] pattern.tar.gz
[edit]
[-] e64fd5d508b2d9b7.tar.gz
[edit]
[-] softaculous.log.log.tar.gz
[edit]
[-] post-title.php.tar
[edit]
[-] alt-nodejs18_native.req.tar
[edit]
[-] ec7dc326882ae4b6.tar
[edit]
[-] 1e837390bbcbbb36.tar.gz
[edit]
[-] max_resvport.tar
[edit]
[-] class-wp-widget-factory.php.tar
[edit]
[-] .subaccounts.zip
[edit]
[-] 2e276342bb7b12383d1c76c08972a606bb9760.tar.gz
[edit]
[-] f96d55473f1d33350e45ce82c978c8be255084.tar
[edit]
[-] fbe3f7c3c5b3c142.tar.gz
[edit]
[-] .Trash.tar.gz
[edit]
[-] social-links.tar
[edit]
[-] spacer.zip
[edit]
[-] b151b73e6ab33cea5e13ed5dd3366a5facea42.tar.gz
[edit]
[-] site-title.zip
[edit]
[-] etc.tar
[edit]
[-] opt.zip
[edit]
[-] editor.js.js.tar.gz
[edit]
[-] 6f9d94b92cb6e4e23729fd042be118d4114b34.tar.gz
[edit]
[-] 1e82e274738cda57.tar.gz
[edit]
[-] storage.sqlite.sqlite.tar.gz
[edit]
[-] customize-widgets-rtl.min.css.tar
[edit]
[-] 606ca8bd020b99c5.tar
[edit]
[-] sitemaps.zip
[edit]
[-] fb164c3b81a73545.tar
[edit]
[-] c1bae9f6e4cc6d2b.tar
[edit]
[-] .Junk.tar.gz
[edit]
[-] e9c28ec40d40be53775fce6a19bcae23af597d.tar
[edit]
[-] 1ff7ef39a47d3691.tar.gz
[edit]
[-] 4.tar.gz
[edit]
[-] h.tar.gz
[edit]
[-] 1ace5c60a45fed51.tar
[edit]
[-] info.tar
[edit]
[-] class-wp-xmlrpc-server.php.php.tar.gz
[edit]
[-] llms.txt.tar
[edit]
[-] elements.php.tar
[edit]
[-] link.min.js.tar
[edit]
[-] a0a404870ca4083e.tar
[edit]
[-] list-reusable-blocks.tar.gz
[edit]
[-] services.tar.gz
[edit]
[-] 1e837390bbcbbb36.tar
[edit]
[-] t1lib.tar.gz
[edit]
[-] e63372724f4b8746.tar
[edit]
[-] media-video-widget.min.js.min.js.tar.gz
[edit]
[-] plugin-install.php.tar
[edit]
[-] 7f9552db16d7d413639ad992558730297461b7.tar
[edit]
[-] legacy_willneed_readahead.tar
[edit]
[-] ms-default-filters.php.php.tar.gz
[edit]
[-] .hamna@ediuae_com.tar
[edit]
[-] af718894f6f4e729.tar
[edit]
[-] wp_manager.zip
[edit]
[-] class-wp-metadata-lazyloader.php.php.tar.gz
[edit]
[-] browser.png.tar
[edit]
[-] post-template.tar.gz
[edit]
[-] 1d97db2d962d4a83.tar.gz
[edit]
[-] 1e100a079706a69d.tar
[edit]
[-] class-wp-importer.php.php.tar.gz
[edit]
[-] a57d3a8b73e8f9cdd85ad0d9d8401f296bc1a4.tar.gz
[edit]
[-] themes.php.tar
[edit]
[-] input.tar
[edit]
[-] color-picker.min.js.tar
[edit]
[-] site-logo.tar.gz
[edit]
[-] litespeed.tar.gz
[edit]
[-] au_backups.php.php.tar.gz
[edit]
[-] spinner-2x.gif.tar
[edit]
[-] class-wp-customize-manager.php.php.tar.gz
[edit]
[-] twemoji.js.js.tar.gz
[edit]
[-] 304d86ae9a68319503d43983970359e04c7d77.tar.gz
[edit]
[-] 2025.zip
[edit]
[-] theme.json.json.tar.gz
[edit]
[-] ea_php_cli.pm.pm.tar.gz
[edit]
[-] dovecot.index.log.tar
[edit]
[-] post-author-name.php.php.tar.gz
[edit]
[-] c11d05561df3c41a.tar
[edit]
[-] 495132644cfc1ec472a2351f99db9e88ec86be.tar.gz
[edit]
[-] comments.php.php.tar.gz
[edit]
[-] a65054b73bae515365102da8c794dfa58930a1.tar
[edit]
[-] certs.tar.gz
[edit]
[-] ed50162c2dcfeec3.tar
[edit]
[-] 1eaf03907d13ed4f.tar
[edit]
[-] 1ebc57e7105d1819.tar.gz
[edit]
[-] install-rtl.css.css.tar.gz
[edit]
[-] class-wp-translations.php.php.tar.gz
[edit]
[-] eventum.zip
[edit]
[-] fe499b5a1d775f29.tar
[edit]
[-] customize-models.min.js.min.js.tar.gz
[edit]
[-] 6a864331c503b9c5.tar
[edit]
[-] Auth.zip
[edit]
[-] 82a91e92eb41ebcb.tar.gz
[edit]
[-] fb97cec5e6078f06.tar
[edit]
[-] fullscreen.tar.gz
[edit]
[-] footnotes.php.tar
[edit]
[-] install.css.tar
[edit]
[-] b7aa935ccf02e226d9af7b0b3a3dc474df4665.tar.gz
[edit]
[-] class-wp-customize-panel.php.tar
[edit]
[-] colibri.tar
[edit]
[-] 14ee25fb5be57303344c7a6aca6a4601178c98.tar
[edit]
[-] 67077ae55d33e89943244a99053982ce5c5c1d.tar.gz
[edit]
[-] ms-upgrade-network.php.tar
[edit]
[-] 2ea5ff7520225aa8d9052e6faf8ae271ed2e05.tar
[edit]
[-] f514eea073363fcf10eae78764adc086b67703.tar.gz
[edit]
[-] 072e186dd76f1ede3d019d2897349a33c77b36.tar
[edit]
[-] 1e7f381bba8fdf7d.tar
[edit]
[-] dovecot-keywords.tar.gz
[edit]
[-] 2.zip
[edit]
[-] sodium_compat.zip
[edit]
[-] 19a80e618a21d0a8e7b8f2d925fb755e0a206b.tar.gz
[edit]
[-] media-grid.js.js.tar.gz
[edit]
[-] 62d16be6fb0522cc3a70605386266d7a450b18.tar
[edit]
[-] list-tables-rtl.css.css.tar.gz
[edit]
[-] e8159f38e99925f68b391b9ee28af1d75ba308.tar.gz
[edit]
[-] d54c5f807dcab2ab406fb2c9801662b85f2627.tar.gz
[edit]
[-] ea_php_cli.pm.tar
[edit]
[-] editor-expand.min.js.min.js.tar.gz
[edit]
[-] mips64r6-linux.tar.gz
[edit]
[-] b82a95d89cc219ff749005c7985f644dbe51ea.tar.gz
[edit]
[-] add21f187291e2e5.tar.gz
[edit]
[-] revisions-rtl.css.tar
[edit]
[-] fbea0ce510f8e996.tar
[edit]
[-] export-personal-data.php.php.tar.gz
[edit]
[-] d66dfa3f.tar.gz
[edit]
[-] a65054b73bae515365102da8c794dfa58930a1.tar.gz
[edit]
[-] date.php.tar
[edit]
[-] custom-header.php.php.tar.gz
[edit]
[-] 590ed5bdc71dcc1729e233b94f18f7e8bc2ab1.tar.gz
[edit]
[-] c161ef6188e69d02.tar
[edit]
[-] rss-2x.png.tar
[edit]
[-] a8b46681b8338dd1.tar.gz
[edit]
[-] 47f485bc45f0055dc56792a1cb8d1357b090bf.tar
[edit]
[-] ea90acff93f35c0f.tar
[edit]
[-] wp-emoji.min.js.min.js.tar.gz
[edit]
[-] search.php.php.tar.gz
[edit]
[-] ec7b0aa55a790179.tar.gz
[edit]
[-] media.min.js.tar
[edit]
[-] code-editor-rtl.css.css.tar.gz
[edit]
[-] b22b169eed78fdcd.tar.gz
[edit]
[-] 25e.tar
[edit]
[-] theme.min.js.min.js.tar.gz
[edit]
[-] sysctl.d.tar
[edit]
[-] envo-royal.zip
[edit]
[-] query.tar
[edit]
[-] update_pass.php.tar
[edit]
[-] 1ef5f50004a50c91.tar.gz
[edit]
[-] wp-diff.php.php.tar.gz
[edit]
[-] admin-functions.php.php.tar.gz
[edit]
[-] freedom-3.svg.tar
[edit]
[-] 708750fc874605ec6ee3265892a3bbdf4c13f3.tar
[edit]
[-] paintbrushjs.tar
[edit]
[-] installations.php.php.tar.gz
[edit]
[-] 121bbbaa45a5bbf3.tar.gz
[edit]
[-] little.zip
[edit]
[-] 8e72685167de604e.tar.gz
[edit]
[-] .info@accubooksuae_com.tar.gz
[edit]
[-] f59cccbb8ec368263a3b878a63d1ccd95003d7.tar
[edit]
[-] 1e14859cc848fbab.tar
[edit]
[-] clipboard.min.js.tar
[edit]
[-] rest-api.tar
[edit]
[-] d9eb2f1e6d91d8f5aeba8591b5a551b56a1f3f.tar.gz
[edit]
[-] 6a8748d6c088a763.tar.gz
[edit]
[-] colorpicker.min.js.min.js.tar.gz
[edit]
[-] 47b8f7979a8b3d16d7b82f9579b745d6893f0d.tar.gz
[edit]
[-] 0497695a681fc0a5169a8d2c492f16f64208f5.tar
[edit]
[-] 381a9a58faaeadb38d95d79a00e2152499bcd3.tar
[edit]
[-] fb2c9fdcac1ede18.tar
[edit]
[-] 19a80e618a21d0a8e7b8f2d925fb755e0a206b.tar
[edit]
[-] fec5ce16069bf1a4af0eaf90995a8c09c7d55a.tar
[edit]
[-] video.php.tar
[edit]
[-] wp-util.min.js.min.js.tar.gz
[edit]
[-] align-center.png.png.tar.gz
[edit]
[-] html.zip
[edit]
[-] ms-load.php.php.tar.gz
[edit]
[-] rss-2x.png.png.tar.gz
[edit]
[-] edit.css.css.tar.gz
[edit]
[-] cea50880d6e9c782127ad0c3111d7be2be95de.tar
[edit]
[-] e1123aa31a8d72a32ce59aa11b800edc9f67df.tar.gz
[edit]
[-] ms-site.php.tar
[edit]
[-] t1lib.tar
[edit]
[-] fba6a500611bfc58.tar.gz
[edit]
[-] b2c1f3062a8434af09718fe0278ffb01e6b38e.tar.gz
[edit]
[-] privacy.svg.svg.tar.gz
[edit]
[-] crop.tar.gz
[edit]
[-] class-wp-post-type.php.tar
[edit]
[-] contextcomplete.vim.tar
[edit]
[-] spinner.gif.tar
[edit]
[-] revisions.css.css.tar.gz
[edit]
[-] 2ea461c70d150607.tar.gz
[edit]
[-] d81e00537cfadadf5cae2f1e0888f9fffcd515.tar.gz
[edit]
[-] 9da55849c98b4373f87c792d7341251e4084b4.tar
[edit]
[-] version.php.tar
[edit]
[-] class-wp-posts-list-table.php.tar
[edit]
[-] comments.tar.gz
[edit]
[-] site-lisp.tar
[edit]
[-] 1e7aebe6da1a9f5d.tar
[edit]
[-] media-new.php.tar
[edit]
[-] term-name.php.php.tar.gz
[edit]
[-] eliteroyalcrown.com.zip
[edit]
[-] getid3.php.php.tar.gz
[edit]
[-] class-wp-user-query.php.tar
[edit]
[-] widgets-rtl.css.css.tar.gz
[edit]
[-] plugin.php.php.tar.gz
[edit]
[-] config.inc.php.inc.php.tar.gz
[edit]
[-] .razor.zip
[edit]
[-] query-title.zip
[edit]
[-] awstats.test.ediuae.com.conf.test.ediuae.com.conf.tar.gz
[edit]
[-] tags-box.js.tar
[edit]
[-] fontconfig.zip
[edit]
[-] wp.26_56658.2026-03-11_15-10-01.tar
[edit]
[-] namespaced.tar.gz
[edit]
[-] ediuae.tar.gz
[edit]
[-] dashicons.min.css.tar
[edit]
[-] sitepad.php.tar
[edit]
[-] 2026.zip
[edit]
[-] .cpanel_ics_import_info@nakaafi.com.tar
[edit]
[-] b5a6250c7a7b379a.tar.gz
[edit]
[-] cgi-bin.zip
[edit]
[-] 4b315819fdb7d4d7e31bd11280c570c081de09.tar.gz
[edit]
[-] 1e2e336083ccc04e.tar.gz
[edit]
[-] e25e778e650d57cf.tar.gz
[edit]
[-] underscore.js.js.tar.gz
[edit]
[-] 1ecbfc5455df98bf.tar
[edit]
[-] functions.wp-scripts.php.tar
[edit]
[-] thickbox.zip
[edit]
[-] class-wp-http-streams.php.php.tar.gz
[edit]
[-] user.zip
[edit]
[-] sitemaps.tar
[edit]
[-] 2e8dec186f326120.tar
[edit]
[-] ppc8560-linux.tar.gz
[edit]
[-] autoloader.php.tar
[edit]
[-] site-start.d.zip
[edit]
[-] 6305b752dedf6f2c967d2a8165494b529a8a73.tar
[edit]
[-] 1e8eb1ab240c6012.tar
[edit]
[-] buttons.css.tar
[edit]
[-] fbba4f9d286bceee.tar.gz
[edit]
[-] 1e6fcedc2ddddf0b.tar.gz
[edit]
[-] f.zip
[edit]
[-] menu.png.tar
[edit]
[-] 99f3fc8ff19159ed.tar.gz
[edit]
[-] post-formats32-vs.png.tar
[edit]
[-] Cache.tar
[edit]
[-] 1ea7540a00d2f149.tar.gz
[edit]
[-] a8d5db8dcc7e53fe.tar
[edit]
[-] a8d803c39067166b.tar.gz
[edit]
[-] s.zip
[edit]
[-] b9adebc3e493e742.tar.gz
[edit]
[-] 1a3af01721f80ba7.tar.gz
[edit]
[-] fb43c3582de380aa.tar
[edit]
[-] eacf41e9659af8ea.tar
[edit]
[-] wpspin_light.gif.tar
[edit]
[-] class-wp-feed-cache.php.php.tar.gz
[edit]
[-] wp-embed-template.min.css.tar
[edit]
[-] post-author-name.zip
[edit]
[-] 3b27f4fb2c9ac86219e8c60039074dcd2c9cb4.tar
[edit]
[-] aac91059744d5f18.tar
[edit]
[-] arrow-pointer-blue.png.png.tar.gz
[edit]
[-] class-core-upgrader.php.tar
[edit]
[-] ed1d4025261e9cb4.tar
[edit]
[-] class-wp-rest-response.php.php.tar.gz
[edit]
[-] .last.inodes.last.inodes.tar.gz
[edit]
[-] align-right.png.tar
[edit]
[-] aac91059744d5f18.tar.gz
[edit]
[-] Jcrop.gif.gif.tar.gz
[edit]
[-] wordpress-logo.svg.tar
[edit]
[-] nux.zip
[edit]
[-] style-engine.tar
[edit]
[-] 1a19f412efc02f4538f9a4c2a941a9376e7c30.tar
[edit]
[-] farbtastic-rtl.min.css.tar
[edit]
[-] 5b7.tar.gz
[edit]
[-] 1e603af083a20f1e.tar.gz
[edit]
[-] accordion.php.tar
[edit]
[-] site-icon.js.tar
[edit]
[-] vcards.tar
[edit]
[-] pomo.zip
[edit]
[-] c336d637bd8de947.tar
[edit]
[-] f7ca106ab356b7bb69126633280aa79598d88b.tar.gz
[edit]
[-] dovecot-uidvalidity.6820ab00.6820ab00.tar.gz
[edit]
[-] 1ec901320e655704.tar
[edit]
[-] 072e186dd76f1ede3d019d2897349a33c77b36.tar.gz
[edit]
[-] irq.zip
[edit]
[-] send-app.zip
[edit]
[-] 1e18c34896dc5aa8.tar
[edit]
[-] widgets.php.php.tar.gz
[edit]
[-] a83d93e3e1fa4ac6.tar.gz
[edit]
[-] affbad5db7eac2eb.tar.gz
[edit]
[-] components.tar
[edit]
[-] freeform.zip
[edit]
[-] 24441843f1c516ed57424d326ed9a958923943.tar.gz
[edit]
[-] page-cluster.tar.gz
[edit]
[-] awstats092025.accubooksuae.com.ediuae.com.txt.tar
[edit]
[-] no.png.tar
[edit]
[-] comment-reply.min.js.min.js.tar.gz
[edit]
[-] 8e2b72ff5125886c.tar.gz
[edit]
[-] lockd.zip
[edit]
[-] DSNConfigurator.php.tar
[edit]
[-] edit.css.tar
[edit]
[-] 1c6287d174e2dc79.tar
[edit]
[-] 96f33b4d6f2f8ec1.tar
[edit]
[-] 1e2e336083ccc04e.tar
[edit]
[-] embed-template.php.tar
[edit]
[-] 9d71552ea4516ef6.tar
[edit]
[-] 468671541d6ace4da24f164b0706e8aec135a5.tar
[edit]
[-] etc.zip
[edit]
[-] block-patterns.tar.gz
[edit]
[-] mips64r6el-linux.tar.gz
[edit]
[-] OAuth.php.tar
[edit]
[-] c4fbe_41d83_49bd6dffb546e6ce5f50a81443408692.key.tar
[edit]
[-] freedom-4.svg.svg.tar.gz
[edit]
[-] error-protection.php.php.tar.gz
[edit]
[-] class-wp-site-health.php.tar
[edit]
[-] 830323943ca2a6da15a45eb5c3ef3eeb87eb44.tar.gz
[edit]
[-] da36b04d027929221bbcab8cbe562a80d984ec.tar
[edit]
[-] 0497695a681fc0a5169a8d2c492f16f64208f5.tar.gz
[edit]
[-] install.js.tar
[edit]
[-] ms-themes-reference.php.tar
[edit]
[-] media-editor.js.js.tar.gz
[edit]
[-] langs.tar
[edit]
[-] 28.zip
[edit]
[-] menu-header.php.tar
[edit]
[-] alt-nodejs9_native.req.req.tar.gz
[edit]
[-] wp-admin-rtl.css.tar
[edit]
[-] gcrypt.tar
[edit]
[-] plupload.tar.gz
[edit]
[-] deprecated-media-rtl.min.css.tar
[edit]
[-] fb7dcb45c3c7d446.tar.gz
[edit]
[-] dashboard-background.svg.svg.tar.gz
[edit]
[-] class-custom-image-header.php.php.tar.gz
[edit]
[-] 0049be9fd389e04fd3920e9e0d6dc5ea4e1689.tar.gz
[edit]
[-] Requests.tar.gz
[edit]
[-] 1e603af083a20f1e.tar
[edit]
[-] svg-painter.min.js.min.js.tar.gz
[edit]
[-] button.tar.gz
[edit]
[-] wpspin_light.gif.gif.tar.gz
[edit]
[-] qtoa.tar.gz
[edit]
[-] dovecot.index.tar
[edit]
[-] a9dfba4974c6d64c.tar.gz
[edit]
[-] term-description.tar.gz
[edit]
[-] fb3f12ba3eb8cfe1.tar.gz
[edit]
[-] install.php.php.tar.gz
[edit]
[-] wp-ajax-response.min.js.min.js.tar.gz
[edit]
[-] a39db181dc014645.tar.gz
[edit]
[-] marker.png.tar
[edit]
[-] language-chooser.js.js.tar.gz
[edit]
[-] deprecated-media-rtl.css.tar
[edit]
[-] help.zh_TW.txt.tar
[edit]
[-] 806a94a4996f13523dddc75423075a501d4149.tar
[edit]
[-] 1d164b6c946c8e8c.tar
[edit]
[-] 83f73e746d3ab5f24541e0e2067c3d32da581f.tar
[edit]
[-] widgets.min.css.min.css.tar.gz
[edit]
[-] a8054ef7321ae3677e9d96fef98501715372c7.tar.gz
[edit]
[-] fb2d10e7cc8b18cf.tar
[edit]
[-] paintbrushjs.tar.gz
[edit]
[-] post-date.tar.gz
[edit]
[-] hr.zip
[edit]
[-] class-plugin-upgrader.php.tar
[edit]
[-] imgareaselect.tar
[edit]
[-] .cpanel_vcf_import_gimanthi@ediuae.com.tar
[edit]
[-] 9a0a33b0bc9bdae9.tar
[edit]
[-] e63372724f4b8746.tar.gz
[edit]
[-] man.tar
[edit]
[-] media-models.js.js.tar.gz
[edit]
[-] preformatted.tar
[edit]
[-] 1f9728f8e6adf9ad.tar.gz
[edit]
[-] edit.xml.xml.tar.gz
[edit]
[-] c78badfdcd5275ba.tar
[edit]
[-] link-template.php.tar
[edit]
[-] 7cb9415653a5857840d54051e12f378f5b7c6b.tar
[edit]
[-] eb8d2a20725ccfac505647e399f84082e10667.tar
[edit]
[-] media.tar.gz
[edit]
[-] 8e7ed34306edf377.tar
[edit]
[-] kpartx_id.tar.gz
[edit]
[-] bfdd421cd165d922.tar.gz
[edit]
[-] media-button.png.tar
[edit]
[-] 283411abd6d8fbec582166099cae9eb5472ce8.tar
[edit]
[-] autosave.js.tar
[edit]
[-] json2.min.js.min.js.tar.gz
[edit]
[-] hamna@ediuae.com.tar.gz
[edit]
[-] 1e6849d8aeb07cd2.tar
[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]
[-] 7fcbb2dc873e279dce0b248cc0ea55fc44e554.tar.gz
[edit]
[-] .bash_history.tar
[edit]
[-] zikula15.tar
[edit]
[-] pattern.tar
[edit]
[-] 1ed1e4df7620d2bf.tar
[edit]
[-] fb7dcb45c3c7d446.tar
[edit]
[-] ld.so.conf.so.conf.tar.gz
[edit]
[-] class-wp-tax-query.php.tar
[edit]
[-] a1af90ef2b91f08a.tar
[edit]
[-] langs.tar.gz
[edit]
[-] 1e8cb5603e97bf7d.tar
[edit]
[-] .hcflag.tar
[edit]
[-] site-icon-rtl.min.css.min.css.tar.gz
[edit]
[-] robots.txt.txt.tar.gz
[edit]
[-] datastore.zip
[edit]
[-] 121379bc50a1e1ca.tar
[edit]
[-] .bashrc.tar
[edit]
[-] user-profile.min.js.tar
[edit]
[-] a1d0099a0f5dd0a1.tar
[edit]
[-] term-name.php.tar
[edit]
[-] e2021cfa7b4730c4.tar.gz
[edit]
[-] archives.tar.gz
[edit]
[-] themes-rtl.min.css.min.css.tar.gz
[edit]
[-] 1ef0d0977287e91d.tar
[edit]
[-] softaculous_backups.tar
[edit]
[-] eca5f6b8cbeaae3c.tar
[edit]
[-] 768509bfcc4a0b7c2eb11331a9c29b59fde81e.tar.gz
[edit]
[-] man.tar.gz
[edit]
[-] 09e83c4461ff8ed8aa3996b1b0ec707ef4ceb5.tar
[edit]
[-] .Sent.zip
[edit]
[-] gallery.php.tar
[edit]
[-] class-ftp.php.tar
[edit]
[-] customize-base.min.js.tar
[edit]
[-] 9005e106117153972e3c79f8e8ec7ce9ab8736.tar
[edit]
[-] patchfs.tar
[edit]
[-] Cookie.tar
[edit]
[-] 62c6413ed02aee623ce90361644e93858d5ced.tar.gz
[edit]
[-] gallery.js.tar
[edit]
[-] dovecot.list.index.list.index.tar.gz
[edit]
[-] formatting.php.php.tar.gz
[edit]
[-] de2ae_f4bbb_e29fc085b08fc678706db8561b5352bf.key.tar
[edit]
[-] c751b591aeaff16c.tar
[edit]
[-] theme-rtl.min.css.tar
[edit]
[-] ediuae.com.zip
[edit]
[-] afb812f87e2aeb8a.tar.gz
[edit]
[-] ed977b65aad68a76.tar
[edit]
[-] w-logo-blue.png.tar
[edit]
[-] post-author.zip
[edit]
[-] f71be1bd16b7f4e6.tar.gz
[edit]
[-] edit-comments.php.php.tar.gz
[edit]
[-] class-wp-customize-nav-menus.php.php.tar.gz
[edit]
[-] navigation-submenu.php.php.tar.gz
[edit]
[-] buttons.min.css.tar
[edit]
[-] git-fsck-objects.tar
[edit]
[-] a39db181dc014645.tar
[edit]
[-] 8e72685167de604e.tar
[edit]
[-] wp-compat.zip
[edit]
[-] ftplugin.tar.gz
[edit]
[-] c111d2dc9aaaa341.tar
[edit]
[-] a05b90570b47d587d935371275576c84d70545.tar
[edit]
[-] wordpress-logo-white.svg.tar
[edit]
[-] drop_caches.tar.gz
[edit]
[-] hosts.tar.gz
[edit]
[-] nav-menu.js.tar
[edit]
[-] a.zip
[edit]
[-] svg-painter.min.js.tar
[edit]
[-] wp-embed-template-ie.css.tar
[edit]
[-] 1e80649ea425230b.tar.gz
[edit]
[-] 1ebc57e7105d1819.tar
[edit]
[-] editor-rtl.css.css.tar.gz
[edit]
[-] robots-template.php.tar
[edit]
[-] zip.vim.vim.tar.gz
[edit]
[-] opt0.4.zip
[edit]
[-] 82a91e92eb41ebcb.tar
[edit]
[-] edit-widgets.tar
[edit]
[-] post-time-to-read.tar.gz
[edit]
[-] resolv.conf.tar
[edit]
[-] 2026.tar
[edit]
[-] 5dee0f913e93875f9eecfbde80e9994e2e53c9.tar.gz
[edit]
[-] fb778f7a0ccda72c.tar
[edit]
[-] moodle41.zip
[edit]
[-] customize-preview.css.css.tar.gz
[edit]
[-] atomlib.php.tar
[edit]
[-] wp-api.min.js.min.js.tar.gz
[edit]
[-] ms-admin.php.php.tar.gz
[edit]
[-] comment-reply.js.tar
[edit]
[-] git-pull.tar
[edit]
[-] list-2x.png.png.tar.gz
[edit]
[-] feed-rss2.php.tar
[edit]
[-] accordion-panel.zip
[edit]
[-] e2edc41eeb285c96.tar.gz
[edit]
[-] 968434c2cc6d7b342ab0330f42caeda2efb2b7.tar
[edit]
[-] keys.tar
[edit]
[-] meta-boxes.php.php.tar.gz
[edit]
[-] setup-config.php.php.tar.gz
[edit]
[-] media-rtl.min.css.min.css.tar.gz
[edit]
[-] buttons-rtl.css.css.tar.gz
[edit]
[-] chyrp.zip
[edit]
[-] 96fa1ea3dd170b1a.tar
[edit]
[-] 1.txt.tar
[edit]
[-] f4543a0a5d901041.tar
[edit]
[-] aa1e5249c42d37cb.tar
[edit]
[-] wp-embed-template.js.tar
[edit]
[-] embed.php.php.tar.gz
[edit]
[-] readme.txt.txt.tar.gz
[edit]
[-] post.php.tar
[edit]
[-] dashboard.php.tar
[edit]
[-] help.et.txt.tar
[edit]
[-] media-upload.js.js.tar.gz
[edit]
[-] navigation.zip
[edit]
[-] 08e883cda2ec44df43726a44aa4dc22d45705c.tar
[edit]
[-] cbdb0_d4ab1_1d31382d3e7d1c39f8f7e703b5bfeafa.key.tar
[edit]
[-] custom-header.php.tar
[edit]
[-] editor.min.js.min.js.tar.gz
[edit]
[-] 7db559aa3e41ebb8c0b8d010958cdfe5a383fd.tar
[edit]
[-] c4b76f67f5f9f4a9.tar
[edit]
[-] customize-controls-rtl.css.tar
[edit]
[-] 4e3646e5cff6e951554e7058d8825cdbed375a.tar
[edit]
[-] abilities-api.tar
[edit]
[-] class-wpdb.php.php.tar.gz
[edit]
[-] caches.tar
[edit]
[-] media-gallery.js.tar
[edit]
[-] spurious.tar
[edit]
[-] shortcode.js.js.tar.gz
[edit]
[-] c751b591aeaff16c.tar.gz
[edit]
[-] customize-preview.js.js.tar.gz
[edit]
[-] 1216dbb49213f337.tar.gz
[edit]
[-] E.tar
[edit]
[-] .cpanel_vcf_import_social@ediuae.com.cpanel_vcf_import_social@ediuae.com.tar.gz
[edit]
[-] 4images.zip
[edit]
[-] user-profile.js.js.tar.gz
[edit]
[-] 4059ed8756647a4f99a14bfa8d6c4a889d3711.tar
[edit]
[-] rest-api.php.tar
[edit]
[-] nav-menu.php.php.tar.gz
[edit]
[-] edit-widgets.tar.gz
[edit]
[-] softaculous.log.tar
[edit]
[-] 1f45c9c08f34f920.tar.gz
[edit]
[-] 1e872bb10df28d5a.tar
[edit]
[-] blank.gif.tar
[edit]
[-] edit-form-comment.php.php.tar.gz
[edit]
[-] wp-api.js.js.tar.gz
[edit]
[-] 13e6f7a95ae04672dc5e454c50d1d42e45bf78.tar.gz
[edit]
[-] stars-2x.png.png.tar.gz
[edit]
[-] ssl.db.cache.tar
[edit]
[-] class-wp-block-type-registry.php.tar
[edit]
[-] export.php.tar
[edit]
[-] 304d86ae9a68319503d43983970359e04c7d77.tar
[edit]
[-] default-widgets.php.php.tar.gz
[edit]
[-] xit.gif.tar
[edit]
[-] balanced.zip
[edit]
[-] abilities.php.tar
[edit]
[-] .Junk.zip
[edit]
[-] post-terms.zip
[edit]
[-] 1e28dfdf67124cc8.tar
[edit]
[-] alphapca56-linux.tar
[edit]
[-] fbe4c91c881423bb.tar.gz
[edit]
[-] .cl.selector.zip
[edit]
[-] emacs.zip
[edit]
[-] fb8f306bc74377c6.tar
[edit]
[-] 82a88bd586d2838f.tar.gz
[edit]
[-] eca5f6b8cbeaae3c.tar.gz
[edit]
[-] .cache.tar
[edit]
[-] 2fc1cfbb2443c8035d426a29e534059127bc63.tar.gz
[edit]
[-] 6b88808e87ba490067261cc6d3a35e36400065.tar.gz
[edit]
[-] author-template.php.php.tar.gz
[edit]
[-] class-wp-http-proxy.php.tar
[edit]
[-] dist.tar
[edit]
[-] social@ediuae.com.tar
[edit]
[-] custom-background.js.js.tar.gz
[edit]
[-] info@ediuae.com.zip
[edit]
[-] about.php.php.tar.gz
[edit]
[-] status.tar
[edit]
[-] wpgallery.tar.gz
[edit]
[-] archives.zip
[edit]
[-] 1eb539abcc516db7.tar
[edit]
[-] 9a0ecb6e11cb43b7.tar.gz
[edit]
[-] query.zip
[edit]
[-] class-wp-dependencies.php.tar
[edit]
[-] ec4bb579780d7946.tar.gz
[edit]
[-] c760fb6fc8770702.tar.gz
[edit]
[-] a8054ef7321ae3677e9d96fef98501715372c7.tar
[edit]
[-] 1e0b0fadcbc6869e.tar
[edit]
[-] class-wp-theme.php.php.tar.gz
[edit]
[-] e.zip
[edit]
[-] datastore.tar
[edit]
[-] humogen.tar.gz
[edit]
[-] skins.zip
[edit]
[-] users.php.php.tar.gz
[edit]
[-] help.pt.txt.tar
[edit]
[-] elgg2.zip
[edit]
[-] f5689beff3e5c057f2e08ff5bd41a3efad11c0.tar
[edit]
[-] author-template.php.tar
[edit]
[-] wp-activate.php.tar
[edit]
[-] 9d7d804042aa0287.tar.gz
[edit]
[-] 2e421ad1a9670937.tar
[edit]
[-] post-author.php.php.tar.gz
[edit]
[-] awstats072025.accubooksuae.com.ediuae.com.txt.tar
[edit]
[-] installations.php.tar
[edit]
[-] hoverIntent.min.js.min.js.tar.gz
[edit]
[-] accubooksuae.com.tar.gz
[edit]
[-] d485d914bad3016f16589aa9bc906c6eaa38b9.tar.gz
[edit]
[-] claro.zip
[edit]
[-] feed-rss.php.tar
[edit]
[-] admin-post.php.php.tar.gz
[edit]
[-] info@agrivaingredients.com.zip
[edit]
[-] ediuae.rcube.db.1767781039.rcube.db.1767781039.tar.gz
[edit]
[-] GMT-6.tar.gz
[edit]
[-] .htaccess.tar
[edit]
[-] rest-api.zip
[edit]
[-] index.php0.tar
[edit]
[-] notes.txt.tar
[edit]
[-] db1abeb63d499e7ae2d49ae4fbbec0f495e7bf.tar
[edit]
[-] adddbc6f283afe76.tar.gz
[edit]
[-] 5652c87809896a555622f45add0f88ab5ce9db.tar
[edit]
[-] style-rtl.css.css.tar.gz
[edit]
[-] lve.zip
[edit]
[-] jquery.zip
[edit]
[-] 9929491a3179bdfb.tar
[edit]
[-] list.tar.gz
[edit]
[-] date-button.gif.tar
[edit]
[-] media-views.js.js.tar.gz
[edit]
[-] 8e966e7f418c67d4.tar.gz
[edit]
[-] 6c8883240ebde2384274488923c5eda5e79538.tar.gz
[edit]
[-] wp-admin.css.tar
[edit]
[-] post-excerpt.tar.gz
[edit]
[-] media-button.png.png.tar.gz
[edit]
[-] test.ediuae.com.tar
[edit]
[-] 6e5.tar
[edit]
[-] smilies.tar
[edit]
[-] tinymce.zip
[edit]
[-] accents.vim.tar
[edit]
[-] wp-cron.php.tar
[edit]
[-] e265848897c47d27.tar
[edit]
[-] documentor.tar
[edit]
[-] 1d164b6c946c8e8c.tar.gz
[edit]
[-] 4b5f4ede7ab54a9607864b94e4d1364a4da3c6.tar.gz
[edit]
[-] aff11a24fe9ac559.tar.gz
[edit]
[-] customize-widgets.css.css.tar.gz
[edit]
[-] 1e7857f14c05ab25.tar
[edit]
[-] brp-scl-compress.tar.gz
[edit]
[-] locale.tar.gz
[edit]
[-] style-rtl.min.css.min.css.tar.gz
[edit]
[-] nav-menu.min.js.min.js.tar.gz
[edit]
[-] class-wp-theme-json-resolver.php.tar
[edit]
[-] themes.zip
[edit]
[-] 82ac6ac92c889fd6.tar.gz
[edit]
[-] 9631590b17e830a2.tar
[edit]
[-] 202934a3c56a52999c8f34c59d60027a3ff3f4.tar
[edit]
[-] buttons.zip
[edit]
[-] crystal.tar.gz
[edit]
[-] d78d19556cef9a783c6d04b1d7a4b53d875643.tar
[edit]
[-] PHPMailer.tar.gz
[edit]
[-] admin@ediuae.com.zip
[edit]
[-] b5b1f9a01f2f83f5b8cf000721078c17bf7cd8.tar.gz
[edit]
[-] 1e32484a1cfcb2fe.tar.gz
[edit]
[-] async-upload.php.tar
[edit]
[-] Montreal.tar
[edit]
[-] wpspin-2x.gif.gif.tar.gz
[edit]
[-] verse.zip
[edit]
[-] image-edit.js.js.tar.gz
[edit]
[-] forms.css.css.tar.gz
[edit]
[-] js.zip
[edit]
[-] f74606b785778221f16906d9d6afa22c886f47.tar
[edit]
[-] query-pagination-next.tar
[edit]
[-] tw-sack.js.tar
[edit]
[-] 792767540eb93e60cb7e1ec20591d48a93d54f.tar.gz
[edit]
[-] html.tar
[edit]
[-] about.min.css.tar
[edit]
[-] 1a9b8e86a21df88c.tar.gz
[edit]
[-] 51594d8d8463add7.tar
[edit]
[-] edit-tags.php.php.tar.gz
[edit]
[-] thickbox.tar.gz
[edit]
[-] resellers.txt.txt.tar.gz
[edit]
[-] kcare.zip
[edit]
[-] query-total.tar
[edit]
[-] fb4bebf40ca0e199.tar.gz
[edit]
[-] SimplePie.tar
[edit]
[-] colors.tar.gz
[edit]
[-] php-compat.tar
[edit]
[-] my-sites.php.php.tar.gz
[edit]
[-] ed97a07230d4d024.tar
[edit]
[-] logs.tar.gz
[edit]
[-] f57f84c63b31ccd8066c81991aa346f8bcdc02.tar.gz
[edit]
[-] script-loader.php.tar
[edit]
[-] softaculous_backups.tar.gz
[edit]
[-] af4a9090ae8adcb7.tar
[edit]
[-] block-supports.tar
[edit]
[-] read-more.php.tar
[edit]
[-] afd58924ffd62773.tar.gz
[edit]
[-] accelerator-performance.tar
[edit]
[-] SMTP.php.tar
[edit]
[-] 2eaad13bb4f12dfb.tar
[edit]
[-] customize-widgets-rtl.css.tar
[edit]
[-] backbone.js.tar
[edit]
[-] l10n-rtl.min.css.tar
[edit]
[-] c1bae9f6e4cc6d2b.tar.gz
[edit]
[-] session.php.php.tar.gz
[edit]
[-] format-library.tar.gz
[edit]
[-] fbf4916e75ae1d8a.tar
[edit]
[-] colorpicker.zip
[edit]
[-] c1cbd4fefa32a561a0320f475f49b749eb41b1.tar
[edit]
[-] .admin@ediuae_com.zip
[edit]
[-] .info@accubooksuae_com.zip
[edit]
[-] b472340672781748e23955ca867f2648898e83.tar
[edit]
[-] kabi.sh.sh.tar.gz
[edit]
[-] 1ef9f4f72bc25426.tar.gz
[edit]
[-] 1e133701b72c4151.tar.gz
[edit]
[-] media.js.tar
[edit]
[-] images.tar.gz
[edit]
[-] README.txt.tar
[edit]
[-] suitecrm7.zip
[edit]
[-] help.eo.txt.tar
[edit]
[-] images.tar
[edit]
[-] autoconf.tar
[edit]
[-] wp-auth-check.js.js.tar.gz
[edit]
[-] backups.tar
[edit]
[-] fe9afa506dcfcf775c7187a472117c239139aa.tar
[edit]
[-] 20e610ff4179d6e3.tar
[edit]
[-] aff95ede1256493f.tar
[edit]
[-] ff46a268e6e5d545e3e009db7e2b8ea03225ea.tar
[edit]
[-] 3706d85607f8228d3a5b2a627cf606a4a7a551.tar
[edit]
[-] 1e5c8d81bb3b1804.tar.gz
[edit]
[-] autosave.js.js.tar.gz
[edit]
[-] ea6f14040dd26964.tar.gz
[edit]
[-] base-styles.zip
[edit]
[-] .info@nakaafi_com.tar
[edit]
[-] l10n.css.tar
[edit]
[-] dashicons.svg.svg.tar.gz
[edit]
[-] file.tar
[edit]
[-] nsswitch.conf.conf.tar.gz
[edit]
[-] imgedit-icons.png.tar
[edit]
[-] _sd_unit_files.tar
[edit]
[-] 37769fe778a36428.tar.gz
[edit]
[-] a796755c2d4ef8ab753479cea5ae5bf41be3ef.tar.gz
[edit]
[-] 83f73e746d3ab5f24541e0e2067c3d32da581f.tar.gz
[edit]
[-] ediuae.rcube.db.1768301805.tar
[edit]
[-] user-profile.min.js.min.js.tar.gz
[edit]
[-] hoverIntent.js.js.tar.gz
[edit]
[-] themes.css.tar
[edit]
[-] imf865ac.zip
[edit]
[-] term.php.php.tar.gz
[edit]
[-] b9a386cd45abc950.tar.gz
[edit]
[-] smilies.tar.gz
[edit]
[-] common.js.tar
[edit]
[-] inet_peer_threshold.tar.gz
[edit]
[-] 24441843f1c516ed57424d326ed9a958923943.tar
[edit]
[-] b9a1ecfe35de2c4c.tar
[edit]
[-] 76582f9c437b981e945086c850102b91a7f16b.tar.gz
[edit]
[-] 1cfc0a80919059b2dbf1e2b3d12a2aaa8b8d53.tar
[edit]
[-] f06af51bf388422c21ae90258da300f8becc45.tar.gz
[edit]
[-] list-item.zip
[edit]
[-] vimrc.tar.gz
[edit]
[-] php-compat.tar.gz
[edit]
[-] class-wp-query.php.php.tar.gz
[edit]
[-] c75c9f71191ce339.tar.gz
[edit]
[-] api-request.min.js.tar
[edit]
[-] abilities.php.php.tar.gz
[edit]
[-] wordpress.tar.gz
[edit]
[-] customize.php.tar
[edit]
[-] da8b9bdfcebae727ca5eef79bf4492848083f5.tar.gz
[edit]
[-] d2efa3ec36766bd60045332b5dbe1679b6f025.tar
[edit]
[-] wp-pointer-rtl.min.css.min.css.tar.gz
[edit]
[-] aacd20fc536497cb.tar.gz
[edit]
[-] e1609972c77db65b3a180af1653f061781c190.tar.gz
[edit]
[-] verse.tar.gz
[edit]
[-] post-author-biography.tar
[edit]
[-] class-wp-sitemaps.php.php.tar.gz
[edit]
[-] 34470988695f25288751f7fa4ce5ae864acf5d.tar
[edit]
[-] 1edf12a490d2c6e5.tar.gz
[edit]
[-] contribute-no-code.svg.svg.tar.gz
[edit]
[-] ms-blogs.php.tar
[edit]
[-] 82a31e6e906097b5.tar
[edit]
[-] d1279ea7af995095f7ad51435fe592934475a0.tar
[edit]
[-] utf8encodings.zip
[edit]
[-] c6b2b_a1d63_01bdca151198871b95f7b7a36eae4652.key.tar
[edit]
[-] 0696607d810199973ae87adb737454dcfdd6f9.tar.gz
[edit]
[-] class-wp-dependencies.php.php.tar.gz
[edit]
[-] providers.tar
[edit]
[-] crypto.tar
[edit]
[-] humogen.tar
[edit]
[-] dashboard.min.js.min.js.tar.gz
[edit]
[-] awstats112025.accubooksuae.com.ediuae.com.txt.tar
[edit]
[-] mu-plugins.zip
[edit]
[-] bb4692447fbed43cc69df47133d0a53ce082ef.tar
[edit]
[-] deprecated-media.min.css.min.css.tar.gz
[edit]
[-] quote.zip
[edit]
[-] wp.26_59584.2026-03-05_15-03-49.tar
[edit]
[-] b18f8f1fb38b78cc5b9ef982cc54fca738567c.tar.gz
[edit]
[-] fbba4f8762566b50.tar.gz
[edit]
[-] 9.tar
[edit]
[-] .184a94671617d030554ede9891040720f48dcfeda.184a94671617d030554ede9891040720f48dcfeda.tar.gz
[edit]
[-] b2d2b5e9934b7317.tar.gz
[edit]
[-] grub.tar
[edit]
[-] .Archive.tar
[edit]
[-] media.php.php.tar.gz
[edit]
[-] privacy.svg.tar
[edit]
[-] deprecated.php.tar
[edit]
[-] revision.php.php.tar.gz
[edit]
[-] post-new.php.tar
[edit]
[-] media-button-music.gif.gif.tar.gz
[edit]
[-] 13970c361ccb0a76f43a8823db4ebcad3bb618.tar
[edit]
[-] tuned.conf.tar
[edit]
[-] thelia.zip
[edit]
[-] .info@nakaafi_com.tar.gz
[edit]
[-] 6305b752dedf6f2c967d2a8165494b529a8a73.tar.gz
[edit]
[-] theme-previews.php.tar
[edit]
[-] 1e7ad3e428cda0f1.tar
[edit]
[-] tmp.zip
[edit]
[-] customize-widgets.js.tar
[edit]
[-] 1ebd949c10cfb8c1.tar
[edit]
[-] b472340672781748e23955ca867f2648898e83.tar.gz
[edit]
[-] site-themes.php.php.tar.gz
[edit]
[-] printk_delay.tar.gz
[edit]
[-] wp-db.php.tar
[edit]
[-] b2de408c25024af7.tar
[edit]
[-] 1e56f08604c20b28.tar.gz
[edit]
[-] real-root-dev.tar
[edit]
[-] heading.tar
[edit]
[-] a3dd9cb2dbccb5e1.tar
[edit]
[-] widget-group.tar
[edit]
[-] ef13062a4bbe4cbd.tar.gz
[edit]
[-] 47b8f7979a8b3d16d7b82f9579b745d6893f0d.tar
[edit]
[-] site-logo.php.php.tar.gz
[edit]
[-] 9d7524a7bf862c4b.tar.gz
[edit]
[-] 2ea091a9403022c4.tar
[edit]
[-] cur.tar.gz
[edit]
[-] abi.tar
[edit]
[-] calendar.tar
[edit]
[-] .spam.tar
[edit]
[-] 995eabf7aae831b5a0a626780264e8fcbfbd43.tar
[edit]
[-] paragraph.tar.gz
[edit]
[-] e20057de3f2e7bfa.tar
[edit]
[-] 1e6036d3eee9343b.tar.gz
[edit]
[-] wp-util.js.tar
[edit]
[-] browser-rtl.png.tar
[edit]
[-] 1ebd169bdb7975b2.tar.gz
[edit]
[-] misc.tar.gz
[edit]
[-] admin-menu.min.css.tar
[edit]
[-] 329b8270f7d9e49c264d3ab329cb5a3e45d034.tar.gz
[edit]
[-] x.zip
[edit]
[-] customize-controls-rtl.min.css.min.css.tar.gz
[edit]
[-] litespeed.tar
[edit]
[-] media-template.php.php.tar.gz
[edit]
[-] class-walker-page.php.php.tar.gz
[edit]
[-] XQxWYb.mpeg.tar
[edit]
[-] wp-pointer.css.tar
[edit]
[-] wp-auth-check-rtl.min.css.min.css.tar.gz
[edit]
[-] document.png.tar
[edit]
[-] gallery.php.php.tar.gz
[edit]
[-] 1f49c074b2993ad0.tar.gz
[edit]
[-] erase-personal-data.php.tar
[edit]
[-] clipboard.js.tar
[edit]
[-] update.php.tar
[edit]
[-] block-library.tar.gz
[edit]
[-] media.css.tar
[edit]
[-] block-patterns.php.tar
[edit]
[-] class-wp-block-list.php.php.tar.gz
[edit]
[-] sda5.tar.gz
[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]
[-] eacf41e9659af8ea.tar.gz
[edit]
[-] network.tar.gz
[edit]
[-] plecd349.zip
[edit]
[-] fb841642fa6bd510.tar.gz
[edit]
[-] f82f22b47e35818c29374eba593b845a755a12.tar
[edit]
[-] f71be1bd16b7f4e6.tar
[edit]
[-] comment.php.tar
[edit]
[-] editor-rtl.min.css.min.css.tar.gz
[edit]
[-] auth-app.min.js.tar
[edit]
[-] 8c977e9cf8f54db6.tar
[edit]
[-] php56.tar
[edit]
[-] e2bee6f42290e03d.tar
[edit]
[-] sodium_compat.tar
[edit]
[-] sodium_compat.tar.gz
[edit]
[-] social.tar
[edit]
[-] vty.tar.gz
[edit]
[-] 1e3f417b45551a7f.tar.gz
[edit]
[-] post-comments-count.tar
[edit]
[-] my-sites.php.tar
[edit]
[-] class-wp-media-list-table.php.php.tar.gz
[edit]
[-] gallery.tar.gz
[edit]
[-] class-wpdb.php.tar
[edit]
[-] a5b203c7ce360074.tar
[edit]
[-] code-editor-rtl.min.css.min.css.tar.gz
[edit]
[-] pomo.tar
[edit]
[-] executive.tar
[edit]
[-] 87b24c43f6f205a76ec81845d6ca737fef1c49.tar
[edit]
[-] post-time-to-read.zip
[edit]
[-] accordion-heading.tar.gz
[edit]
[-] 1eb1d47e936179b2.tar.gz
[edit]
[-] 1e4fc85814700dce.tar
[edit]
[-] .hcflag.hcflag.tar.gz
[edit]
[-] nsswitch.conf.tar
[edit]
[-] media-button-image.gif.gif.tar.gz
[edit]
[-] sendmail.log.tar
[edit]
[-] code-editor.min.css.tar
[edit]
[-] .Sent.tar.gz
[edit]
[-] 1b9c6a3d89769db77718e483479060b21d4258.tar
[edit]
[-] git-hook.tar.gz
[edit]
[-] site-health.min.js.tar
[edit]
[-] afc62fd3e7c1e991.tar
[edit]
[-] 1e6d0c611b8741d8.tar.gz
[edit]
[-] 1e7aebe6da1a9f5d.tar.gz
[edit]
[-] config.inc.php.tar
[edit]
[-] 1c67aa57af20ce09c989aac732ace054b48232.tar
[edit]
[-] about.min.css.min.css.tar.gz
[edit]
[-] 0049be9fd389e04fd3920e9e0d6dc5ea4e1689.tar
[edit]
[-] class-wp-scripts.php.tar
[edit]
[-] maildirfolder.tar.gz
[edit]
[-] 1a337bc7cae2b3a0.tar.gz
[edit]
[-] XML.tar
[edit]
[-] f74606b785778221f16906d9d6afa22c886f47.tar.gz
[edit]
[-] image.zip
[edit]
[-] options-reading.php.tar
[edit]
[-] fbe878548e613abd.tar
[edit]
[-] 1eb7682a638edbbe.tar
[edit]
[-] 1edf3ae54406af42.tar
[edit]
[-] ssl.db.cache.db.cache.tar.gz
[edit]
[-] column.zip
[edit]
[-] block-template-utils.php.tar
[edit]
[-] options-permalink.php.tar
[edit]
[-] dcea7431f97cc4b3296688d672ffcc888697d2.tar.gz
[edit]
[-] wpvivid_staging.tar.gz
[edit]
[-] 326e7771c87465701a432b891d90a0e801c937.tar
[edit]
[-] freedoms.php.tar
[edit]
[-] underscore.js.tar
[edit]
[-] block-template-utils.php.php.tar.gz
[edit]
[-] editor-expand.js.js.tar.gz
[edit]
[-] accents.vim.vim.tar.gz
[edit]
[-] inline-edit-post.js.tar
[edit]
[-] 2eafe002566c047f.tar.gz
[edit]
[-] block.php.php.tar.gz
[edit]
[-] nvdata.cache.tar
[edit]
[-] 1e4f691cf86c6c55.tar.gz
[edit]
[-] e29df28e66d44a73.tar
[edit]
[-] e1123aa31a8d72a32ce59aa11b800edc9f67df.tar
[edit]
[-] post-formats.png.png.tar.gz
[edit]
[-] 28d307de60d031e983a8bf08085be7d2cbcdba.tar.gz
[edit]
[-] image.tar.gz
[edit]
[-] aff68a72dfea1345.tar
[edit]
[-] fb50c21d4b00cf19.tar
[edit]
[-] 1e7857f14c05ab25.tar.gz
[edit]
[-] dbe32dceb80654422140fb7641f732065999c8.tar
[edit]
[-] syntax.zip
[edit]
[-] footnotes.tar.gz
[edit]
[-] class-json.php.tar
[edit]
[-] 60589ce253c5e7a1.tar
[edit]
[-] site-editor.php.tar
[edit]
[-] en.tar
[edit]
[-] e69140d0869a79f6.tar
[edit]
[-] nav-menus.min.css.tar
[edit]
[-] cagefs.zip
[edit]
[-] .Drafts.zip
[edit]
[-] e8a380a180e0e7747ffc1cd1942907d2b8285f.tar
[edit]
[-] lib.tar.gz
[edit]
[-] word-count.min.js.tar
[edit]
[-] libidn.zip
[edit]
[-] style-engine.zip
[edit]
[-] servers.catalogue.lst.tar
[edit]
[-] 1e10c464ec1b74cf.tar.gz
[edit]
[-] gcrypt.tar.gz
[edit]
[-] razor-agent.log.tar
[edit]
[-] license.txt.tar
[edit]
[-] 1eccaae8fffbd8c1.tar.gz
[edit]
[-] tmp.tar.gz
[edit]
[-] nav-menus.php.php.tar.gz
[edit]
[-] a1837e83bb3243b6.tar
[edit]
[-] editor.min.css.tar
[edit]
[-] ed03b6b48c8e55e2.tar.gz
[edit]
[-] class-wp-editor.php.php.tar.gz
[edit]
[-] edit-comments.js.js.tar.gz
[edit]
[-] class-wp-term-query.php.php.tar.gz
[edit]
[-] 89fe91ca8d47972d6ce31faf71872bd190108c.tar.gz
[edit]
[-] 64d02af54c83a8437f3824b08ab4e2c5cd3110.tar
[edit]
[-] laravel.tar.gz
[edit]
[-] post-featured-image.php.php.tar.gz
[edit]
[-] sess_d4a566229ecbe0024ebe16382251707d.tar.gz
[edit]
[-] term-description.php.php.tar.gz
[edit]
[-] ms-default-constants.php.php.tar.gz
[edit]
[-] c76fd22d7c564159.tar.gz
[edit]
[-] menu.png.png.tar.gz
[edit]
[-] 8b1e5cdcd3aef30d.tar
[edit]
[-] fbb8a3f1f2ea1b69.tar
[edit]
[-] buddhi@ediuae.com.tar
[edit]
[-] formatting.php.tar
[edit]
[-] acpi.tar.gz
[edit]
[-] cropper.css.tar
[edit]
[-] .info@agrivaingredients_com.tar
[edit]
[-] class-wp-locale.php.php.tar.gz
[edit]
[-] a38b0cf61b20eaba.tar.gz
[edit]
[-] install.php.tar
[edit]
[-] awstats.tar
[edit]
[-] ec7ea15e41127889.tar
[edit]
[-] cache-compat.php.php.tar.gz
[edit]
[-] wordpress.tar
[edit]
[-] loaders.zip
[edit]
[-] class-wp-http.php.tar
[edit]
[-] wp-signup.php.php.tar.gz
[edit]
[-] freedom-4.svg.tar
[edit]
[-] user_prefs.tar.gz
[edit]
[-] avatar.php.tar
[edit]
[-] 1ea42681646eb11c.tar.gz
[edit]
[-] dashboard.js.tar
[edit]
[-] code-editor.min.js.min.js.tar.gz
[edit]
[-] includes.tar.gz
[edit]
[-] options-writing.php.tar
[edit]
[-] post-formats-vs.png.png.tar.gz
[edit]
[-] 04f5f5ca1254113398ac18fae9b3c9c9cd647e.tar
[edit]
[-] fonts.zip
[edit]
[-] wp-auth-check-rtl.css.tar
[edit]
[-] class-IXR-value.php.php.tar.gz
[edit]
[-] 378ba9a938ad0e4c.tar
[edit]
[-] awstats.tar.gz
[edit]
[-] buttons-rtl.min.css.min.css.tar.gz
[edit]
[-] 596650cd772740061a54238559c7b1ed0234c1.tar.gz
[edit]
[-] redhat.zip
[edit]
[-] fb73ac979d37385f.tar
[edit]
[-] utils.php.php.tar.gz
[edit]
[-] aaeacd3eac592b3d.tar
[edit]
[-] wp-content.zip
[edit]
[-] post-formats32-vs.png.png.tar.gz
[edit]
[-] class-wp-http-ixr-client.php.tar
[edit]
[-] 8e3ed1319a97512a.tar
[edit]
[-] 1e0786b0124fe185.tar.gz
[edit]
[-] separator.tar
[edit]
[-] charmap.tar
[edit]
[-] e063adc97288c46439c67917c8313e8194f939.tar.gz
[edit]
[-] accordion.js.js.tar.gz
[edit]
[-] 87b24c43f6f205a76ec81845d6ca737fef1c49.tar.gz
[edit]
[-] 28278d64955ca9042973e55e9d32422191105e.tar.gz
[edit]
[-] link.php.tar
[edit]
[-] afbdf2d62d97ab24.tar.gz
[edit]
[-] 5127124cd44a3302d19bb3aae6f7b5961660d2.tar
[edit]
[-] classic-themes.css.css.tar.gz
[edit]
[-] 692a35b8b459c7ea.tar.gz
[edit]
[-] 84123d334bf07441f825cebb164e72d9af9b43.tar
[edit]
[-] Requests.tar
[edit]
[-] 6b88808e87ba490067261cc6d3a35e36400065.tar
[edit]
[-] error_log
[edit]
[-] block.tar
[edit]
[-] admin-menu-rtl.css.css.tar.gz
[edit]
[-] query-pagination-next.tar.gz
[edit]
[-] 1e0786b0124fe185.tar
[edit]
[-] utils.min.js.min.js.tar.gz
[edit]
[-] Text.tar.gz
[edit]
[-] dolph.zip
[edit]
[-] 63136d47d30d1e2b9f5d2c194e76ca5ec70fe4.tar.gz
[edit]
[-] categories.php.tar
[edit]
[-] aaab1e14f948832c.tar.gz
[edit]
[-] dovecot-uidvalidity.678dfe6f.tar
[edit]
[-] class-wp-community-events.php.tar
[edit]
[-] plugin_deactivate.php.php.tar.gz
[edit]
[-] myt.zip
[edit]
[-] fbac61cab456a10a.tar
[edit]
[-] vim80.zip
[edit]
[-] zsh.tar
[edit]
[-] 1acc1d72663fce8f.tar.gz
[edit]
[-] widgets-form-client.php.tar
[edit]
[-] 1eac40ad0f1a599e.tar
[edit]
[-] .gemrc.tar
[edit]
[-] ms-options.php.tar
[edit]
[-] block-bindings.php.tar
[edit]
[-] e5f6554b2427947517ef054ff0d0ac5e336ba2.tar.gz
[edit]
[-] f769740fbbbd24bb.tar
[edit]
[-] align.php.tar
[edit]
[-] class-wp-block-supports.php.tar
[edit]
[-] quote.tar
[edit]
[-] update_pass.php.php.tar.gz
[edit]
[-] class-wp-users-list-table.php.tar
[edit]
[-] .hr@ediuae_com.tar.gz
[edit]
[-] ed02d81f4b4a5034.tar.gz
[edit]
[-] 2a2ef403ce04451a0f9d0b232df2fd8a67df1c.tar.gz
[edit]
[-] clone.php.tar
[edit]
[-] robots.txt.tar
[edit]
[-] wordpress-logo.png.tar
[edit]
[-] subscriptions.tar.gz
[edit]
[-] setup-config.php.tar
[edit]
[-] revisions.min.css.tar
[edit]
[-] assets.tar
[edit]
[-] post-comments-link.tar.gz
[edit]
[-] 1edf3ae54406af42.tar.gz
[edit]
[-] bookmark.php.php.tar.gz
[edit]
[-] block.json.json.tar.gz
[edit]
[-] theme-compat.tar.gz
[edit]
[-] 1eb46e461ac74d68.tar
[edit]
[-] riscv64-linux.tar.gz
[edit]
[-] class-wp-site-query.php.php.tar.gz
[edit]
[-] a1d0099a0f5dd0a1.tar.gz
[edit]
[-] 1e0136b49495ec79.tar.gz
[edit]
[-] 1eb1d47e936179b2.tar
[edit]
[-] dirty_ratio.tar.gz
[edit]
[-] class-wp-oembed-controller.php.php.tar.gz
[edit]
[-] .spamassassinboxenable.tar
[edit]
[-] help.eo.txt.eo.txt.tar.gz
[edit]
[-] plugins.tar
[edit]
[-] custom-header.js.tar
[edit]
[-] forms-rtl.css.tar
[edit]
[-] 46b2d7d4e1333695f39861498808891129a0ec.tar.gz
[edit]
[-] block-bindings.php.php.tar.gz
[edit]
[-] 8e6270ba0a6bdbcb.tar
[edit]
[-] classic.css.tar
[edit]
[-] 1e21063c18165f20.tar
[edit]
[-] post-content.tar
[edit]
[-] accordion.php.php.tar.gz
[edit]
[-] fscache.tar.gz
[edit]
[-] dashboard.js.js.tar.gz
[edit]
[-] gimanthi.zip
[edit]
[-] theme-i18n.json.tar
[edit]
[-] 3775c6d4e1475137.tar.gz
[edit]
[-] elgg3.zip
[edit]
[-] comment-date.tar
[edit]
[-] class-wp-theme-json.php.php.tar.gz
[edit]
[-] 1e8cb5603e97bf7d.tar.gz
[edit]
[-] options-media.php.tar
[edit]
[-] c74d0c7e84605083.tar.gz
[edit]
[-] brp-scl-compress.tar
[edit]
[-] password-strength-meter.min.js.min.js.tar.gz
[edit]
[-] erase-personal-data.php.php.tar.gz
[edit]
[-] Parse.zip
[edit]
[-] c6b2b_a1d63_01bdca151198871b95f7b7a36eae4652.key.key.tar.gz
[edit]
[-] home-link.php.php.tar.gz
[edit]
[-] 3ea478a90e6a49b181f3a9231d2a8c1b07c120.tar
[edit]
[-] dovecot-uidvalidity.tar
[edit]
[-] 481d84a2d9772bfa0f57e2a4c6bfb7a7420680.tar.gz
[edit]
[-] 377f8c4c739ca645.tar
[edit]
[-] 6a8748d6c088a763.tar
[edit]
[-] preferences.tar.gz
[edit]
[-] site-icon-rtl.css.css.tar.gz
[edit]
[-] 8e4c8b4673d179b4.tar
[edit]
[-] ms-network.php.php.tar.gz
[edit]
[-] PHPMailer.zip
[edit]
[-] c4b76f67f5f9f4a9.tar.gz
[edit]
[-] feed.php.tar
[edit]
[-] spinner-2x.gif.gif.tar.gz
[edit]
[-] legacy-widget.zip
[edit]
[-] admin-header.php.tar
[edit]
[-] 1e69e7f55bf2397b.tar
[edit]
[-] shortcode.min.js.tar
[edit]
[-] 5.tar
[edit]
[-] 6627bb06e374da07.tar
[edit]
[-] 408a37fba7c01ea3bfc653d7b46078a1d7233a.tar
[edit]
[-] fe9afa506dcfcf775c7187a472117c239139aa.tar.gz
[edit]
[-] 09b2c1ddfdb628a85970f411c7e5c6ffa1711a.tar.gz
[edit]
[-] 8.zip
[edit]
[-] media.css.css.tar.gz
[edit]
[-] 1eb8c84fc024827d.tar.gz
[edit]
[-] rest-api.php.php.tar.gz
[edit]
[-] l10n.tar
[edit]
[-] 20726d11fdbda9bda645fd290df7cd9d84a50c.tar
[edit]
[-] capabilities.php.php.tar.gz
[edit]
[-] interactivity-api.zip
[edit]
[-] c988fa21ba4eb54fea7d0b28ed2e2eda057b1f.tar.gz
[edit]
[-] 2e4a0678934d14f2.tar
[edit]
[-] wp-api.min.js.tar
[edit]
[-] syntax.tar.gz
[edit]
[-] site-logo.php.tar
[edit]
[-] autoload-php7.php.tar
[edit]
[-] libmemcached.zip
[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]
[-] fontconfig.tar.gz
[edit]
[-] 3f1c82b95f9744a00f89306797e6811823ffbf.tar
[edit]
[-] 1e74e73cbee5bee5.tar.gz
[edit]
[-] freedom-1.svg.svg.tar.gz
[edit]
[-] autosave.min.js.min.js.tar.gz
[edit]
[-] class-wp-recovery-mode.php.php.tar.gz
[edit]
[-] c3346e44ffd8cca1.tar
[edit]
[-] ed88dd33260b0e0f.tar
[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]
[-] 1e57c15dac52221e.tar
[edit]
[-] 1ea7540a00d2f149.tar
[edit]
[-] Cache.zip
[edit]
[-] jcow.zip
[edit]
[-] alphapca56-linux.zip
[edit]
[-] loading.gif.gif.tar.gz
[edit]
[-] 8e6270ba0a6bdbcb.tar.gz
[edit]
[-] 1eb34efd4b86eaa7.tar
[edit]
[-] 12977e6ce39da346.tar
[edit]
[-] dovecot-quota.tar.gz
[edit]
[-] info@nakaafi.com.tar
[edit]
[-] view.asset.php.tar
[edit]
[-] 04af8c407d434998f09c73d128aceac7b677ed.tar
[edit]
[-] site-icon.min.css.tar
[edit]
[-] template-loader.php.tar
[edit]
[-] revision.php.tar
[edit]
[-] 462333483c8a98bc6c303929e22225dc93a9e2.tar.gz
[edit]
[-] customize-preview.js.tar
[edit]
[-] clipboard.min.js.min.js.tar.gz
[edit]
[-] comment-edit-link.php.tar
[edit]
[-] a38b0cf61b20eaba.tar
[edit]
[-] style-rtl.css.tar
[edit]
[-] 13970c361ccb0a76f43a8823db4ebcad3bb618.tar.gz
[edit]
[-] class-wp-session-tokens.php.tar
[edit]
[-] nakaafi.com.zip
[edit]
[-] tinymce.tar.gz
[edit]
[-] trusted-key.key.tar
[edit]
[-] ms-blogs.php.php.tar.gz
[edit]
[-] code-editor.js.tar
[edit]
[-] blank.gif.gif.tar.gz
[edit]
[-] 8e76f82b8ac41680.tar
[edit]
[-] view.min.asset.php.min.asset.php.tar.gz
[edit]
[-] ediuae.rcube.db.rcube.db.tar.gz
[edit]
[-] d54c5f807dcab2ab406fb2c9801662b85f2627.tar
[edit]
[-] fb2c9fdcac1ede18.tar.gz
[edit]
[-] Diff.php.tar
[edit]
[-] plupload.tar
[edit]
[-] ediuae.rcube.db.1772035248.tar
[edit]
[-] site-health.php.php.tar.gz
[edit]
[-] menu-2x.png.png.tar.gz
[edit]
[-] wp-embed-template-ie.css.css.tar.gz
[edit]
[-] site-tagline.tar
[edit]
[-] xit-2x.gif.tar
[edit]
[-] fileindex.php.php.tar.gz
[edit]
[-] bfd7fb363ebab1c7.tar.gz
[edit]
[-] 865a5d7d427f9c3e206d1b546e8daa581dce29.tar
[edit]
[-] 1e317d2ef678267b.tar.gz
[edit]
[-] config.php.tar
[edit]
[-] word-count.min.js.min.js.tar.gz
[edit]
[-] class-wp-term.php.tar
[edit]
[-] fe79935b7825add3.tar
[edit]
[-] rss.png.tar
[edit]
[-] post-comments-link.tar
[edit]
[-] registration.php.php.tar.gz
[edit]
[-] dovecot.index.index.tar.gz
[edit]
[-] 2e4a0678934d14f2.tar.gz
[edit]
[-] 2.tar
[edit]
[-] 6adc6dd0c48bd4d2b190a94c8884fb29559325.tar.gz
[edit]
[-] c15472903e246f58.tar
[edit]
[-] ms-files.php.tar
[edit]
[-] c9a9e_23523_975a19c16b389e613705a5f69c90d0c8.key.tar
[edit]
[-] term-name.tar.gz
[edit]
[-] wp-admin.tar
[edit]
[-] ruko.tar.gz
[edit]
[-] media-audiovideo.min.js.tar
[edit]
[-] 9d53ac61599a3285.tar
[edit]
[-] fb9c539d6d2a8707.tar.gz
[edit]
[-] python.vim.vim.tar.gz
[edit]
[-] a4b9b723b6004b512af14c834fca0d82fb3eb8.tar.gz
[edit]
[-] 606da8f45cc0cf62.tar
[edit]
[-] wpicons-2x.png.png.tar.gz
[edit]
[-] 1e1260b0db651c48.tar
[edit]
[-] customize-widgets.zip
[edit]
[-] .spamassassinboxenable.spamassassinboxenable.tar.gz
[edit]
[-] class-wp-http-encoding.php.tar
[edit]
[-] syntax.tar
[edit]
[-] cc40cf0de4c9ac7043479114dcd2f60451098c.tar.gz
[edit]
[-] forms.css.tar
[edit]
[-] archives.tar
[edit]
[-] xb89c12.tar
[edit]
[-] 1f94ee3ff7399ac8.tar.gz
[edit]
[-] c7492de69395967e.tar.gz
[edit]
[-] v.tar
[edit]
[-] lib.php.tar
[edit]
[-] module.tag.id3v1.php.tag.id3v1.php.tar.gz
[edit]
[-] ppc64pseries-linux.tar.gz
[edit]
[-] af7d8c8f8afe0cc3.tar.gz
[edit]
[-] fbbeed74d5d4369f.tar
[edit]
[-] 1e3d1e43e50427ed.tar.gz
[edit]
[-] afd97863c6cfeda3.tar.gz
[edit]
[-] php56.tar.gz
[edit]
[-] 1e4f691cf86c6c55.tar
[edit]
[-] sysvipc.tar
[edit]
[-] 7.tar
[edit]
[-] python-cllib.tar
[edit]
[-] 1e4d9ecb550dd22c.tar
[edit]
[-] .spam.zip
[edit]
[-] term-count.tar
[edit]
[-] fb4ab32e2060adf3.tar.gz
[edit]
[-] 121bbbaa45a5bbf3.tar
[edit]
[-] class-wp-http-proxy.php.php.tar.gz
[edit]
[-] b9adebc3e493e742.tar
[edit]
[-] Dominica.tar
[edit]
[-] deprecated-media.css.tar
[edit]
[-] plugin_deactivate.php.tar
[edit]
[-] 5023f4b1d28fa23c7a6e5e0e74d35f5f7415b9.tar.gz
[edit]
[-] 1ead9cd02d1b84d4.tar.gz
[edit]
[-] sysvipc.tar.gz
[edit]
[-] plugin-install.php.php.tar.gz
[edit]
[-] accordion.min.js.min.js.tar.gz
[edit]
[-] 1d88777e2921723b.tar.gz
[edit]
[-] post-date.php.tar
[edit]
[-] 28aaf497d293bc2b.tar.gz
[edit]
[-] class-wp-upgrader-skins.php.php.tar.gz
[edit]
[-] math.tar.gz
[edit]
[-] ipfrag_max_dist.tar.gz
[edit]
[-] 695cfc77440d8de8.tar
[edit]
[-] .gayan@ediuae_com.tar.gz
[edit]
[-] widgets.php.tar
[edit]
[-] admin-bar.min.js.tar
[edit]
[-] moderation.php.php.tar.gz
[edit]
[-] quicktags.min.js.tar
[edit]
[-] admin-menu.min.css.min.css.tar.gz
[edit]
[-] fb3f12ba3eb8cfe1.tar
[edit]
[-] c2d573cf8c646ec5cc0f1959250c5db23b3929.tar
[edit]
[-] vimrc.tar
[edit]
[-] c760685f5be4177e.tar.gz
[edit]
[-] README.txt.txt.tar.gz
[edit]
[-] 8e3108bc579b0069.tar.gz
[edit]
[-] class-wp-admin-bar.php.php.tar.gz
[edit]
[-] post-featured-image.php.tar
[edit]
[-] media-editor.js.tar
[edit]
[-] 1edf12a490d2c6e5.tar
[edit]
[-] .cagefs.zip
[edit]
[-] edit.php.tar
[edit]
[-] mw28.zip
[edit]
[-] class-wp-http-requests-hooks.php.php.tar.gz
[edit]
[-] awstats032026.test.ediuae.com.txt.test.ediuae.com.txt.tar.gz
[edit]
[-] audio.tar
[edit]
[-] 53ba5a4ea4a266764162d179c3d558d634f34a.tar
[edit]
[-] edit-tag-messages.php.php.tar.gz
[edit]
[-] 7f9552db16d7d413639ad992558730297461b7.tar.gz
[edit]
[-] class-IXR-client.php.tar
[edit]
[-] git-fsck-objects.tar.gz
[edit]
[-] fc_wwpn_id.tar.gz
[edit]
[-] comment-template.zip
[edit]
[-] wp-includes.tar.gz
[edit]
[-] eae744ef3cc06359.tar.gz
[edit]
[-] f94425fbdc3490b7dd2f5f3bd2736f312b2288.tar.gz
[edit]
[-] c32eddbb90c3a627.tar
[edit]
[-] template-canvas.php.tar
[edit]
[-] c11123c2bf76c01d.tar.gz
[edit]
[-] 1e82e274738cda57.tar
[edit]
[-] media-text.tar.gz
[edit]
[-] 3748976837e606cb.tar
[edit]
[-] blocks.php.tar
[edit]
[-] dovecot-uidvalidity.67fa44c0.67fa44c0.tar.gz
[edit]
[-] fields.zip
[edit]
[-] 6a6850accf6958ba8a80ac9f9a202fbb327294.tar.gz
[edit]
[-] site-icon.min.js.min.js.tar.gz
[edit]
[-] .trash.tar.gz
[edit]
[-] crop.tar
[edit]
[-] set-post-thumbnail.js.js.tar.gz
[edit]
[-] f57f84c63b31ccd8066c81991aa346f8bcdc02.tar
[edit]
[-] a8d5db8dcc7e53fe.tar.gz
[edit]
[-] buddhi.tar.gz
[edit]
[-] bb4692447fbed43cc69df47133d0a53ce082ef.tar.gz
[edit]
[-] 503e480a729fb2fd5365e29caac8ae2253af3d.tar.gz
[edit]
[-] wp-backbone.js.tar
[edit]
[-] 1e9afcb5e1c380f5.tar.gz
[edit]
[-] legacy-widget.php.php.tar.gz
[edit]
[-] fb8f8315ff2baf04.tar
[edit]
[-] lib.php.php.tar.gz
[edit]
[-] fb24206ddb6187da.tar
[edit]
[-] debug.tar
[edit]
[-] instantcms.tar
[edit]
[-] bookmark-template.php.php.tar.gz
[edit]
[-] class-wp-http-requests-response.php.php.tar.gz
[edit]
[-] 20483c3bb2da5b786415d84d3b2f629899da08.tar.gz
[edit]
[-] post-excerpt.tar
[edit]
[-] media.tar
[edit]
[-] customize.zip
[edit]
[-] getid3.lib.php.lib.php.tar.gz
[edit]
[-] details.zip
[edit]
[-] image-edit.php.tar
[edit]
[-] b18f8f1fb38b78cc5b9ef982cc54fca738567c.tar
[edit]
[-] 1a337bc7cae2b3a0.tar
[edit]
[-] 1efe84a4db395e6e.tar.gz
[edit]
[-] Cpanel::MysqlRun::running.tar.gz
[edit]
[-] twemoji.js.tar
[edit]
[-] b2d2b5e9934b7317.tar
[edit]
[-] .spamassassin.zip
[edit]
[-] class-wp-locale-switcher.php.tar
[edit]
[-] post-formats32.png.tar
[edit]
[-] 1e133701b72c4151.tar
[edit]
[-] afb812f87e2aeb8a.tar
[edit]
[-] e063adc97288c46439c67917c8313e8194f939.tar
[edit]
[-] site-themes.php.tar
[edit]
[-] b2c1f3062a8434af09718fe0278ffb01e6b38e.tar
[edit]
[-] 8e35eebea45acf56.tar.gz
[edit]
[-] 1e100a079706a69d.tar.gz
[edit]
[-] kbd.zip
[edit]
[-] query-no-results.tar
[edit]
[-] 8ee14082c5949801.tar
[edit]
[-] class-pclzip.php.tar
[edit]
[-] 1e0545be341924db.tar.gz
[edit]
[-] 410abc1074.php.php.tar.gz
[edit]
[-] .Drafts.tar.gz
[edit]
[-] e.tar.gz
[edit]
[-] e2edc41eeb285c96.tar
[edit]
[-] text-columns.zip
[edit]
[-] class-walker-category.php.tar
[edit]
[-] .Trash.tar
[edit]
[-] auth-app.js.tar
[edit]
[-] color-picker.js.tar
[edit]
[-] fafcb160932ddc8d1f25c34104040214a1ecd2.tar
[edit]
[-] 69b56cdba7e41111.tar
[edit]
[-] 3540c33663bf5e3c86e485cae09de0d9a8a21a.tar.gz
[edit]
[-] view.js.tar
[edit]
[-] a0a404870ca4083e.tar.gz
[edit]
[-] class-ftp-sockets.php.tar
[edit]
[-] OAuth.php.php.tar.gz
[edit]
[-] .hr@ediuae_com.tar
[edit]
[-] class.wp-scripts.php.wp-scripts.php.tar.gz
[edit]
[-] d.tar
[edit]
[-] wp-mail.php.tar
[edit]
[-] 9d75c21257e0187f.tar.gz
[edit]
[-] options-media.php.php.tar.gz
[edit]
[-] 1e0f274f91e0c9cd.tar.gz
[edit]
[-] xfn.js.js.tar.gz
[edit]
[-] list-reusable-blocks.zip
[edit]
[-] f7ca106ab356b7bb69126633280aa79598d88b.tar
[edit]
[-] aaa228a4c6f6bb51.tar.gz
[edit]
[-] class-wp-media-list-table.php.tar
[edit]
[-] 1acc1d72663fce8f.tar
[edit]
[-] dovecot-acl-list.tar
[edit]
[-] dovecot-uidvalidity.tar.gz
[edit]
[-] class-wp-token-map.php.tar
[edit]
[-] f766cb972848e287.tar.gz
[edit]
[-] cover.zip
[edit]
[-] 1eb0e4ac5978aa93.tar.gz
[edit]
[-] class-wp-block-template.php.tar
[edit]
[-] skins.tar.gz
[edit]
[-] fbba4f8762566b50.tar
[edit]
[-] block.tar.gz
[edit]
[-] awstats012025.ediuae.com.txt.tar
[edit]
[-] class-wp-customize-nav-menus.php.tar
[edit]
[-] password-strength-meter.min.js.tar
[edit]
[-] search.php.tar
[edit]
[-] link.min.js.min.js.tar.gz
[edit]
[-] 663fb3efa4cbef97.tar
[edit]
[-] Cookie.tar.gz
[edit]
[-] widgets-form.php.tar
[edit]
[-] en.tar.gz
[edit]
[-] 28a87a0955416c45.tar.gz
[edit]
[-] class-wp-term-query.php.tar
[edit]
[-] Net.tar
[edit]
[-] udev.zip
[edit]
[-] wplink.js.js.tar.gz
[edit]
[-] help.hu.txt.tar
[edit]
[-] e1609972c77db65b3a180af1653f061781c190.tar
[edit]
[-] network.tar
[edit]
[-] tine.tar
[edit]
[-] .wget-hsts.wget-hsts.tar.gz
[edit]
[-] ef13062a4bbe4cbd.tar
[edit]
[-] .metadata.tar
[edit]
[-] 1e6fa48320c90a59.tar
[edit]
[-] embed-404.php.php.tar.gz
[edit]
[-] spamassassin.zip
[edit]
[-] 9d7524a7bf862c4b.tar
[edit]
[-] class-wp-textdomain-registry.php.php.tar.gz
[edit]
[-] c.zip
[edit]
[-] menu-header.php.php.tar.gz
[edit]
[-] bfd7fb363ebab1c7.tar
[edit]
[-] 495132644cfc1ec472a2351f99db9e88ec86be.tar
[edit]
[-] colorpicker.js.js.tar.gz
[edit]
[-] theme.js.js.tar.gz
[edit]
[-] link.js.js.tar.gz
[edit]
[-] cgi-bin.tar
[edit]
[-] twentytwentythree.tar.gz
[edit]
[-] f45cc2bcee479b28.tar.gz
[edit]
[-] network.php.tar
[edit]
[-] block.zip
[edit]
[-] .Archive.tar.gz
[edit]
[-] option.php.php.tar.gz
[edit]
[-] 1e3e919cfb6cc381.tar
[edit]
[-] ui.tar
[edit]
[-] dovecot.list.index.log.list.index.log.tar.gz
[edit]
[-] 9c1ae89d848b481c7e15548b8e4a8bc105d363.tar.gz
[edit]
[-] fb169b6316321025.tar.gz
[edit]
[-] 6066eb55e5c268ef.tar.gz
[edit]
[-] 1216dbb49213f337.tar
[edit]
[-] admin-filters.php.php.tar.gz
[edit]
[-] ed5b10e5ced08186.tar
[edit]
[-] Renderer.zip
[edit]
[-] 3.tar.gz
[edit]
[-] ece86efab712526e3e81bd7b47ac76416661fc.tar.gz
[edit]
[-] afc86e9a6ec375ec.tar
[edit]
[-] revisions-rtl.min.css.min.css.tar.gz
[edit]
[-] fb27fcc668418851.tar
[edit]
[-] _firewalld.tar.gz
[edit]
[-] a1af90ef2b91f08a.tar.gz
[edit]
[-] c75c9f71191ce339.tar
[edit]
[-] paste.tar
[edit]
[-] home-link.tar.gz
[edit]
[-] 12536c20bb82e572.tar.gz
[edit]
[-] more.tar
[edit]
[-] maint.tar
[edit]
[-] .razor.tar.gz
[edit]
[-] eae744ef3cc06359.tar
[edit]
[-] 2a2ef403ce04451a0f9d0b232df2fd8a67df1c.tar
[edit]
[-] ec3afc9bf0f2b050.tar
[edit]
[-] 12d56891ef66fdf24e59c9ddbb92bffafceb0c.tar.gz
[edit]
[-] 1ff01c7da511df36.tar.gz
[edit]
[-] 1e73b7dbb287b3f6.tar
[edit]
[-] ec4bb579780d7946.tar
[edit]
[-] logs.txt.txt.tar.gz
[edit]
[-] git-stash.tar
[edit]
[-] locale.zip
[edit]
[-] snmp.zip
[edit]
[-] post-title.php.php.tar.gz
[edit]
[-] site-icon-rtl.css.tar
[edit]
[-] class-wp-site-health.php.php.tar.gz
[edit]
[-] fields.tar
[edit]
[-] e45cc994c297c51f22a265f07797899d99022c.tar
[edit]
[-] color-picker-rtl.min.css.tar
[edit]
[-] e8bd22df4393b06b66ad4dbd38b3d2ccec8eb3.tar.gz
[edit]
[-] bfdd421cd165d922.tar
[edit]
[-] a4b9b723b6004b512af14c834fca0d82fb3eb8.tar
[edit]
[-] site-title.tar.gz
[edit]
[-] c76fd22d7c564159.tar
[edit]
[-] 414e253b6ba6f9b25516e1296fe650d17a691f.tar
[edit]
[-] buttons.tar.gz
[edit]
[-] gayan@ediuae.com.tar
[edit]
[-] wp-pointer.min.css.tar
[edit]
[-] admin-ajax.php.tar
[edit]
[-] sdb1-8.tar.gz
[edit]
[-] f4543a0a5d901041.tar.gz
[edit]
[-] fontconfig.tar
[edit]
[-] macros.tar.gz
[edit]
[-] tags-box.min.js.min.js.tar.gz
[edit]
[-] edit.php.php.tar.gz
[edit]
[-] hr.tar.gz
[edit]
[-] privacy-tools.min.js.tar
[edit]
[-] 1e317d2ef678267b.tar
[edit]
[-] admin-bar-sprite.png.tar
[edit]
[-] utils.php.tar
[edit]
[-] e219a5a064d65b28.tar.gz
[edit]
[-] class-feed.php.tar
[edit]
[-] king-addons.tar.gz
[edit]
[-] wp-admin.min.css.min.css.tar.gz
[edit]
[-] math.tar
[edit]
[-] 1a3af01721f80ba7.tar
[edit]
[-] class-wp-block.php.tar
[edit]
[-] fe4a9761a968a58a.tar
[edit]
[-] 8c6cda8d6d9614b8.tar
[edit]
[-] ms-upgrade-network.php.php.tar.gz
[edit]
[-] ext4.tar
[edit]
[-] instantcms.tar.gz
[edit]
[-] 1eaae2292dec8b7e.tar
[edit]
[-] class-wp-textdomain-registry.php.tar
[edit]
[-] 6a864331c503b9c5.tar.gz
[edit]
[-] help.nb.txt.nb.txt.tar.gz
[edit]
[-] git-rerere.tar
[edit]
[-] theme-previews.php.php.tar.gz
[edit]
[-] ediuae.rcube.db.1768829540.rcube.db.1768829540.tar.gz
[edit]
[-] script-modules.php.tar
[edit]
[-] fb8cc71c8004bb61.tar.gz
[edit]
[-] cea50880d6e9c782127ad0c3111d7be2be95de.tar.gz
[edit]
[-] read-more.php.php.tar.gz
[edit]
[-] 3a4c93292cf135cd8aea8e21548bf98e023d52.tar.gz
[edit]
[-] 1e8838380cbdc822.tar.gz
[edit]
[-] 8e35eebea45acf56.tar
[edit]
[-] 792767540eb93e60cb7e1ec20591d48a93d54f.tar
[edit]
[-] class-wp-script-modules.php.tar
[edit]
[-] wp-embed-template.min.js.min.js.tar.gz
[edit]
[-] 2588a904532603c52fb149640061b689e522dc.tar
[edit]
[-] rosariosis.tar
[edit]
[-] fb778f7a0ccda72c.tar.gz
[edit]
[-] fb26dc5d056d8116.tar.gz
[edit]
[-] 1e3517f5f1061b4e.tar.gz
[edit]
[-] site-health.php.tar
[edit]
[-] fe742322566f6154.tar
[edit]
[-] 408a37fba7c01ea3bfc653d7b46078a1d7233a.tar.gz
[edit]
[-] term-name.tar
[edit]
[-] translation-install.php.tar
[edit]
[-] block-supports.zip
[edit]
[-] class-requests.php.php.tar.gz
[edit]
[-] class-wp-translations.php.tar
[edit]
[-] ccomplete.vim.tar
[edit]
[-] 68865c89d8c40ca0b45361fd5110b332bd0da9.tar
[edit]
[-] 2e421ad1a9670937.tar.gz
[edit]
[-] 7cb9415653a5857840d54051e12f378f5b7c6b.tar.gz
[edit]
[-] awstats082025.accubooksuae.com.ediuae.com.txt.tar
[edit]
[-] a0af63e828202beb.tar.gz
[edit]
[-] 1f2bf38034741387.tar
[edit]
[-] wp-backbone.js.js.tar.gz
[edit]
[-] color-picker.js.js.tar.gz
[edit]
[-] c05c9069a4515ba26c44df095b2dc137b611cf.tar.gz
[edit]
[-] ipfrag_max_dist.tar
[edit]
[-] functions.wp-styles.php.wp-styles.php.tar.gz
[edit]
[-] 9a0ecb6e11cb43b7.tar
[edit]
[-] 1f9a183086719936.tar
[edit]
[-] app.zip
[edit]
[-] 573f1d4c4334ad56dd035348cb7fa9a1f8a4b3.1.1.tar.gz
[edit]
[-] reusable-blocks.tar
[edit]
[-] button.php.php.tar.gz
[edit]
[-] class-wp-customize-widgets.php.php.tar.gz
[edit]
[-] media-upload.min.js.tar
[edit]
[-] backups.zip
[edit]
[-] 1eb05bee67d8769e.tar
[edit]
[-] jquery.js.js.tar.gz
[edit]
[-] backups.tar.gz
[edit]
[-] cc630a89ebb355a244e9006e9a78eb8d44df33.tar
[edit]
[-] .well-known.tar.gz
[edit]
[-] 1e14859cc848fbab.tar.gz
[edit]
[-] a0fac_dd909_1c378abedc6539da34b792b541115e06.key.tar
[edit]
[-] load.php.tar
[edit]
[-] 8c977e9cf8f54db6.tar.gz
[edit]
[-] edit-form-comment.php.tar
[edit]
[-] w.tar.gz
[edit]
[-] buddhi@ediuae.com.zip
[edit]
[-] image-edit.js.tar
[edit]
[-] c7e85ffbb3bbe011.tar
[edit]
[-] media-audiovideo.min.js.min.js.tar.gz
[edit]
[-] colorpicker.tar.gz
[edit]
[-] 64d02af54c83a8437f3824b08ab4e2c5cd3110.tar.gz
[edit]
[-] cookieadmin.tar.gz
[edit]
[-] class-wp-block-type-registry.php.php.tar.gz
[edit]
[-] ediuae.rcube.db.1768080265.tar
[edit]
[-] editor.css.css.tar.gz
[edit]
[-] d41c377d270a63f793c7150d2ba6fc6b25fb44.tar
[edit]
[-] mips64r6-linux.tar
[edit]
[-] blab.sql.sql.tar.gz
[edit]
[-] fb04a07bca957600.tar
[edit]
[-] revisions.min.js.tar
[edit]
[-] t1lib.zip
[edit]
[-] selector.etc.tar
[edit]
[-] spacer.tar
[edit]
[-] 04af8c407d434998f09c73d128aceac7b677ed.tar.gz
[edit]
[-] post-template.php.tar
[edit]
[-] tstamp_allow_data.tar
[edit]
[-] accubooksuae.com.tar
[edit]
[-] tag-cloud.zip
[edit]
[-] class-wp-html-decoder.php.php.tar.gz
[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]
[-] 1e7fa16460a3b977.tar
[edit]
[-] aff68a72dfea1345.tar.gz
[edit]
[-] 1ed049199006a1d7.tar
[edit]
[-] da36b04d027929221bbcab8cbe562a80d984ec.tar.gz
[edit]
[-] fe499b5a1d775f29.tar.gz
[edit]
[-] 1ef0d0977287e91d.tar.gz
[edit]
[-] admin-bar.css.css.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]
[-] hello.zip
[edit]
[-] 1e9b6fc395ae9d56.tar
[edit]
[-] .trash.tar
[edit]
[-] class-wp-http-response.php.tar
[edit]
[-] ID3.tar
[edit]
[-] xmlrpc.php.php.tar.gz
[edit]
[-] lynx.lss.lss.tar.gz
[edit]
[-] class-wp-widget.php.php.tar.gz
[edit]
[-] utf8encodings.tar
[edit]
[-] customize-nav-menus.css.tar
[edit]
[-] c05c9069a4515ba26c44df095b2dc137b611cf.tar
[edit]
[-] .Junk.tar
[edit]
[-] fb5b94f9a8d3f741.tar
[edit]
[-] post-terms.tar
[edit]
[-] feed-atom-comments.php.tar
[edit]
[-] mask.png.tar
[edit]
[-] 37880b8d4db07723.tar
[edit]
[-] 47f485bc45f0055dc56792a1cb8d1357b090bf.tar.gz
[edit]
[-] wp-embed-template.js.js.tar.gz
[edit]
[-] git-bundle.tar
[edit]
[-] 1efc3a656988093f.tar
[edit]
[-] dovecot.mailbox.log.mailbox.log.tar.gz
[edit]
[-] b9ba786e6c78f3b3c04e5c030d6f3370299eda.tar.gz
[edit]
[-] common.js.js.tar.gz
[edit]
[-] caches.tar.gz
[edit]
[-] heartbeat.min.js.tar
[edit]
[-] term-count.tar.gz
[edit]
[-] class-wp-walker.php.php.tar.gz
[edit]
[-] se.png.png.tar.gz
[edit]
[-] f769740fbbbd24bb.tar.gz
[edit]
[-] ed90db0a3419308c.tar
[edit]
[-] cropper.js.tar
[edit]
[-] deprecated-media.min.css.tar
[edit]
[-] ea72e245ffe549b8.tar
[edit]
[-] c184a9c4cd99f86eb39e034ea2ea5106c07775.tar.gz
[edit]
[-] ID3.tar.gz
[edit]
[-] 1e82d500745e54b9.tar
[edit]
[-] 1e80649ea425230b.tar
[edit]
[-] fb71198284ae6ee3.tar.gz
[edit]
[-] 52f8a136aff70df2c25fc482a8017b91f24f39.tar
[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]
[-] afdbda43abc370ca.tar.gz
[edit]
[-] jquery.js.tar
[edit]
[-] ea6f14040dd26964.tar
[edit]
[-] widgets.tar
[edit]
[-] 1ed5d5e5bd604540.tar
[edit]
[-] cropper.js.js.tar.gz
[edit]
[-] 283411abd6d8fbec582166099cae9eb5472ce8.tar.gz
[edit]
[-] cpanel.zip
[edit]
[-] af7d8c8f8afe0cc3.tar
[edit]
[-] d41c377d270a63f793c7150d2ba6fc6b25fb44.tar.gz
[edit]
[-] servers.discovery.lst.tar
[edit]
[-] contribute-main.svg.svg.tar.gz
[edit]
[-] bb17aaa5ec4c2154.tar.gz
[edit]
[-] .cpanel_vcf_import_social@ediuae.com.tar
[edit]
[-] wp-admin.tar.gz
[edit]
[-] class-wp-token-map.php.php.tar.gz
[edit]
[-] git-whatchanged.tar.gz
[edit]
[-] site-icon.css.css.tar.gz
[edit]
[-] fb88c8151567445d.tar.gz
[edit]
[-] readfile.awk.tar
[edit]
[-] python3.8.tar
[edit]
[-] cache.php.php.tar.gz
[edit]
[-] Utility.tar.gz
[edit]
[-] .buddhi@ediuae_com.tar
[edit]
[-] async-upload.php.php.tar.gz
[edit]
[-] 6f9d94b92cb6e4e23729fd042be118d4114b34.tar
[edit]
[-] 14fc9eb1b2650367182c842c528a046498e109.tar
[edit]
[-] cache.php.tar
[edit]
[-] c7869cf349142ad0.tar.gz
[edit]
[-] code-editor.js.js.tar.gz
[edit]
[-] search.zip
[edit]
[-] qtoa.tar
[edit]
[-] admin-footer.php.tar
[edit]
[-] afc62fd3e7c1e991.tar.gz
[edit]
[-] admin-ui.tar
[edit]
[-] template-canvas.php.php.tar.gz
[edit]
[-] class-wp-session-tokens.php.php.tar.gz
[edit]
[-] 0696607d810199973ae87adb737454dcfdd6f9.tar
[edit]
[-] media-models.js.tar
[edit]
[-] cpanel.tar.gz
[edit]
[-] wp-pointer-rtl.css.css.tar.gz
[edit]
[-] settings.php.tar
[edit]
[-] 6c8883240ebde2384274488923c5eda5e79538.tar
[edit]
[-] social-link.tar
[edit]
[-] e2e396b1aa0307dd.tar
[edit]
[-] fb4ab32e2060adf3.tar
[edit]
[-] _etc_remotedomains___3508983880.tar.gz
[edit]
[-] bashrc.tar.gz
[edit]
[-] 9da55849c98b4373f87c792d7341251e4084b4.tar.gz
[edit]
[-] fbea0ce510f8e996.tar.gz
[edit]
[-] ms-users.php.tar
[edit]
[-] widget-group.tar.gz
[edit]
[-] error_log.tar
[edit]
[-] php53.zip
[edit]
[-] ms-admin.php.tar
[edit]
[-] 1e7f381bba8fdf7d.tar.gz
[edit]
[-] 2eaad13bb4f12dfb.tar.gz
[edit]
[-] fbb211780a66646a.tar
[edit]
[-] ms-admin-filters.php.php.tar.gz
[edit]
[-] 99f3fc8ff19159ed.tar
[edit]
[-] fb5b94f9a8d3f741.tar.gz
[edit]
[-] e673486ed2b56e47.tar
[edit]
[-] cookieadmin.zip
[edit]
[-] e60fb427330e6605.tar.gz
[edit]
[-] custom-html-widgets.js.tar
[edit]
[-] f46a7dd6a80bd15f7dad54acbc82f68c725deb.tar.gz
[edit]
[-] list-reusable-blocks.tar
[edit]
[-] swfupload.tar.gz
[edit]
[-] 1eda01d043025413.tar
[edit]
[-] git-version.tar
[edit]
[-] 1e1e8a414827cc3e.tar
[edit]
[-] block-directory.tar
[edit]
[-] cracklib.tar.gz
[edit]
[-] media-text.tar
[edit]
[-] options-general.php.php.tar.gz
[edit]
[-] afeedf38b3a5b509.tar
[edit]
[-] 05dcdc32416bc9eed70cc07c84d33e72f6037b.tar.gz
[edit]
[-] list.tar
[edit]
[-] nextpage.zip
[edit]
[-] fb0b6b0bcd53de53.tar.gz
[edit]
[-] _firewalld.tar
[edit]
[-] dovecot.list.index.log.tar
[edit]
[-] term-description.php.tar
[edit]
[-] wp-auth-check.css.css.tar.gz
[edit]
[-] wp-links-opml.php.tar
[edit]
[-] ff8a31e0ba1e9152b977963b6914f54b1335cf.tar
[edit]
[-] auth-app.min.js.min.js.tar.gz
[edit]
[-] capabilities.php.tar
[edit]
[-] ea6051515b986bad.tar.gz
[edit]
[-] a0a909f407fd784f.tar.gz
[edit]
[-] b5af10c4791d55f2.tar.gz
[edit]
[-] addbbb4d99f4ef47.tar
[edit]
[-] theme.min.js.tar
[edit]
[-] ea32aa6f444462f9.tar
[edit]
[-] class-IXR-base64.php.php.tar.gz
[edit]
[-] 202934a3c56a52999c8f34c59d60027a3ff3f4.tar.gz
[edit]
[-] 8ba2c3d8f7103093.tar.gz
[edit]
[-] 992a2e00852141b7.tar.gz
[edit]
[-] 1eb7682a638edbbe.tar.gz
[edit]
[-] site-lisp.zip
[edit]
[-] 1e94484a7e7d286d.tar
[edit]
[-] class-smtp.php.tar
[edit]
[-] class-wp-locale-switcher.php.php.tar.gz
[edit]
[-] irq.tar.gz
[edit]
[-] pearlandpetalbeautyspa.com.tar.gz
[edit]
[-] freedoms.php.php.tar.gz
[edit]
[-] 8c6c80d2bb70a448.tar.gz
[edit]
[-] c369431dfc3ff979.tar
[edit]
[-] clipboard.js.js.tar.gz
[edit]
[-] class-wp-error.php.tar
[edit]
[-] f32fd8a1f3849bf86a9c030112ec2ae5c91ac0.tar
[edit]
[-] d81e00537cfadadf5cae2f1e0888f9fffcd515.tar
[edit]
[-] HLYG.gif.gif.tar.gz
[edit]
[-] fe57a1a9d043612e.tar.gz
[edit]
[-] 05056baea721491ef643088763169f52e73bc1.tar
[edit]
[-] 329b8270f7d9e49c264d3ab329cb5a3e45d034.tar
[edit]
[-] tools.php.tar
[edit]
[-] 596650cd772740061a54238559c7b1ed0234c1.tar
[edit]
[-] legacy-widget.php.tar
[edit]
[-] vty.tar
[edit]
[-] 1e0cfd6509b4f5bd.tar
[edit]
[-] a1d5f7a6c7710127.tar
[edit]
[-] calendar.tar.gz
[edit]
[-] heading.tar.gz
[edit]
[-] completions.zip
[edit]
[-] 1edd6608aeb5b9b5.tar
[edit]
[-] 1ea01b3f50f1b8b9.tar.gz
[edit]
[-] 1eaa789467d646ac.tar
[edit]
[-] user.tar.gz
[edit]
[-] stars.png.png.tar.gz
[edit]
[-] fe57a1a9d043612e.tar
[edit]
[-] general-template.php.php.tar.gz
[edit]
[-] widgets.min.css.tar
[edit]
[-] option.php.tar
[edit]
[-] b2de408c25024af7.tar.gz
[edit]
[-] block-supports.tar.gz
[edit]
[-] 2d0c2cd5bb78b725806d7732ce5aced675485d.tar.gz
[edit]
[-] colors.zip
[edit]
[-] 8e76f82b8ac41680.tar.gz
[edit]
[-] tcp_window_scaling.tar.gz
[edit]
[-] aadda7f25f62de0e.tar
[edit]
[-] customize-controls.min.css.tar
[edit]
[-] d.tar.gz
[edit]
[-] 9d7c005f3c136772.tar
[edit]
[-] en.zip
[edit]
[-] trusted-key.key.key.tar.gz
[edit]
[-] dashicons.min.css.min.css.tar.gz
[edit]
[-] class-wp-http-requests-response.php.tar
[edit]
[-] edit-comments.php.tar
[edit]
[-] dovecot.mailbox.log.tar
[edit]
[-] admin-bar.min.css.tar
[edit]
[-] 1c6287d174e2dc79.tar.gz
[edit]
[-] edit-rtl.min.css.tar
[edit]
[-] 1eb05bee67d8769e.tar.gz
[edit]
[-] class-wp-site-query.php.tar
[edit]
[-] customize-widgets.css.tar
[edit]
[-] 1d5b7515ecd24076.tar
[edit]
[-] html40f.vim.vim.tar.gz
[edit]
[-] fb0e964983267552.tar.gz
[edit]
[-] d485d914bad3016f16589aa9bc906c6eaa38b9.tar
[edit]
[-] jcrop.tar.gz
[edit]
[-] info@nakaafi.com.zip
[edit]
[-] w-logo-white.png.tar
[edit]
[-] swfobject.js.tar
[edit]
[-] class-wp-customize-setting.php.php.tar.gz
[edit]
[-] jquery-ui-dialog-rtl.min.css.tar
[edit]
[-] list-item.tar.gz
[edit]
[-] ea55f6e0f58ca61d.tar
[edit]
[-] wp-db.php.php.tar.gz
[edit]
[-] c759209213204c9e.tar.gz
[edit]
[-] ec7b0aa55a790179.tar
[edit]
[-] user-edit.php.php.tar.gz
[edit]
[-] 1e475358290d4368.tar
[edit]
[-] Exception.php.tar
[edit]
[-] readme.html.html.tar.gz
[edit]
[-] set-post-thumbnail.js.tar
[edit]
[-] c7492de69395967e.tar
[edit]
[-] 553e26fa671bde48299cde2bc03cde77b81e74.tar.gz
[edit]
[-] classic-themes.min.css.tar
[edit]
[-] ed8fc522bb32596d.tar.gz
[edit]
[-] fbe9585477dd3dcd.tar
[edit]
[-] e8bd22df4393b06b66ad4dbd38b3d2ccec8eb3.tar
[edit]
[-] site-tagline.php.php.tar.gz
[edit]
[-] taxonomy.php.tar
[edit]
[-] 1e8fe28600f97c84.tar
[edit]
[-] theme-rtl.css.css.tar.gz
[edit]
[-] m4sugar.zip
[edit]
[-] 9e298d662f4c7d3b394f4d9409eb4918b79a55.tar.gz
[edit]
[-] c11e9d13cc8f7198.tar.gz
[edit]
[-] postbox.js.js.tar.gz
[edit]
[-] fonts.tar
[edit]
[-] roundcube.tar
[edit]
[-] b9ba786e6c78f3b3c04e5c030d6f3370299eda.tar
[edit]
[-] fields.tar.gz
[edit]
[-] load-scripts.php.tar
[edit]
[-] 1ebf0d16be96f96b.tar.gz
[edit]
[-] info@accubooksuae.com.zip
[edit]
[-] editor.zip
[edit]
[-] wp-api.js.tar
[edit]
[-] class-wp-post.php.php.tar.gz
[edit]
[-] 6627bb06e374da07.tar.gz
[edit]
[-] v.tar.gz
[edit]
[-] editor.css.tar
[edit]
[-] redhat.tar
[edit]
[-] class-wp-customize-setting.php.tar
[edit]
[-] _etc_remotedomains___3508983880.tar
[edit]
[-] revisions.js.tar
[edit]
[-] fb43fefb04c4e2f7.tar.gz
[edit]
[-] user-edit.php.tar
[edit]
[-] view.min.js.min.js.tar.gz
[edit]
[-] themes.php.php.tar.gz
[edit]
[-] afa6ee914cebee02.tar.gz
[edit]
[-] f7ba7acbb01f7dd6a9f45f4990402ddbeefbc8.tar.gz
[edit]
[-] 591b0.tar
[edit]
[-] 1ebe6c2b964f6c4d.tar.gz
[edit]
[-] customize-controls-rtl.min.css.tar
[edit]
[-] mail.zip
[edit]
[-] latest-posts.php.tar
[edit]
[-] 9fe00d1f1d940bc7f22d8600c790202ecb38b7.tar.gz
[edit]
[-] nakaafi.com.tar.gz
[edit]
[-] 82a06827268f4c65.tar
[edit]
[-] 1f2bf38034741387.tar.gz
[edit]
[-] 99334cb39c64c990ace0079d65f4d0dedca776.tar
[edit]
[-] sort.gif.gif.tar.gz
[edit]
[-] ppc64-linux.tar
[edit]
[-] e65fde96fc5fc4f6.tar.gz
[edit]
[-] media-views.min.js.tar
[edit]
[-] class-wp-upgrader-skins.php.tar
[edit]
[-] a5b203c7ce360074.tar.gz
[edit]
[-] pearlandpetalbeautyspa.com.zip
[edit]
[-] widgets.tar.gz
[edit]
[-] fb23311db0db5fca.tar
[edit]
[-] user-profile.js.tar
[edit]
[-] home-link.zip
[edit]
[-] wp-links-opml.php.php.tar.gz
[edit]
[-] b7aa935ccf02e226d9af7b0b3a3dc474df4665.tar
[edit]
[-] nanorc.vim.vim.tar.gz
[edit]
[-] class-wp-styles.php.php.tar.gz
[edit]
[-] fb4f54430ec0793a.tar
[edit]
[-] 09f5b0b465d08fadba115defc80bbddd33f100.tar.gz
[edit]
[-] class-plugin-upgrader.php.php.tar.gz
[edit]
[-] phpcomplete.vim.vim.tar.gz
[edit]
[-] columns.tar.gz
[edit]
[-] POP3.php.php.tar.gz
[edit]
[-] 1ef9f4f72bc25426.tar
[edit]
[-] post-featured-image.zip
[edit]
[-] 82a251f0ceed5dfc.tar.gz
[edit]
[-] update-core.php.tar
[edit]
[-] password-toggle.js.js.tar.gz
[edit]
[-] c32eddbb90c3a627.tar.gz
[edit]
[-] lt__argz.c.tar
[edit]
[-] fe0bcb2f192222f308f967d89bb227323a37a0.tar
[edit]
[-] comment.php.php.tar.gz
[edit]
[-] 1e4fc85814700dce.tar.gz
[edit]
[-] 1e87c3e3308d5259.tar.gz
[edit]
[-] list.png.tar
[edit]
[-] bb15d0c2fe636984.tar.gz
[edit]
[-] mail.rc.tar
[edit]
[-] a3239f62b66d5b54.tar.gz
[edit]
[-] link-manager.php.tar
[edit]
[-] sitemaps.php.tar
[edit]
[-] 66347d4412336f91.tar
[edit]
[-] zen.tar
[edit]
[-] custom-background.php.tar
[edit]
[-] autoconf.zip
[edit]
[-] class-wp-links-list-table.php.tar
[edit]
[-] e257f63a1c0fc232.tar
[edit]
[-] about-rtl.css.css.tar.gz
[edit]
[-] tag-cloud.php.php.tar.gz
[edit]
[-] customize-base.js.js.tar.gz
[edit]
[-] 12977e6ce39da346.tar.gz
[edit]
[-] 2e42c91ff585bb2c.tar
[edit]
[-] f0ba4314c8fb056c7e6fe597da0cdf754eb90c.tar.gz
[edit]
[-] alphapca56-linux.tar.gz
[edit]
[-] afbdf2d62d97ab24.tar
[edit]
[-] awstats012026.ediuae.com.txt.ediuae.com.txt.tar.gz
[edit]
[-] hvh.txt.tar
[edit]
[-] style-engine.php.php.tar.gz
[edit]
[-] admin.php.php.tar.gz
[edit]
[-] 72399707cf3d40ec79375cb6e6d3004fd660a9.tar.gz
[edit]
[-] cm.zip
[edit]
[-] c.tar.gz
[edit]
[-] media-button-image.gif.tar
[edit]
[-] svg-painter.js.js.tar.gz
[edit]
[-] f32fd8a1f3849bf86a9c030112ec2ae5c91ac0.tar.gz
[edit]
[-] site-icon.js.js.tar.gz
[edit]
[-] php.ini.tar
[edit]
[-] edit-link-form.php.tar
[edit]
[-] Text.zip
[edit]
[-] be8185270c0a7401f091476578c137b5dae92a.tar.gz
[edit]
[-] e6e696ad7010ee7e.tar
[edit]
[-] press-this.php.tar
[edit]
[-] align-left.png.png.tar.gz
[edit]
[-] 6adc6dd0c48bd4d2b190a94c8884fb29559325.tar
[edit]
[-] e20057de3f2e7bfa.tar.gz
[edit]
[-] code.zip
[edit]
[-] 1e2ddf8354b2ad1b.tar
[edit]
[-] 2eafa64f2adc3793.tar
[edit]
[-] group.tar
[edit]
[-] classic-themes.min.css.min.css.tar.gz
[edit]
[-] file.php.tar
[edit]
[-] class-wp.php.php.tar.gz
[edit]
[-] commentics.zip
[edit]
[-] editor.min.js.tar
[edit]
[-] robots-template.php.php.tar.gz
[edit]
[-] 959c120bf690ea2a292e83192acb23edf406c5.tar.gz
[edit]
[-] meta.php.php.tar.gz
[edit]
[-] 956748.tar.gz
[edit]
[-] America.zip
[edit]
[-] 1e287a76fc26e65b.tar
[edit]
[-] fb87bcf0b75ea802.tar.gz
[edit]
[-] a796755c2d4ef8ab753479cea5ae5bf41be3ef.tar
[edit]
[-] shortcode.zip
[edit]
[-] jquery.tar
[edit]
[-] d66dfa3f.zip
[edit]
[-] a57d3a8b73e8f9cdd85ad0d9d8401f296bc1a4.tar
[edit]
[-] deprecated-media.css.css.tar.gz
[edit]
[-] .razor.tar
[edit]
[-] fe4a9761a968a58a.tar.gz
[edit]
[-] video.png.png.tar.gz
[edit]
[-] tabset.tar.gz
[edit]
[-] install.css.css.tar.gz
[edit]
[-] .subaccounts.tar.gz
[edit]
[-] wp-settings.php.tar
[edit]
[-] uploads.tar
[edit]
[-] 1e8fe28600f97c84.tar.gz
[edit]
[-] edit-comments.min.js.min.js.tar.gz
[edit]
[-] mediaelement.zip
[edit]
[-] class-snoopy.php.php.tar.gz
[edit]
[-] about-release-logo.svg.tar
[edit]
[-] theme.css.tar
[edit]
[-] post-formats-vs.png.tar
[edit]
[-] e5db3142a1ab3f3bb22d58106bfcf50f01ccff.tar
[edit]
[-] site-title.php.php.tar.gz
[edit]
[-] c887710d88502eab9fe794b872574bae73885e.tar
[edit]
[-] ms-sites.php.tar
[edit]
[-] e2921563b3de3da9.tar
[edit]
[-] align.php.php.tar.gz
[edit]
[-] 82a88bd586d2838f.tar
[edit]
[-] a0a909f407fd784f.tar
[edit]
[-] 1f1474c79bf73709.tar.gz
[edit]
[-] 1e44dbc18fd8191f.tar
[edit]
[-] 68865c89d8c40ca0b45361fd5110b332bd0da9.tar.gz
[edit]
[-] html-api.tar.gz
[edit]
[-] class-wp-role.php.php.tar.gz
[edit]
[-] c595c92759c07bb4f4fc514446a4e45c5d2d14.tar.gz
[edit]
[-] site-health-rtl.min.css.tar
[edit]
[-] theme.js.tar
[edit]
[-] icals.zip
[edit]
[-] edit-comments.js.tar
[edit]
[-] 51fb6fe656333254aa11ccc5020194dd9ac223.tar.gz
[edit]
[-] navigation-submenu.php.tar
[edit]
[-] options-reading.php.php.tar.gz
[edit]
[-] whmcs83.tar
[edit]
[-] e69140d0869a79f6.tar.gz
[edit]
[-] new.tar
[edit]
[-] fe76402adc2b4cfd.tar.gz
[edit]
[-] 0.tar
[edit]
[-] fb0e964983267552.tar
[edit]
[-] speculative-loading.php.php.tar.gz
[edit]
[-] class-wp-oembed.php.tar
[edit]
[-] roundcube.zip
[edit]
[-] Auth.tar
[edit]
[-] 378ce7d87e73dfba.tar.gz
[edit]
[-] maint.zip
[edit]
[-] liblqr-1.tar
[edit]
[-] jquery-ui-dialog-rtl.css.css.tar.gz
[edit]
[-] avatar.tar
[edit]
[-] fitvault.ae.tar.gz
[edit]
[-] aade2da76d1a7030.tar
[edit]
[-] admin-bar.php.tar
[edit]
[-] 00.tar
[edit]
[-] index.php0.php0.tar.gz
[edit]
[-] lynx.lss.tar
[edit]
[-] abi.tar.gz
[edit]
[-] redhat.tar.gz
[edit]
[-] details.tar.gz
[edit]
[-] euphony-blocks.zip
[edit]
[-] 1e44dbc18fd8191f.tar.gz
[edit]
[-] taxonomy.php.php.tar.gz
[edit]
[-] 05056baea721491ef643088763169f52e73bc1.tar.gz
[edit]
[-] zikula15.tar.gz
[edit]
[-] media-grid.js.tar
[edit]
[-] 9db45f5ffca08a9b.tar.gz
[edit]
[-] wheel.png.png.tar.gz
[edit]
[-] fonts.tar.gz
[edit]
[-] 1e6139d403922281.tar.gz
[edit]
[-] date-button-2x.gif.tar
[edit]
[-] 74e7ce32f6c0d3ed31792ca742f3acbab5e2c8.tar.gz
[edit]
[-] class-wp-block-parser-block.php.php.tar.gz
[edit]
[-] e631f4ce9b52c097.tar.gz
[edit]
[-] class-phpmailer.php.php.tar.gz
[edit]
[-] mail.rc.rc.tar.gz
[edit]
[-] ms-edit.php.tar
[edit]
[-] .well-known.zip
[edit]
[-] class-core-upgrader.php.php.tar.gz
[edit]
[-] Montreal.tar.gz
[edit]
[-] plugins.zip
[edit]
[-] block-patterns.php.php.tar.gz
[edit]
[-] 1ea1e5e5710af8ea.tar.gz
[edit]
[-] 7534998f55b296da7b6cd5ef51840323ef57ef.tar
[edit]
[-] f06af51bf388422c21ae90258da300f8becc45.tar
[edit]
[-] stars.png.tar
[edit]
[-] 0.tar.gz
[edit]
[-] class-wp-block.php.php.tar.gz
[edit]
[-] class-wp-date-query.php.tar
[edit]
[-] ediuae.rcube.db.1770204696.tar
[edit]
[-] continents-cities.php.tar
[edit]
[-] skins.tar
[edit]
[-] class-wp-feed-cache.php.tar
[edit]
[-] class-wp-object-cache.php.tar
[edit]
[-] dovecot-uidlist.tar.gz
[edit]
[-] l10n-rtl.min.css.min.css.tar.gz
[edit]
[-] embed.tar.gz
[edit]
[-] blocks-json.php.php.tar.gz
[edit]
[-] clone.php.php.tar.gz
[edit]
[-] tag-cloud.php.tar
[edit]
[-] c887710d88502eab9fe794b872574bae73885e.tar.gz
[edit]
[-] .pramod@ediuae_com.zip
[edit]
[-] class.wp-styles.php.tar
[edit]
[-] admin-menu-rtl.min.css.min.css.tar.gz
[edit]
[-] e66d54a1cc9c50f9.tar
[edit]
[-] social@ediuae.com.zip
[edit]
[-] media-button-other.gif.gif.tar.gz
[edit]
[-] bb15d0c2fe636984.tar
[edit]
[-] footnotes.zip
[edit]
[-] Parse.tar.gz
[edit]
[-] php81.tar
[edit]
[-] install.xml.tar
[edit]
[-] xmlrpc.php.tar
[edit]
[-] 8ba2c3d8f7103093.tar
[edit]
[-] fa3dc11a2d298cdcb0a0fdd364dac228ee5bde.tar
[edit]
[-] menu-vs.png.tar
[edit]
[-] view.min.js.tar
[edit]
[-] localtime.tar
[edit]
[-] options-general.php.tar
[edit]
[-] 378ce7d87e73dfba.tar
[edit]
[-] arrows-2x.png.tar
[edit]
[-] cotonti.zip
[edit]
[-] 08.zip
[edit]
[-] colibri.zip
[edit]
[-] canonical.php.php.tar.gz
[edit]
[-] class-wp-block-template.php.php.tar.gz
[edit]
[-] html-api.tar
[edit]
[-] b2dc6db8c1a29f09.tar.gz
[edit]
[-] media-views-rtl.min.css.min.css.tar.gz
[edit]
[-] 12b46fba23cde217.tar
[edit]
[-] class-wp-styles.php.tar
[edit]
[-] post-author-name.php.tar
[edit]
[-] 09.zip
[edit]
[-] comment-reply-link.php.php.tar.gz
[edit]
[-] phplot.tar
[edit]
[-] 24070848aec018ff9ce3285a42df9c06edd776.tar.gz
[edit]
[-] ediuae.rcube.db.1768080265.rcube.db.1768080265.tar.gz
[edit]
[-] 129a19ad1daef742.tar
[edit]
[-] 2e794be98464c084.tar
[edit]
[-] fb523fdf98e1a3d8.tar
[edit]
[-] admin-ajax.php.php.tar.gz
[edit]
[-] fbe9585477dd3dcd.tar.gz
[edit]
[-] class-wp.php.tar
[edit]
[-] c15c53883a4ee2c9.tar
[edit]
[-] class-theme-upgrader.php.php.tar.gz
[edit]
[-] editor-expand.min.js.tar
[edit]
[-] .metadata.metadata.tar.gz
[edit]
[-] ms-edit.php.php.tar.gz
[edit]
[-] options-discussion.php.tar
[edit]
[-] info.xml.tar
[edit]
[-] comment.js.js.tar.gz
[edit]
[-] module.tag.apetag.php.tar
[edit]
[-] b2dc6db8c1a29f09.tar
[edit]
[-] ed03b6b48c8e55e2.tar
[edit]
[-] pomo.tar.gz
[edit]
[-] nav-menus.css.tar
[edit]
[-] envo-royal.tar
[edit]
[-] user-suggest.min.js.tar
[edit]
[-] class-wp-admin-bar.php.tar
[edit]
[-] fb3954c8aefb0679.tar
[edit]
[-] 72308b5454bbb6de50963bf6981e5dd9d6a08c.tar.gz
[edit]
[-] link.js.tar
[edit]
[-] HLYG.gif.tar
[edit]
[-] 1061296e7b1ac81852ee1626bc573c04d024f4.tar.gz
[edit]
[-] a0a0c1ea95516704.tar.gz
[edit]
[-] buttons.min.css.min.css.tar.gz
[edit]
[-] b44c0825a1277036c6ac1724e50afc1dd35407.tar
[edit]
[-] kabi.sh.tar
[edit]
[-] media-views.css.css.tar.gz
[edit]
[-] 8b1e5cdcd3aef30d.tar.gz
[edit]
[-] comment-author-name.zip
[edit]
[-] class-wp-duotone.php.tar
[edit]
[-] .spam.tar.gz
[edit]
[-] 62c6413ed02aee623ce90361644e93858d5ced.tar
[edit]
[-] post-excerpt.php.php.tar.gz
[edit]
[-] 09e62d2f5bfda8fa476e99dbb3b4b67f95e2d9.tar
[edit]
[-] term-template.tar.gz
[edit]
[-] git-tag.tar
[edit]
[-] 1e6849d8aeb07cd2.tar.gz
[edit]
[-] 1e9b6fc395ae9d56.tar.gz
[edit]
[-] caches.zip
[edit]
[-] 9d71552ea4516ef6.tar.gz
[edit]
[-] media-gallery.js.js.tar.gz
[edit]
[-] 590428a58059662c6c2e06aa268588729b2c55.tar.gz
[edit]
[-] class-wp-taxonomy.php.php.tar.gz
[edit]
[-] class-IXR-error.php.tar
[edit]
[-] 67edb88a9a7fc67552dd3d1bb2845e6d84fe7d.tar.gz
[edit]
[-] 1eba388e7fd4b2b9.tar.gz
[edit]
[-] template.php.php.tar.gz
[edit]
[-] 1eb539abcc516db7.tar.gz
[edit]
[-] customize-nav-menus.css.css.tar.gz
[edit]
[-] 5dee0f913e93875f9eecfbde80e9994e2e53c9.tar
[edit]
[-] audio.tar.gz
[edit]
[-] 1.tar
[edit]
[-] edit-tags.php.tar
[edit]
[-] update-core.php.php.tar.gz
[edit]
[-] 1e8eb1ab240c6012.tar.gz
[edit]
[-] e2b683339dd2304e.tar
[edit]
[-] image-edit-merge.php.php.tar.gz
[edit]
[-] image-edit.php.php.tar.gz
[edit]
[-] export.php.php.tar.gz
[edit]
[-] themes-rtl.min.css.tar
[edit]
[-] media-views.min.js.min.js.tar.gz
[edit]
[-] history.tcl.tar
[edit]
[-] .imunify_patch_id.tar
[edit]
[-] php82.tar
[edit]
[-] e64f0ceac618e9ce.tar
[edit]
[-] heartbeat.min.js.min.js.tar.gz
[edit]
[-] 5023f4b1d28fa23c7a6e5e0e74d35f5f7415b9.tar
[edit]
[-] 8e38df6535440576.tar.gz
[edit]
[-] 13b835518d19e460d0fab19585c9b3c5af9065.tar
[edit]
[-] 1eacfe4fc60cb578.tar.gz
[edit]
[-] blocks.php.php.tar.gz
[edit]
[-] wp-embed-template.css.tar
[edit]
[-] wp-includes.tar
[edit]
[-] 8f1b7c.tar.gz
[edit]
[-] help.de.txt.tar
[edit]
[-] class-wp-rest-response.php.tar
[edit]
[-] dist.tar.gz
[edit]
[-] class-snoopy.php.tar
[edit]
[-] .bash_profile.tar
[edit]
[-] 8e3ed1319a97512a.tar.gz
[edit]
[-] class-custom-background.php.php.tar.gz
[edit]
[-] user.php.php.tar.gz
[edit]
[-] 1ecf739b15ba5c12.tar
[edit]
[-] customize-preview.min.css.tar
[edit]
[-] locale.php.tar
[edit]
[-] 25e.tar.gz
[edit]
[-] 270e3f235d59719e24bdfd4a55fd71c9ad6bad.tar
[edit]
[-] fbb345d3d26fd81c.tar.gz
[edit]
[-] etc.tar.gz
[edit]
[-] cover.tar
[edit]
[-] se.png.tar
[edit]
[-] 6066eb55e5c268ef.tar
[edit]
[-] e.tar
[edit]
[-] hr@ediuae.com.tar.gz
[edit]
[-] ediuae.tar
[edit]
[-] ece86efab712526e3e81bd7b47ac76416661fc.tar
[edit]
[-] class-wp-html-decoder.php.tar
[edit]
[-] ediuae.rcube.db.tar
[edit]
[-] accordion.js.tar
[edit]
[-] app.tar.gz
[edit]
[-] sda2.tar.gz
[edit]
[-] class-theme-upgrader-skin.php.tar
[edit]
[-] 1e8ed500d65d4cfe.tar
[edit]
[-] menu-2x.png.tar
[edit]
[-] bookmark-template.php.tar
[edit]
[-] fb4f54430ec0793a.tar.gz
[edit]
[-] fb06efc30d395ab2.tar
[edit]
[-] date-button-2x.gif.gif.tar.gz
[edit]
[-] automake-1.16.tar.gz
[edit]
[-] e257f63a1c0fc232.tar.gz
[edit]
[-] 1ce425f15fc8cb41.tar.gz
[edit]
[-] 57eb388b486d034705d79105a9dab332c9401a.tar
[edit]
[-] 82ac6ac92c889fd6.tar
[edit]
[-] fb8f8315ff2baf04.tar.gz
[edit]
[-] thickbox.css.css.tar.gz
[edit]
[-] xfn.js.tar
[edit]
[-] wpdialog.js.js.tar.gz
[edit]
[-] mask.png.png.tar.gz
[edit]
[-] DSNConfigurator.php.php.tar.gz
[edit]
[-] uploader-icons.png.tar
[edit]
[-] .php.error.log.php.error.log.tar.gz
[edit]
[-] Auth.tar.gz
[edit]
[-] .trash.zip
[edit]
[-] class-wp-http-encoding.php.php.tar.gz
[edit]
[-] registration-functions.php.tar
[edit]
[-] sks-keyservers.netCA.pem.netCA.pem.tar.gz
[edit]
[-] 1e935d14072ec911.tar
[edit]
[-] cover.php.tar
[edit]
[-] customize-controls.min.css.min.css.tar.gz
[edit]
[-] 1ea1e5e5710af8ea.tar
[edit]
[-] 1ad3dc3b5406d1cd.tar.gz
[edit]
[-] fb169b6316321025.tar
[edit]
[-] heading.php.php.tar.gz
[edit]
[-] b2213088cf6d0956.tar
[edit]
[-] a0ade529680bcb43.tar
[edit]
[-] dovecot-uidvalidity.6779965f.6779965f.tar.gz
[edit]
[-] a3239f62b66d5b54.tar
[edit]
[-] calendar.php.tar
[edit]
[-] error_log.tar.gz
[edit]
[-] bb137e9f324fce1c.tar.gz
[edit]
[-] query-title.tar
[edit]
[-] 0a35646773a5bbe6cf298e41cd69233c90d586.tar.gz
[edit]
[-] e6c2007616e5bec7.tar.gz
[edit]
[-] 8ee14082c5949801.tar.gz
[edit]
[-] classic-themes.css.tar
[edit]
[-] 893a42820620a73e2c86b7f69dce751df4706c.tar
[edit]
[-] ediuae.rcube.db.1770204696.rcube.db.1770204696.tar.gz
[edit]
[-] utf8.php.tar
[edit]
[-] class-ftp.php.php.tar.gz
[edit]
[-] 1eac40ad0f1a599e.tar.gz
[edit]
[-] wordpress-logo.svg.svg.tar.gz
[edit]
[-] wp-config.php.tar
[edit]
[-] class-wp-application-passwords.php.php.tar.gz
[edit]
[-] git-show.tar.gz
[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]
[-] revisions.js.js.tar.gz
[edit]
[-] mounts.tar.gz
[edit]
[-] 8e3a1b2f34347cd2.tar.gz
[edit]
[-] avatar.php.php.tar.gz
[edit]
[-] widget-group.zip
[edit]
[-] accordion-heading.tar
[edit]
[-] user-suggest.min.js.min.js.tar.gz
[edit]
[-] block-i18n.json.json.tar.gz
[edit]
[-] libidn.tar.gz
[edit]
[-] query.php.php.tar.gz
[edit]
[-] preformatted.zip
[edit]
[-] src.zip
[edit]
[-] c7474d0b435fe10f.tar.gz
[edit]
[-] 6957c326a56fe084.tar.gz
[edit]
[-] post-comments-link.php.tar
[edit]
[-] ed1d4025261e9cb4.tar.gz
[edit]
[-] column.tar.gz
[edit]
[-] utils.zip
[edit]
[-] class-IXR-server.php.tar
[edit]
[-] _wp-config.php.php.tar.gz
[edit]
[-] comment-template.php.tar
[edit]
[-] 1e143383fe016bff.tar.gz
[edit]
[-] autotest.tar
[edit]
[-] pattern.php.tar
[edit]
[-] lowmem_reserve_ratio.tar
[edit]
[-] fbea8453f728bf24.tar
[edit]
[-] fb4da8b6955f2294.tar
[edit]
[-] 13e6f7a95ae04672dc5e454c50d1d42e45bf78.tar
[edit]
[-] fb91204cf0bd0b36.tar
[edit]
[-] tw-sack.min.js.min.js.tar.gz
[edit]
[-] e2b683339dd2304e.tar.gz
[edit]
[-] post-comments-link.php.php.tar.gz
[edit]
[-] cada2a20ded908259a71e748d4d8f368cb2b22.tar.gz
[edit]
[-] 8e76056719d7ccd6.tar
[edit]
[-] plupload.zip
[edit]
[-] 84c678fe0ae8e1d6f4d130141055ade80d93d5.tar.gz
[edit]
[-] code.tar.gz
[edit]
[-] theme.php.tar
[edit]
[-] resolv.conf.conf.tar.gz
[edit]
[-] fb1a747b2d6eb3c2.tar
[edit]
[-] b908048309e487c66bf389ca0beadf7e99cd71.tar.gz
[edit]
[-] 852ec6b8fb249300914c7292b327d88ef554c6.tar
[edit]
[-] site-start.d.tar.gz
[edit]
[-] .184a94671617d030554ede9891040720f48dcfeda.tar
[edit]
[-] a8d803c39067166b.tar
[edit]
[-] jquery-ui-dialog.css.tar
[edit]
[-] 1e52df1eed1b2d8e.tar
[edit]
[-] plugin.php.tar
[edit]
[-] theme.css.css.tar.gz
[edit]
[-] 29.zip
[edit]
[-] ms-files.php.php.tar.gz
[edit]
[-] fba6a500611bfc58.tar
[edit]
[-] class-walker-page.php.tar
[edit]
[-] class-wp-application-passwords.php.tar
[edit]
[-] comment-template.php.php.tar.gz
[edit]
[-] term-template.tar
[edit]
[-] wpspin-2x.gif.tar
[edit]
[-] .hr@ediuae_com.zip
[edit]
[-] tags-box.js.js.tar.gz
[edit]
[-] l10n-rtl.css.css.tar.gz
[edit]
[-] .bash_logout.bash_logout.tar.gz
[edit]
[-] kses.php.tar
[edit]
[-] site-health-info.php.tar
[edit]
[-] netrw.vim.tar
[edit]
[-] upgrade-functions.php.php.tar.gz
[edit]
[-] class-pop3.php.php.tar.gz
[edit]
[-] 52f8a136aff70df2c25fc482a8017b91f24f39.tar.gz
[edit]
[-] 37769fe778a36428.tar
[edit]
[-] 806a94a4996f13523dddc75423075a501d4149.tar.gz
[edit]
[-] upgrade-functions.php.tar
[edit]
[-] lists.tar.gz
[edit]
[-] admin-bar-rtl.css.tar
[edit]
[-] 79f0ec921dabed95be5ca47ee3af370605c325.tar.gz
[edit]
[-] b2213088cf6d0956.tar.gz
[edit]
[-] 1e57c15dac52221e.tar.gz
[edit]
[-] comment.min.js.tar
[edit]
[-] date.php.php.tar.gz
[edit]
[-] sort.gif.tar
[edit]
[-] servers.nomination.lst.tar
[edit]
[-] 8bc5f6bacc6cb51c.tar
[edit]
[-] link.php.php.tar.gz
[edit]
[-] link-parse-opml.php.php.tar.gz
[edit]
[-] e2021cfa7b4730c4.tar
[edit]
[-] git-hook.tar
[edit]
[-] 1e70adc5192090f3.tar.gz
[edit]
[-] aa3d62fbf64dc0b92434ad89c03d8c967a38a0.tar.gz
[edit]
[-] wp-pointer-rtl.css.tar
[edit]
[-] imgedit-icons.png.png.tar.gz
[edit]
[-] 51fb6fe656333254aa11ccc5020194dd9ac223.tar
[edit]
[-] input.tar.gz
[edit]
[-] ed8f553a4ce74f29.tar
[edit]
[-] export-personal-data.php.tar
[edit]
[-] localtime.tar.gz
[edit]
[-] customize.tar
[edit]
[-] sda7-8.tar
[edit]
[-] 2e8c3d5ebda85617.tar
[edit]
[-] fe0bcb2f192222f308f967d89bb227323a37a0.tar.gz
[edit]
[-] .proxy_config.tar
[edit]
[-] post-terms.tar.gz
[edit]
[-] cropper.css.css.tar.gz
[edit]
[-] user-new.php.tar
[edit]
[-] install-helper.php.php.tar.gz
[edit]
[-] term-count.zip
[edit]
[-] class-wp-block-bindings-source.php.tar
[edit]
[-] contribute-no-code.svg.tar
[edit]
[-] razor-agent.log.log.tar.gz
[edit]
[-] c78376ddbf8a9497.tar.gz
[edit]
[-] customize-base.js.tar
[edit]
[-] fb1178c22441d44f.tar
[edit]
[-] aacd20fc536497cb.tar
[edit]
[-] 1e6fa48320c90a59.tar.gz
[edit]
[-] user-new.php.php.tar.gz
[edit]
[-] keys.tar.gz
[edit]
[-] e265848897c47d27.tar.gz
[edit]
[-] ea-oniguruma.zip
[edit]
[-] paragraph.zip
[edit]
[-] f766cb972848e287.tar
[edit]
[-] color-picker.min.js.min.js.tar.gz
[edit]
[-] video.tar.gz
[edit]
[-] 8c9aaabe36707b67.tar.gz
[edit]
[-] customize-preview.min.css.min.css.tar.gz
[edit]
[-] pie.zip
[edit]
[-] archive.svg.svg.tar.gz
[edit]
[-] z.mov.mov.tar.gz
[edit]
[-] 8edc90754f31dca713e75d3a44cdf2bf38782f.tar.gz
[edit]
[-] theme-install.php.php.tar.gz
[edit]
[-] customize-preview.css.tar
[edit]
[-] wp-config-sample.php.tar
[edit]
[-] 1d118b8228646233.tar
[edit]
[-] themes.min.css.tar
[edit]
[-] post-thumbnail-template.php.tar
[edit]
[-] dovecot-uidvalidity.6779965f.tar
[edit]
[-] 20ea38662304c085.tar
[edit]
[-] 639b18425d69716798fe93492a1840edcd2270.tar
[edit]
[-] d93aba73972162446bd036d183ccfd8a9c6b4d.tar.gz
[edit]
[-] 1e103325208e3f08.tar.gz
[edit]
[-] columns.tar
[edit]
[-] 12536c20bb82e572.tar
[edit]
[-] class-smtp.php.php.tar.gz
[edit]
[-] privacy-tools.min.js.min.js.tar.gz
[edit]
[-] extend.php.tar
[edit]
[-] screen.php.tar
[edit]
[-] query.tar.gz
[edit]
[-] block-directory.tar.gz
[edit]
[-] footnotes.tar
[edit]
[-] 142789c798a066a6c9c7e8190426da8a38d297.tar.gz
[edit]
[-] df02dcc6a0fba2509c9310fbccb02d6a6cea85.tar.gz
[edit]
[-] 590ed5bdc71dcc1729e233b94f18f7e8bc2ab1.tar
[edit]
[-] ms-themes.php.tar
[edit]
[-] wplink.tar
[edit]
[-] e66d54a1cc9c50f9.tar.gz
[edit]
[-] info.xml.xml.tar.gz
[edit]
[-] feed-rss2-comments.php.php.tar.gz
[edit]
[-] cache-compat.php.tar
[edit]
[-] ms-deprecated.php.php.tar.gz
[edit]
[-] 4989d8cf7454361dde157150ed28656cad5702.tar.gz
[edit]
[-] farbtastic.js.js.tar.gz
[edit]
[-] sda5.tar
[edit]
[-] edeb3c5bceea11e7.tar.gz
[edit]
[-] video.php.php.tar.gz
[edit]
[-] 1f1474c79bf73709.tar
[edit]
[-] cpuinfo.tar.gz
[edit]
[-] ef88c0041995c802.tar
[edit]
[-] class-wp-customize-control.php.tar
[edit]
[-] credits.php.php.tar.gz
[edit]
[-] 1ef736e1de93f840.tar.gz
[edit]
[-] 1e0e8bfc3dcf31ac.tar
[edit]
[-] a1d90753c8d8fd1d6470eb65a30b37542d832f.tar
[edit]
[-] https-detection.php.tar
[edit]
[-] endpoints.tar
[edit]
[-] backbone.js.js.tar.gz
[edit]
[-] .cpanel_vcf_import_gimanthi@ediuae.com.cpanel_vcf_import_gimanthi@ediuae.com.tar.gz
[edit]
[-] hebrew_cp1255.vim.tar
[edit]
[-] admin-bar.css.tar
[edit]
[-] ssl.db.tar
[edit]
[-] block-bindings.zip
[edit]
[-] fb71198284ae6ee3.tar
[edit]
[-] 8e3a1b2f34347cd2.tar
[edit]
[-] 67077ae55d33e89943244a99053982ce5c5c1d.tar
[edit]
[-] page-cluster.tar
[edit]
[-] view.min.asset.php.tar
[edit]
[-] pattern.zip
[edit]
[-] a0fac_dd909_1c378abedc6539da34b792b541115e06.key.key.tar.gz
[edit]
[-] drop_caches.tar
[edit]
[-] 9db40599417da046f7e02ab3d4bd96146d5d18.tar.gz
[edit]
[-] tine.tar.gz
[edit]
[-] rss.png.png.tar.gz
[edit]
[-] abilities-api.php.php.tar.gz
[edit]
[-] ede720299b1d6899.tar
[edit]
[-] 1e02cd548acda1d4.tar.gz
[edit]
[-] fb523fdf98e1a3d8.tar.gz
[edit]
[-] shortcode.tar
[edit]
[-] jquery.tar.gz
[edit]
[-] 1e6d0c611b8741d8.tar
[edit]
[-] page-list-item.zip
[edit]
[-] 1e954530feb2c981.tar.gz
[edit]
[-] 8.tar.gz
[edit]
[-] ppciseries-linux.tar.gz
[edit]
[-] query-pagination.zip
[edit]
[-] class-wp-network.php.php.tar.gz
[edit]
[-] 468671541d6ace4da24f164b0706e8aec135a5.tar.gz
[edit]
[-] class-wp-block-parser-frame.php.php.tar.gz
[edit]
[-] 8e3108bc579b0069.tar
[edit]
[-] 2d0c2cd5bb78b725806d7732ce5aced675485d.tar
[edit]
[-] class-wp-simplepie-file.php.php.tar.gz
[edit]
[-] ed5b10e5ced08186.tar.gz
[edit]
[-] 15d88fab2723c501e3c177387202d720fa4bf8.tar.gz
[edit]
[-] load.php.php.tar.gz
[edit]
[-] column.tar
[edit]
[-] plugin-install.js.js.tar.gz
[edit]
[-] endpoints.zip
[edit]
[-] git-bundle.tar.gz
[edit]
[-] themes.tar.gz
[edit]
[-] pullquote.tar
[edit]
[-] l10n-rtl.css.tar
[edit]
[-] au_backups.php.tar
[edit]
[-] components.tar.gz
[edit]
[-] pki-validation.zip
[edit]
[-] more.tar.gz
[edit]
[-] documentor.tar.gz
[edit]
[-] 4d4a8c44a58ba791636456cc548a94aa546461.tar
[edit]
[-] 28278d64955ca9042973e55e9d32422191105e.tar
[edit]
[-] text.png.tar
[edit]
[-] _systemd-tmpfiles.tar
[edit]
[-] sysconfig.tar
[edit]
[-] compat-utf8.php.tar
[edit]
[-] autoloader.php.php.tar.gz
[edit]
[-] 1cfc0a80919059b2dbf1e2b3d12a2aaa8b8d53.tar.gz
[edit]
[-] servers.nomination.lst.nomination.lst.tar.gz
[edit]
[-] 1ebd949c10cfb8c1.tar.gz
[edit]
[-] assets.tar.gz
[edit]
[-] shortcode.php.php.tar.gz
[edit]
[-] Ssl.php.php.tar.gz
[edit]
[-] c1589f0852e3bd58.tar.gz
[edit]
[-] git-tag.tar.gz
[edit]
[-] 46b2d7d4e1333695f39861498808891129a0ec.tar
[edit]
[-] c32721eb3739757e.tar
[edit]
[-] lime3.tar.gz
[edit]
[-] class-wp-matchesmapregex.php.tar
[edit]
[-] widgets-form-blocks.php.tar
[edit]
[-] 11824c0cc38bf8111c8423c24135e8897f95fc.tar.gz
[edit]
[-] media.min.css.min.css.tar.gz
[edit]
[-] cpg.zip
[edit]
[-] agrivaingredients.com.tar
[edit]
[-] wp-util.min.js.tar
[edit]
[-] e65fde96fc5fc4f6.tar
[edit]
[-] 663fb3efa4cbef97.tar.gz
[edit]
[-] class-wp-http.php.php.tar.gz
[edit]
[-] 96c7d72c8c08896822dad9954f83908e44889a.tar.gz
[edit]
[-] 1e7f8f6cd819ed66.tar
[edit]
[-] .bash_profile.bash_profile.tar.gz
[edit]
[-] df02dcc6a0fba2509c9310fbccb02d6a6cea85.tar
[edit]
[-] site-new.php.tar
[edit]
[-] admin-ui.zip
[edit]
[-] b44c0825a1277036c6ac1724e50afc1dd35407.tar.gz
[edit]
[-] admin-menu-rtl.css.tar
[edit]
[-] search.tar.gz
[edit]
[-] customize-nav-menus.min.css.tar
[edit]
[-] 79f0ec921dabed95be5ca47ee3af370605c325.tar
[edit]
[-] video.zip
[edit]
[-] 1e52df1eed1b2d8e.tar.gz
[edit]
[-] bubble_bg.gif.gif.tar.gz
[edit]
[-] imagesloaded.min.js.min.js.tar.gz
[edit]
[-] fe58f81ee9573823.tar
[edit]
[-] style.min.css.min.css.tar.gz
[edit]
[-] xmainwelcomedismissed.tar
[edit]
[-] php56.zip
[edit]
[-] ecb35d9100d9c646.tar.gz
[edit]
[-] accubooksuae.com.zip
[edit]
[-] wp-settings.php.php.tar.gz
[edit]
[-] theme-templates.php.php.tar.gz
[edit]
[-] deprecated-media-rtl.css.css.tar.gz
[edit]
[-] preformatted.tar.gz
[edit]
[-] list-tables.css.tar
[edit]
[-] 5548ce736b90583ef29f794fbd8711e55aeb34.tar
[edit]
[-] info@accubooksuae.com.tar
[edit]
[-] avatar.tar.gz
[edit]
[-] wp-admin.css.css.tar.gz
[edit]
[-] toggige-arrow.jpg.jpg.tar.gz
[edit]
[-] class-wp-date-query.php.php.tar.gz
[edit]
[-] arrows-2x.png.png.tar.gz
[edit]
[-] igalerie.zip
[edit]
[-] imgedit-icons-2x.png.png.tar.gz
[edit]
[-] .softaculous.tar
[edit]
[-] .last.inodes.tar
[edit]
[-] wp-trackback.php.tar
[edit]
[-] list-tables.css.css.tar.gz
[edit]
[-] class-wp-roles.php.php.tar.gz
[edit]
[-] wp68.tar
[edit]
[-] vertice.zip
[edit]
[-] sched_rt_period_us.tar
[edit]
[-] class-IXR-value.php.tar
[edit]
[-] macros.tar
[edit]
[-] columns.zip
[edit]
[-] f9eb6f55bff16d0230cb9fbfa3c923526f815a.tar
[edit]
[-] ostic14.tar.gz
[edit]
[-] cd34e815189f3c1089db5cc3506b7bc1f58a7a.tar.gz
[edit]
[-] ccomplete.vim.vim.tar.gz
[edit]
[-] zip.vim.tar
[edit]
[-] fbb826a088de9723.tar.gz
[edit]
[-] 39efc797250ec716ad27df6214fa2581354112.tar.gz
[edit]
[-] fb43c3582de380aa.tar.gz
[edit]
[-] moodle50.zip
[edit]
[-] 1ecbfc5455df98bf.tar.gz
[edit]
[-] ediuae.rcube.db.1772035248.rcube.db.1772035248.tar.gz
[edit]
[-] legacy_willneed_readahead.tar.gz
[edit]
[-] 1e30381a0b9a4564.tar
[edit]
[-] upgrade.xml.xml.tar.gz
[edit]
[-] 968434c2cc6d7b342ab0330f42caeda2efb2b7.tar.gz
[edit]
[-] wp-embed-template.min.js.tar
[edit]
[-] keys.zip
[edit]
[-] customize-nav-menus-rtl.css.css.tar.gz
[edit]
[-] e954fb492fa6b9bec56ced7c2d0c8d79601273.tar
[edit]
[-] git-core.tar
[edit]
[-] .info@nakaafi_com.zip
[edit]
[-] var.zip
[edit]
[-] b6951_7e06d_bdb32a62b867511ef24c766ccc534dcb.key.tar
[edit]
[-] dashboard.php.php.tar.gz
[edit]
[-] 37da55ec240be33881399042f43d653e1df8ab.tar
[edit]
[-] 1ed9fba8497a7076.tar
[edit]
[-] embed.tar
[edit]
[-] 5.zip
[edit]
[-] 9631590b17e830a2.tar.gz
[edit]
[-] 69b56cdba7e41111.tar.gz
[edit]
[-] colibri.tar.gz
[edit]
[-] certs.zip
[edit]
[-] images.zip
[edit]
[-] 326e7771c87465701a432b891d90a0e801c937.tar.gz
[edit]
[-] cron.php.tar
[edit]
[-] link-template.php.php.tar.gz
[edit]
[-] sqlcomplete.vim.tar
[edit]
[-] plugins.php.php.tar.gz
[edit]
[-] sidu.tar
[edit]
[-] general-template.php.tar
[edit]
[-] efb6d5fa1db3e1b0.tar
[edit]
[-] customize-controls.css.tar
[edit]
[-] c369431dfc3ff979.tar.gz
[edit]
[-] file.php.php.tar.gz
[edit]
[-] python3.8.zip
[edit]
[-] 9d7f1ef20b6388ae.tar.gz
[edit]
[-] 0d76c2ad3d7766a3dda71826b546af4b0dd92d.tar.gz
[edit]
[-] 708750fc874605ec6ee3265892a3bbdf4c13f3.tar.gz
[edit]
[-] .buddhi@ediuae_com.tar.gz
[edit]
[-] comments-pagination.tar.gz
[edit]
[-] utils.js.js.tar.gz
[edit]
[-] module.tag.apetag.php.tag.apetag.php.tar.gz
[edit]
[-] tinymce.tar
[edit]
[-] sendmail.tar
[edit]
[-] class-walker-comment.php.tar
[edit]
[-] misc.php.php.tar.gz
[edit]
[-] 8ba4d36bb05aacb5.tar
[edit]
[-] 3f1c82b95f9744a00f89306797e6811823ffbf.tar.gz
[edit]
[-] petalwellnessspa.com.zip
[edit]
[-] 9a80d4afb3572a2a.tar.gz
[edit]
[-] ui.tar.gz
[edit]
[-] site-health-rtl.css.css.tar.gz
[edit]
[-] c280762f6169f9f59db12fcef61df0bd9e6b7b.tar.gz
[edit]
[-] admin-bar.min.css.min.css.tar.gz
[edit]
[-] link-add.php.tar
[edit]
[-] pramod@ediuae.com.zip
[edit]
[-] php71.zip
[edit]
[-] class-wp-block-parser-frame.php.tar
[edit]
[-] 1e26149ee771237d.tar.gz
[edit]
[-] git-am.tar
[edit]
[-] ed02d81f4b4a5034.tar
[edit]
[-] 4dd6bb488dde761577de12d347e01a89710c5d.tar.gz
[edit]
[-] 1e661829f40ba59e.tar
[edit]
[-] 5e72248bc1e230d83a7c22353a8fcb71331820.tar
[edit]
[-] desktop-file-utils.zip
[edit]
[-] streams.php.tar
[edit]
[-] heartbeat.js.js.tar.gz
[edit]
[-] block.php.tar
[edit]
[-] custom-header.js.js.tar.gz
[edit]
[-] comment-author-name.php.tar
[edit]
[-] ea90acff93f35c0f.tar.gz
[edit]
[-] .sharing.sharing.tar.gz
[edit]
[-] category-template.php.tar
[edit]
[-] www.zip
[edit]
[-] category.php.tar
[edit]
[-] 1e88c8d6fa9a1649.tar.gz
[edit]
[-] certificates.zip
[edit]
[-] Cpanel::MysqlRun::running.tar
[edit]
[-] category-template.php.php.tar.gz
[edit]
[-] patchfs.tar.gz
[edit]
[-] 8ee721bd4341654e.tar
[edit]
[-] site-health.min.css.tar
[edit]
[-] f94425fbdc3490b7dd2f5f3bd2736f312b2288.tar
[edit]
[-] 378ba9a938ad0e4c.tar.gz
[edit]
[-] sparc64-linux.tar.gz
[edit]
[-] awstats012025.ediuae.com.txt.ediuae.com.txt.tar.gz
[edit]
[-] comment-edit-link.zip
[edit]
[-] 1e28dfdf67124cc8.tar.gz
[edit]
[-] alphaev6-linux.zip
[edit]
[-] fb841642fa6bd510.tar
[edit]
[-] yes.png.png.tar.gz
[edit]
[-] custom-html-widgets.js.js.tar.gz
[edit]
[-] 1ef9552009b657bc.tar
[edit]
[-] a1d5f7a6c7710127.tar.gz
[edit]
[-] accelerator-performance.zip
[edit]
[-] max_resvport.tar.gz
[edit]
[-] 6.tar.gz
[edit]
[-] 1ff01c7da511df36.tar
[edit]
[-] easyapmt.zip
[edit]
[-] certificates.tar
[edit]
[-] footer.php.php.tar.gz
[edit]
[-] 3775c6d4e1475137.tar
[edit]
[-] nvdata.tar.gz
[edit]
[-] 1e9a0fad9b4b64e9.tar.gz
[edit]
[-] .cache.zip
[edit]
[-] aadda7f25f62de0e.tar.gz
[edit]
[-] widget-group.php.php.tar.gz
[edit]
[-] ms-sites.php.php.tar.gz
[edit]
[-] modern.tar.gz
[edit]
[-] modern.tar
[edit]
[-] 995eabf7aae831b5a0a626780264e8fcbfbd43.tar.gz
[edit]
[-] inline-edit-tax.js.js.tar.gz
[edit]
[-] network.zip
[edit]
[-] media-video-widget.js.tar
[edit]
[-] block-editor.tar
[edit]
[-] fb4df753d8bd5414.tar.gz
[edit]
[-] list-tables-rtl.min.css.min.css.tar.gz
[edit]
[-] git-version.tar.gz
[edit]
[-] fafcb160932ddc8d1f25c34104040214a1ecd2.tar.gz
[edit]
[-] b84a195ae7bfa727b50963e04e95db13ee54cc.tar.gz
[edit]
[-] settings.php.php.tar.gz
[edit]
[-] aaeacd3eac592b3d.tar.gz
[edit]
[-] media-button-other.gif.tar
[edit]
[-] 8489a8dddce75e53fbaf948a62a632829b3054.tar
[edit]
[-] b5af10c4791d55f2.tar
[edit]
[-] b6951_7e06d_bdb32a62b867511ef24c766ccc534dcb.key.key.tar.gz
[edit]
[-] install-rtl.min.css.min.css.tar.gz
[edit]
[-] custom-background.js.tar
[edit]
[-] 1f9a183086719936.tar.gz
[edit]
[-] deprecated-media-rtl.min.css.min.css.tar.gz
[edit]
[-] car.txt.tar
[edit]
[-] fb9cc102678c8d0b.tar.gz
[edit]
[-] b.tar.gz
[edit]
[-] fc22c552e47c6bcd8a2a42dcbd7460691e8382.tar
[edit]
[-] json2.min.js.tar
[edit]
[-] fb5dd8892c810424.tar.gz
[edit]
[-] e8478e185382c798ead889cde88c828cf45451.tar
[edit]
[-] hello@ediuae.com.tar
[edit]
[-] class-wp-sitemaps.php.tar
[edit]
[-] post-template.tar
[edit]
[-] jcrop.zip
[edit]
[-] a0849bfa8dce24af83853b4cf32a2140d7486e.tar.gz
[edit]
[-] widgets.js.js.tar.gz
[edit]
[-] wp-lists.js.tar
[edit]
[-] fb045aa2c3295588.tar
[edit]
[-] 4.zip
[edit]
[-] 1ebd169bdb7975b2.tar
[edit]
[-] imgedit-icons-2x.png.tar
[edit]
[-] code-editor.css.tar
[edit]
[-] .cl.selector.tar.gz
[edit]
[-] feed-rdf.php.php.tar.gz
[edit]
[-] 606da8f45cc0cf62.tar.gz
[edit]
[-] IXR.tar
[edit]
[-] alt-nodejs9_native.req.tar
[edit]
[-] unb.tar
[edit]
[-] 1e0b0fadcbc6869e.tar.gz
[edit]
[-] nav-menu.php.tar
[edit]
[-] c767394c78592950.tar.gz
[edit]
[-] kmod.prov.tar
[edit]
[-] c184a9c4cd99f86eb39e034ea2ea5106c07775.tar
[edit]
[-] autosave.min.js.tar
[edit]
[-] 8e2a7ccd877738b6.tar.gz
[edit]
[-] e6e696ad7010ee7e.tar.gz
[edit]
[-] class-walker-category-dropdown.php.tar
[edit]
[-] registration-functions.php.php.tar.gz
[edit]
[-] man.zip
[edit]
[-] owa.tar.gz
[edit]
[-] 1e90033b42738ee6.tar.gz
[edit]
[-] wp-ajax-response.min.js.tar
[edit]
[-] af4a9090ae8adcb7.tar.gz
[edit]
[-] class-wp-navigation-fallback.php.tar
[edit]
[-] member.tar.gz
[edit]
[-] buttons.tar
[edit]
[-] imagesloaded.min.js.tar
[edit]
[-] sitemaps.php.php.tar.gz
[edit]
[-] .wget-hsts.tar
[edit]
[-] block-library.zip
[edit]
[-] default-filters.php.php.tar.gz
[edit]
[-] password-toggle.js.tar
[edit]
[-] c7e85ffbb3bbe011.tar.gz
[edit]
[-] 2ea461c70d150607.tar
[edit]
[-] wordpress-logo.png.png.tar.gz
[edit]
[-] dovecot.index.cache.tar
[edit]
[-] misc.php.tar
[edit]
[-] bfde92ffb74cbee7.tar
[edit]
[-] servers.catalogue.lst.catalogue.lst.tar.gz
[edit]
[-] svg-painter.js.tar
[edit]
[-] edit-form-advanced.php.tar
[edit]
[-] class-walker-category.php.php.tar.gz
[edit]
[-] wp-auth-check.js.tar
[edit]
[-] hebrew_cp1255.vim.vim.tar.gz
[edit]
[-] help.fi.txt.tar
[edit]
[-] missing.zip
[edit]
[-] comment-reply.min.js.tar
[edit]
[-] king-addons.tar
[edit]
[-] cc630a89ebb355a244e9006e9a78eb8d44df33.tar.gz
[edit]
[-] c7474d0b435fe10f.tar
[edit]
[-] ef9320ede9b5071e.tar
[edit]
[-] 1.tar.gz
[edit]
[-] abilities-api.php.tar
[edit]
[-] ms-functions.php.tar
[edit]
[-] new.tar.gz
[edit]
[-] thickbox.tar
[edit]
[-] 6c4bbe74cf2f9d5bbeaf0d7ae5033456b704ef.tar.gz
[edit]
[-] a5a7673c9a5c5705.tar.gz
[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]
[-] afa6ee914cebee02.tar
[edit]
[-] 7.tar.gz
[edit]
[-] comment.js.tar
[edit]
[-] a41781dd11d419a1f419ac345e5d67d611480b.tar
[edit]
[-] a1dfc4766171a93de1e6c8e5c46b80611b2f85.tar
[edit]
[-] 66347d4412336f91.tar.gz
[edit]
[-] fonts.php.php.tar.gz
[edit]
[-] library.zip
[edit]
[-] css.tar.gz
[edit]
[-] ea-libicu.tar
[edit]
[-] colors.php.php.tar.gz
[edit]
[-] 348ebda4f07fc3b8.tar
[edit]
[-] media-views.css.tar
[edit]
[-] c572bcffaf6da538ba8147260c281af3585fd7.tar.gz
[edit]
[-] media-upload.min.js.min.js.tar.gz
[edit]
[-] sort-2x.gif.tar
[edit]
[-] 6a6850accf6958ba8a80ac9f9a202fbb327294.tar
[edit]
[-] 5127124cd44a3302d19bb3aae6f7b5961660d2.tar.gz
[edit]
[-] class-wp-duotone.php.php.tar.gz
[edit]
[-] adddbc6f283afe76.tar
[edit]
[-] ef5494240064c5fc0f0d3abeff460ddad33636.tar.gz
[edit]
[-] wp-emoji.min.js.tar
[edit]
[-] class-wp-image-editor.php.php.tar.gz
[edit]
[-] 410abc1074.php.tar
[edit]
[-] af4ce25b6c012fa8.tar.gz
[edit]
[-] a05b90570b47d587d935371275576c84d70545.tar.gz
[edit]
[-] dbe32dceb80654422140fb7641f732065999c8.tar.gz
[edit]
[-] customize-widgets-rtl.min.css.min.css.tar.gz
[edit]
[-] awstats.eliteroyalcrown.com.ediuae.com.conf.tar
[edit]
[-] 1efc3a656988093f.tar.gz
[edit]
[-] align-left.png.tar
[edit]
[-] block-editor.tar.gz
[edit]
[-] bashrc.tar
[edit]
[-] Cache.tar.gz
[edit]
[-] term-count.php.tar
[edit]
[-] .htaccess.bk.tar
[edit]
[-] site-logo.tar
[edit]
[-] fb9c539d6d2a8707.tar
[edit]
[-] ea32aa6f444462f9.tar.gz
[edit]
[-] wp.26_10486.2026-03-20_15-02-57.tar
[edit]
[-] fb856733efca7e36.tar
[edit]
[-] media-upload.js.tar
[edit]
[-] block-library.tar
[edit]
[-] site-health.js.js.tar.gz
[edit]
[-] user-suggest.js.js.tar.gz
[edit]
[-] 1ead9cd02d1b84d4.tar
[edit]
[-] 1a19f412efc02f4538f9a4c2a941a9376e7c30.tar.gz
[edit]
[-] 26718411a9da3f2fb300c313eca400ac7615fb.tar.gz
[edit]
[-] class-wp-rewrite.php.php.tar.gz
[edit]
[-] install-rtl.min.css.tar
[edit]
[-] awstats.test.ediuae.com.conf.tar
[edit]
[-] 09b2c1ddfdb628a85970f411c7e5c6ffa1711a.tar
[edit]
[-] 5.tar.gz
[edit]
[-] dashicons.woff.tar
[edit]
[-] 1250e05d2608357b.tar.gz
[edit]
[-] info@agrivaingredients.com.tar.gz
[edit]
[-] class-wp-oembed-controller.php.tar
[edit]
[-] e6676560d13ad608.tar.gz
[edit]
[-] f6a1f9a4b34abb3bd48c9e72a18813a540181d.tar
[edit]
[-] post-title.zip
[edit]
[-] gayan.zip
[edit]
[-] rss.tar.gz
[edit]