HEX
Server: Apache/2.4.65 (Debian)
System: Linux web6 5.10.0-36-amd64 #1 SMP Debian 5.10.244-1 (2025-09-29) x86_64
User: innocamp (1028)
PHP: 7.4.33
Disabled: 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,
Upload Files
File: //home/cedarbrk/public_html/wp-content/plugins/plugin-organizer/tpl/search_plugins_js.php
<?php
global $wpdb;
if ( current_user_can( 'activate_plugins' ) ) {
	?>
	<script type="text/javascript" language="javascript">
		function PO_submit_search_plugins(){
			var disabledListForSubmit = {};
			var disabledMobileListForSubmit = {};
			var disabledGroupListForSubmit = {};
			var disabledMobileGroupListForSubmit = {};

			jQuery('.PO-disabled-std-plugin-list').each(function() {
				var roleName = jQuery(this).prop('name').replace('PO_disabled_std_plugin_list[', '').replace('][]', '');
				if (typeof(disabledListForSubmit[roleName]) == 'undefined' || disabledListForSubmit[roleName].constructor != Array) {
					disabledListForSubmit[roleName] = new Array();
				}
				disabledListForSubmit[roleName].push(jQuery(this).val());
			});
			
			jQuery('.PO-disabled-mobile-plugin-list').each(function() {
				var roleName = jQuery(this).prop('name').replace('PO_disabled_mobile_plugin_list[', '').replace('][]', '');
				if (typeof(disabledMobileListForSubmit[roleName]) == 'undefined' || disabledMobileListForSubmit[roleName].constructor != Array) {
					disabledMobileListForSubmit[roleName] = new Array();
				}
				disabledMobileListForSubmit[roleName].push(jQuery(this).val());
			});
			
			jQuery('.PO-disabled-std-group-list').each(function() {
				var roleName = jQuery(this).prop('name').replace('PO_disabled_std_group_list[', '').replace('][]', '');
				if (typeof(disabledGroupListForSubmit[roleName]) == 'undefined' || disabledGroupListForSubmit[roleName].constructor != Array) {
					disabledGroupListForSubmit[roleName] = new Array();
				}
				disabledGroupListForSubmit[roleName].push(jQuery(this).val());
			});
			
			jQuery('.PO-disabled-mobile-group-list').each(function() {
				var roleName = jQuery(this).prop('name').replace('PO_disabled_mobile_group_list[', '').replace('][]', '');
				if (typeof(disabledMobileGroupListForSubmit[roleName]) == 'undefined' || disabledMobileGroupListForSubmit[roleName].constructor != Array) {
					disabledMobileGroupListForSubmit[roleName] = new Array();
				}
				disabledMobileGroupListForSubmit[roleName].push(jQuery(this).val());
			});

			var postVars = { 'PO_disabled_std_plugin_list': disabledListForSubmit, 'PO_disabled_mobile_plugin_list': disabledMobileListForSubmit, 'PO_disabled_std_group_list': disabledGroupListForSubmit, 'PO_disabled_mobile_group_list': disabledMobileGroupListForSubmit, PO_nonce: '<?php print $this->PO->nonce; ?>' };
			PO_submit_ajax('PO_save_search_plugins', postVars, '#PO-search-plugins-container', function(){});
		}
	</script>
	<?php
}
?>