HEX
Server: Apache/2.4.41
System: Linux mainweb 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC 2024 x86_64
User: nationalmedicaregrp (1119)
PHP: 8.3.7
Disabled: exec,passthru,shell_exec,system,popen,proc_open,pcntl_exec
Upload Files
File: /home/mjlclaims/public_html/wp-content/plugins/coblocks/src/blocks/icon/index.php
<?php
/**
 * Server-side rendering of the `coblocks/icon` block.
 *
 * @package CoBlocks
 */

/**
 * Renders the block on server.
 *
 * @param array $attrs The block attributes.
 *
 * @return string Returns the block content.
 */
function coblocks_render_icon_block( $attrs ) {
	if ( ! is_array( $attrs ) ) {
		$attrs = array();
	}

	$wrapper_classes = array(
		'wp-block-coblocks-icon',
		! empty( $attrs['contentAlign'] ) ? "has-text-align-{$attrs['contentAlign']}" : false,
		! empty( $attrs['className'] ) ? $attrs['className'] : false,
	);

	$icon_color_class = ! empty( $attrs['iconColor'] )
		? _wp_to_kebab_case( $attrs['iconColor'] )
		: false;

	$background_color_class = ! empty( $attrs['backgroundColor'] )
		? _wp_to_kebab_case( $attrs['backgroundColor'] )
		: false;

	$inner_classes = array(
		'wp-block-coblocks-icon__inner',
		$background_color_class ? "has-{$background_color_class}-background-color" : false,
		( ! empty( $attrs['backgroundColor'] ) || ! empty( $attrs['customBackgroundColor'] ) ) ? 'has-background' : false,
		( ! empty( $attrs['iconColor'] ) || ! empty( $attrs['customIconColor'] ) ) ? 'has-text-color' : false,
		$icon_color_class ? "has-{$icon_color_class}-color" : false,
	);

	$color_styles = array(
		! empty( $attrs['customBackgroundColor'] ) ? "background-color: {$attrs['customBackgroundColor']};" : false,
		! empty( $attrs['customIconColor'] ) ? "color: {$attrs['customIconColor']}; fill: {$attrs['customIconColor']};" : false,
	);

	$inner_styles = array(
		! empty( $attrs['borderRadius'] ) ? "border-radius: {$attrs['borderRadius']}px;" : false,
		! empty( $attrs['height'] ) ? "height: {$attrs['height']}px;" : false,
		! empty( $attrs['padding'] ) ? "padding: {$attrs['padding']}px;" : false,
		! empty( $attrs['width'] ) ? "width: {$attrs['width']}px;" : false,
	);

	// If there is no anchor put the color styles on the outer div.
	if ( empty( $attrs['href'] ) ) {
		$inner_styles = array_merge( $inner_styles, $color_styles );
	}

	$color_styles    = implode( ' ', array_filter( $color_styles ) );
	$wrapper_classes = implode( ' ', array_filter( $wrapper_classes ) );
	$inner_classes   = implode( ' ', array_filter( $inner_classes ) );
	$inner_styles    = implode( ' ', array_filter( $inner_styles ) );

	// Icon fetch.
	$icon_style       = '-outlined';
	$icon_name        = _wp_to_kebab_case( $attrs['icon'] );
	$icon_path        = COBLOCKS_PLUGIN_DIR . "src/blocks/icon/svgs/$icon_name";
	$custom_icon_path = get_stylesheet_directory() . "/coblocks/icons/$icon_name";
	$icon             = '';

	if ( isset( $attrs['className'] ) && false !== strpos( $attrs['className'], 'is-style-filled' ) ) {
		// Filled doesn't have an extension. Only outlined does. Legacy behavior.
		$icon_style = '';
		$icon_name  = $attrs['icon'];
	}

	$custom_icon_path = is_readable( "$custom_icon_path$icon_style.svg" ) ? "$custom_icon_path$icon_style.svg" : $custom_icon_path . '.svg';
	$icon_path        = is_readable( "$icon_path$icon_style.svg" ) ? "$icon_path$icon_style.svg" : $icon_path . '.svg';

	if ( is_readable( $custom_icon_path ) ) {
		// phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents
		$icon = file_get_contents( $custom_icon_path );
	} elseif ( is_readable( $icon_path ) ) {
		// phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents
		$icon = file_get_contents( $icon_path );
	}

	if ( ! empty( $attrs['href'] ) ) {
		$icon = sprintf(
			'<a href="%1$s" rel="%2$s" target="%3$s" style="%4$s">%5$s</a>',
			$attrs['href'],
			! empty( $attrs['rel'] ) ? esc_attr( $attrs['rel'] ) : '',
			! empty( $attrs['linkTarget'] ) ? esc_attr( $attrs['linkTarget'] ) : '_self',
			esc_attr( $color_styles ), // To make sure the color gets to the svg when there is an anchor.
			$icon
		);
	}

	return trim(
		sprintf(
			'
			<div class="%1$s">
				<div class="%2$s" style="%3$s">
					%4$s
				</div>
			</div>
			',
			esc_attr( $wrapper_classes ),
			esc_attr( $inner_classes ),
			esc_attr( $inner_styles ),
			$icon
		)
	);
}

/**
 * Registers the block on server.
 */
function coblocks_register_icon_block() {
	if ( ! function_exists( 'register_block_type' ) ) {
		return;
	}

	register_block_type(
		COBLOCKS_PLUGIN_DIR . 'src/blocks/icon',
		array(
			'render_callback' => 'coblocks_render_icon_block',
		)
	);
}
add_action( 'init', 'coblocks_register_icon_block' );