HEX
Server: Apache
System: Linux web15f49.uni5.net 5.4.282-1.el8.elrepo.x86_64 #1 SMP Mon Aug 19 18:33:22 EDT 2024 x86_64
User: hzaluminio (728004)
PHP: 7.0.33
Disabled: apache_child_terminate,c99_buff_prepare,c99_sess_put,dl,eval,exec,leak,link,myshellexec,openlog,passthru,pclose,pcntl_exec,php_check_syntax,php_strip_whitespace,popen,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,show_source,symlink,system,socket_listen,socket_create_listen,putenv
Upload Files
File: /home/hzaluminio/www/wp-content/plugins/Ebor-Framework-master/shortcodes/foundry-shortcodes.php
<?php 

if(!( function_exists('ebor_foundry_button') )){
	function ebor_foundry_button( $atts ){
		extract(shortcode_atts(array(
			'url' => '#',
		    'appearance' => 'btn-primary',
		    'target' => '_self',
		    'text' => 'Default Button Text'
		), $atts ));
		
		if( 'default' == $target )
			$target = '_self';
			
		return '<a href="'. esc_url($url) .'" class="btn '. $appearance .'" target="'. $target .'">'. htmlspecialchars_decode($text) .'</a>';
	}
	add_shortcode('foundry_button','ebor_foundry_button');
}

if(!( function_exists('ebor_foundry_icon') )){
	function ebor_foundry_icon( $atts ){
		extract(shortcode_atts(array(
			'icon' => '',
			'size' => ''
		), $atts ));
		return '<i class="icon '. $icon.' '. $size .'"></i>';
	}
	add_shortcode('foundry_icon','ebor_foundry_icon');
}

if(!( function_exists('ebor_foundry_skill') )){
	function ebor_foundry_skill( $atts ){
		extract(shortcode_atts(array(
			'icon' => '',
			'title' => ''
		), $atts ));
		return '<div class="col-sm-4"><i class="icon '. $icon .' text-white"></i><h2 class="text-white">'. htmlspecialchars_decode($title) .'</h2></div>';
	}
	add_shortcode('foundry_skill','ebor_foundry_skill');
}

if(!( function_exists('ebor_foundry_countdown') )){
	function ebor_foundry_countdown( $atts ){
		extract(shortcode_atts(array(
			'date' => '2016/02/02',
		), $atts ));
		return '<div class="countdown" data-date="'. $date .'"></div>';
	}
	add_shortcode('foundry_countdown','ebor_foundry_countdown');
}