HEX
Server: LiteSpeed
System: Linux premium221.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
User: madepabj (2566)
PHP: 8.3.26
Disabled: NONE
Upload Files
File: //home/madepabj/www/wp-content/themes/rehub-theme/shortcodes/tinyMCE/includes/categorizator.php
<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?>

<script data-cfasync="false">

// executes this when the DOM is ready
jQuery(document).ready(function() { 
	// handles the click event of the submit button
	jQuery('#submit').click(function(){

		var options = { 
			'exclude' : '',
			'include' : '',
			'col' : '',			
		};	

		var shortcode = '[wpsm_categorizator';	
		for( var index in options) {
			var value = jQuery('#form').find('#button-' + index).val();
			if ( value !== '' )
				shortcode += ' ' + index + '="' + value + '"'; 	
		}	
		shortcode += ']';    
		
		// inserts the shortcode into the active editor
		window.send_to_editor(shortcode);
		
		
		// closes Thickbox
		tb_remove();
	});

}); 
</script>
<form action="/" method="get" id="form" name="form" accept-charset="utf-8">
<div>
	<p><?php esc_html_e('By default categories directory shows all categories, but you can exclude or include by Ids', 'rehub-theme') ;?></p>
    <p>
        <label><?php esc_html_e('Exclude categories', 'rehub-theme') ;?></label>
        <input type="text" name="button-exclude" value="" id="button-exclude" /><br />
        <small><?php esc_html_e('Set ids of categories which you want to exclude (example: 22,34)', 'rehub-theme') ;?></small>
    </p>
	<div class="clear"></div>
    <p>
        <label><?php esc_html_e('Include categories', 'rehub-theme') ;?></label>
        <input type="text" name="button-include" value="" id="button-include" /><br />
        <small><?php esc_html_e('Set ids of categories which you want to include (example: 22,34)', 'rehub-theme') ;?></small>
    </p>
	<div class="clear"></div>	
    <p>
        <label><?php esc_html_e('Columns to show', 'rehub-theme') ;?></label>
        <select name="button-col" id="button-col" size="1">
            <option value="3" selected="selected"><?php esc_html_e('3 columns', 'rehub-theme') ;?></option>
            <option value="4"><?php esc_html_e('4 columns', 'rehub-theme') ;?></option>
        </select>
    </p>
	<div class="clear"></div>
</div>
	 <p>
        <label>&nbsp;</label>
        <input type="button" name="submit" value="<?php esc_html_e('Insert', 'rehub-theme') ;?>" class="button" id="submit">
    </p>	
</form>