HEX
Server: Apache
System: Linux webd003.cluster128.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
User: slyfwmm (169339)
PHP: 8.1.34
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/slyfwmm/pianob/wp-content/plugins/cmssuperheroes/includes/cms_shortcodes.php
<?php
/* Add extra type on visual composer */
require_once CMS_INCLUDES.'types/cms_template.php';
require_once CMS_INCLUDES.'types/cms_template_img.php';
require_once CMS_INCLUDES.'types/img.php';
require_once CMS_INCLUDES . '/fontlibs/pe7stroke.php';
require_once CMS_INCLUDES . '/fontlibs/rticon.php';
//require_once CMS_INCLUDES . '/fontlibs/glyphicons.php';
/* Get List Shortcodes From Folder*/
require_once CMS_DIR . '/shortcodes/cms_base.php';
//Start adding shortcode

function cms_add_more_shortcode(){
	$shortcodes = array(
	'cms_carousel',
	'cms_grid',
	'cms_fancybox',
	'cms_fancybox_single',
	'cms_counter',
	'cms_progressbar',
	);
	$shortcodes = apply_filters('cms-shorcode-list', $shortcodes);
	foreach($shortcodes as $shortcode){
		require_once CMS_DIR . '/shortcodes/'.$shortcode.'.php';
	}
}
add_action('vc_after_init', 'cms_add_more_shortcode' , 10);

/**
 * Fix Theme Check add_shortcode 
 * when use vc_add_shortcode_param
*/
function vc_add_elements_param($name, $form_field_callback, $script_url = null){
	return vc_add_shortcode_param( $name, $form_field_callback, $script_url = null );
}