Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
democracyforfuture /
wp-admin /
includes /
Delete
Unzip
Name
Size
Permission
Date
Action
ajax-actions.php
134.33
KB
-rw-r--r--
2019-10-01 16:28
class-automatic-upgrader-skin.php
3.07
KB
-rw-r--r--
2018-08-17 01:51
class-bulk-plugin-upgrader-skin.php
2.01
KB
-rw-r--r--
2018-08-30 13:36
class-bulk-theme-upgrader-skin.php
2.04
KB
-rw-r--r--
2018-08-30 13:36
class-bulk-upgrader-skin.php
5.18
KB
-rw-r--r--
2018-03-11 16:44
class-file-upload-upgrader.php
3.29
KB
-rw-r--r--
2017-11-30 23:11
class-ftp-pure.php
5.27
KB
-rw-r--r--
2019-03-17 01:20
class-language-pack-upgrader-skin.php
2.31
KB
-rw-r--r--
2018-08-30 13:36
class-language-pack-upgrader.php
14.38
KB
-rw-r--r--
2019-01-21 21:13
class-plugin-upgrader-skin.php
2.62
KB
-rw-r--r--
2018-03-22 20:27
class-theme-installer-skin.php
4.33
KB
-rw-r--r--
2018-08-30 13:36
class-theme-upgrader-skin.php
3.75
KB
-rw-r--r--
2018-08-30 13:36
class-walker-category-checklist.php
4.16
KB
-rw-r--r--
2017-11-30 23:11
class-walker-nav-menu-checklist.php
4.9
KB
-rw-r--r--
2018-08-30 13:36
class-wp-ajax-upgrader-skin.php
2.97
KB
-rw-r--r--
2018-02-27 02:31
class-wp-community-events.php
15.58
KB
-rw-r--r--
2018-06-28 02:34
class-wp-importer.php
7.35
KB
-rw-r--r--
2018-03-02 17:17
class-wp-links-list-table.php
7.57
KB
-rw-r--r--
2021-04-15 04:01
class-wp-media-list-table.php
22.37
KB
-rw-r--r--
2019-04-08 23:54
class-wp-ms-sites-list-table.php
15.48
KB
-rw-r--r--
2018-08-17 01:51
class-wp-ms-themes-list-table.php
20.06
KB
-rw-r--r--
2018-08-17 01:51
class-wp-post-comments-list-table.php
1.44
KB
-rw-r--r--
2018-08-17 01:51
class-wp-site-health-auto-updates.php
12.22
KB
-rw-r--r--
2019-05-01 18:08
class-wp-site-health.php
59.59
KB
-rw-r--r--
2019-05-17 11:56
class-wp-themes-list-table.php
9.31
KB
-rw-r--r--
2019-04-01 11:55
class-wp-upgrader-skin.php
5.04
KB
-rw-r--r--
2019-03-21 18:03
class-wp-upgrader-skins.php
1.42
KB
-rw-r--r--
2016-12-03 03:40
class-wp-users-list-table.php
17.13
KB
-rw-r--r--
2019-01-12 06:41
continents-cities.php
20.26
KB
-rw-r--r--
2018-07-18 11:21
credits.php
2.16
KB
-rw-r--r--
2017-11-30 23:11
edit-tag-messages.php
1.38
KB
-rw-r--r--
2017-11-30 23:11
image-edit.php
33.9
KB
-rw-r--r--
2019-03-01 20:58
misc.php
72.5
KB
-rw-r--r--
2020-10-29 20:52
ms-admin-filters.php
1.34
KB
-rw-r--r--
2017-11-30 23:11
taxonomy.php
7.73
KB
-rw-r--r--
2018-03-25 19:35
user.php
51.58
KB
-rw-r--r--
2019-04-13 18:08
Save
Rename
<?php /** * Upgrader API: Language_Pack_Upgrader_Skin class * * @package WordPress * @subpackage Upgrader * @since 4.6.0 */ /** * Translation Upgrader Skin for WordPress Translation Upgrades. * * @since 3.7.0 * @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php. * * @see WP_Upgrader_Skin */ class Language_Pack_Upgrader_Skin extends WP_Upgrader_Skin { public $language_update = null; public $done_header = false; public $done_footer = false; public $display_footer_actions = true; /** * @param array $args */ public function __construct( $args = array() ) { $defaults = array( 'url' => '', 'nonce' => '', 'title' => __( 'Update Translations' ), 'skip_header_footer' => false, ); $args = wp_parse_args( $args, $defaults ); if ( $args['skip_header_footer'] ) { $this->done_header = true; $this->done_footer = true; $this->display_footer_actions = false; } parent::__construct( $args ); } /** */ public function before() { $name = $this->upgrader->get_name_for_update( $this->language_update ); echo '<div class="update-messages lp-show-latest">'; /* translators: 1: name of project, 2: language */ printf( '<h2>' . __( 'Updating translations for %1$s (%2$s)…' ) . '</h2>', $name, $this->language_update->language ); } /** * @param string|WP_Error $error */ public function error( $error ) { echo '<div class="lp-error">'; parent::error( $error ); echo '</div>'; } /** */ public function after() { echo '</div>'; } /** */ public function bulk_footer() { $this->decrement_update_count( 'translation' ); $update_actions = array(); $update_actions['updates_page'] = '<a href="' . self_admin_url( 'update-core.php' ) . '" target="_parent">' . __( 'Return to WordPress Updates page' ) . '</a>'; /** * Filters the list of action links available following a translations update. * * @since 3.7.0 * * @param string[] $update_actions Array of translations update links. */ $update_actions = apply_filters( 'update_translations_complete_actions', $update_actions ); if ( $update_actions && $this->display_footer_actions ) { $this->feedback( implode( ' | ', $update_actions ) ); } } }