X7ROOT File Manager
Current Path:
/home/notabjze/usahomesolar.org/wp-content/plugins/jetpack
home
/
notabjze
/
usahomesolar.org
/
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: class-jetpack-pre-connection-jitms.php
<?php /** * Jetpack's Pre-Connection JITMs class. * * @deprecated 13.3 * * @package jetpack */ use Automattic\Jetpack\Redirect; /** * Jetpack's Pre-Connection JITMs. These can be displayed with the JITM package. * * @deprecated 13.3 */ class Jetpack_Pre_Connection_JITMs { /** * Returns all the pre-connection messages. * * @deprecated 13.3 * * @return array An array containing the pre-connection JITM messages. */ private function get_raw_messages() { _deprecated_function( __METHOD__, 'jetpack-13.3' ); return array(); } /** * Generate a description text with links to ToS documents. * * Those messages must mention the ToS agreement message, * but do not use the standard message defined in jetpack_render_tos_blurb. * Instead, they use their own custom messages. * * @deprecated 13.3 * * @param string $description Description string with placeholders. * * @return string */ private function generate_description_with_tos( $description ) { return sprintf( wp_kses( $description, array( 'a' => array( 'href' => array(), 'target' => array(), 'rel' => array(), ), 'strong' => true, ) ), esc_url( Redirect::get_url( 'wpcom-tos' ) ), esc_url( Redirect::get_url( 'jetpack-support-what-data-does-jetpack-sync' ) ) ); } /** * Returns partnership related pre-connection messages. * * @since 10.4 * * @deprecated 13.3 * * @return array An array containing the pre-connection JITM messages. */ private function maybe_get_raw_partnership_messages() { _deprecated_function( __METHOD__, 'jetpack-13.3' ); return array(); } /** * Adds the input query arguments to the admin url. * * @deprecated 13.3 * * @param array $args The query arguments. * * @return string The admin url. */ private function generate_admin_url( $args ) { $url = add_query_arg( $args, admin_url( 'admin.php' ) ); return $url; } /** * Add the Jetpack pre-connection JITMs to the list of pre-connection JITM messages. * * @deprecated 13.3 * * @param array $pre_connection_messages An array of pre-connection JITMs. * * @return array The array of pre-connection JITMs. */ public function add_pre_connection_jitms( $pre_connection_messages ) { _deprecated_function( __METHOD__, 'jetpack-13.3' ); return $pre_connection_messages; } }
Upload File
Create Folder