# propertyhive/2.2.2/includes/avada-widgets/property-epcs.php

Property Hive, version 2.2.2. 21 lines.

- Page: https://pluginprobe.com/plugins/propertyhive/2.2.2/code/includes/avada-widgets/property-epcs.php
- Raw: https://pluginprobe.com/plugins/propertyhive/2.2.2/raw/includes/avada-widgets/property-epcs.php
- Modified: 2025-04-01T10:48:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/propertyhive/2.2.2/code/includes/avada-widgets/property-epcs.php#L10-L20`.

```php
<?php

fusion_builder_map( array(
    'name'        => esc_attr__( $widget, 'propertyhive' ),
    'shortcode'   => 'avada_' . str_replace("-", "_", sanitize_title($widget)),
    'icon'        => 'fusiona-video', // Use a Fusion icon
    'preview'    => dirname( PH_PLUGIN_FILE ) . '/includes/avada-widgets/' . sanitize_title($widget) . '-preview.php',
	'preview_id' => 'fusion-builder-block-module-' . sanitize_title($widget) . '-preview-template',
    'params'      => array(
    	[
			'type'        => 'radio_button_set',
			'heading'     => esc_attr__( 'Show Title', 'fusion-builder' ),
			'param_name'  => 'show_title',
			'value'       => [
				'yes'  => esc_attr__( 'Yes', 'fusion-builder' ),
				'no' => esc_attr__( 'No', 'fusion-builder' ),
			],
			'default'     => 'yes',
		],
    ),
) );
```
