X7ROOT File Manager
Current Path:
/home/notabjze/crypfinite.com/wp-content/plugins/jetpack
home
/
notabjze
/
crypfinite.com
/
wp-content
/
plugins
/
jetpack
/
ðŸ“
..
ðŸ“
3rd-party
📄
CHANGELOG.md
(709.33 KB)
📄
LICENSE.txt
(17.98 KB)
📄
SECURITY.md
(2.45 KB)
ðŸ“
_inc
📄
class-jetpack-connection-status.php
(728 B)
📄
class-jetpack-gallery-settings.php
(3.38 KB)
📄
class-jetpack-newsletter-dashboard-widget.php
(389 B)
📄
class-jetpack-pre-connection-jitms.php
(2.34 KB)
📄
class-jetpack-stats-dashboard-widget.php
(7.47 KB)
📄
class-jetpack-xmlrpc-methods.php
(7.39 KB)
📄
class.frame-nonce-preview.php
(3.22 KB)
📄
class.jetpack-admin.php
(18.49 KB)
📄
class.jetpack-affiliate.php
(205 B)
📄
class.jetpack-autoupdate.php
(9.74 KB)
📄
class.jetpack-bbpress-json-api.compat.php
(220 B)
📄
class.jetpack-cli.php
(71.4 KB)
📄
class.jetpack-client-server.php
(2.62 KB)
📄
class.jetpack-gutenberg.php
(44.27 KB)
📄
class.jetpack-heartbeat.php
(4.55 KB)
📄
class.jetpack-modules-list-table.php
(14.79 KB)
📄
class.jetpack-network-sites-list-table.php
(5.98 KB)
📄
class.jetpack-network.php
(21.07 KB)
📄
class.jetpack-plan.php
(4.09 KB)
📄
class.jetpack-post-images.php
(36.7 KB)
📄
class.jetpack-twitter-cards.php
(12.92 KB)
📄
class.jetpack-user-agent.php
(25.3 KB)
📄
class.jetpack.php
(203.04 KB)
📄
class.json-api-endpoints.php
(90.88 KB)
📄
class.json-api.php
(37.32 KB)
📄
class.photon.php
(1.74 KB)
📄
composer.json
(4.08 KB)
ðŸ“
css
📄
enhanced-open-graph.php
(4.35 KB)
ðŸ“
extensions
📄
functions.compat.php
(4.3 KB)
📄
functions.cookies.php
(2.04 KB)
📄
functions.global.php
(15.38 KB)
📄
functions.is-mobile.php
(2.47 KB)
📄
functions.opengraph.php
(21.38 KB)
📄
functions.photon.php
(3.04 KB)
📄
global.d.ts
(48 B)
ðŸ“
images
📄
jetpack.php
(8.57 KB)
ðŸ“
jetpack_vendor
📄
json-api-config.php
(338 B)
ðŸ“
json-endpoints
📄
json-endpoints.php
(6.92 KB)
📄
load-jetpack.php
(3.1 KB)
📄
locales.php
(324 B)
ðŸ“
modules
📄
readme.txt
(33.55 KB)
ðŸ“
sal
ðŸ“
src
📄
unauth-file-upload.php
(5.18 KB)
📄
uninstall.php
(1.6 KB)
ðŸ“
vendor
ðŸ“
views
📄
wpml-config.xml
(1.26 KB)
Editing: functions.is-mobile.php
<?php // phpcs:ignore WordPress.Files.FileName.NotHyphenatedLowercase /** * This file holds a function that needs to be loaded before WordPress itself * on WordPress.com. * * @package automattic/jetpack */ use Automattic\Jetpack\Device_Detection; /** * Determine if the current User Agent matches the passed $kind * * @param string $kind Category of mobile device to check for. * Either: any, dumb, smart. * @param bool $return_matched_agent Boolean indicating if the UA should be returned. * * @return bool|string Boolean indicating if current UA matches $kind. If * $return_matched_agent is true, returns the UA string */ function jetpack_is_mobile( $kind = 'any', $return_matched_agent = false ) { if ( function_exists( 'apply_filters' ) ) { /** * Filter the value of jetpack_is_mobile before it is calculated. * * Passing a truthy value to the filter will short-circuit determining the * mobile type, returning the passed value instead. * * @since 4.2.0 * * @param bool|string $matches Boolean if current UA matches $kind or not. If * $return_matched_agent is true, should return the UA string * @param string $kind Category of mobile device being checked * @param bool $return_matched_agent Boolean indicating if the UA should be returned */ $pre = apply_filters( 'pre_jetpack_is_mobile', null, $kind, $return_matched_agent ); if ( $pre ) { return $pre; } } $return = false; $device_info = Device_Detection::get_info(); if ( 'any' === $kind ) { $return = $device_info['is_phone']; } elseif ( 'smart' === $kind ) { $return = $device_info['is_smartphone']; } elseif ( 'dumb' === $kind ) { $return = $device_info['is_phone'] && ! $device_info['is_smartphone']; } if ( $return_matched_agent && true === $return ) { $return = $device_info['is_phone_matched_ua']; } if ( function_exists( 'apply_filters' ) ) { /** * Filter the value of jetpack_is_mobile * * @since 4.2.0 * * @param bool|string $matches Boolean if current UA matches $kind or not. If * $return_matched_agent is true, should return the UA string * @param string $kind Category of mobile device being checked * @param bool $return_matched_agent Boolean indicating if the UA should be returned */ $return = apply_filters( 'jetpack_is_mobile', $return, $kind, $return_matched_agent ); } return $return; }
Upload File
Create Folder