# formidable/6.24/classes/views/styles/components/FrmFieldShapeStyleComponent.php

Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes &amp; More, version 6.24. 25 lines.

- Page: https://pluginprobe.com/plugins/formidable/6.24/code/classes/views/styles/components/FrmFieldShapeStyleComponent.php
- Raw: https://pluginprobe.com/plugins/formidable/6.24/raw/classes/views/styles/components/FrmFieldShapeStyleComponent.php
- Modified: 2024-09-10T13:42:12+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/formidable/6.24/code/classes/views/styles/components/FrmFieldShapeStyleComponent.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}
class FrmFieldShapeStyleComponent extends FrmStyleComponent {

	/**
	 * The view file name.
	 *
	 * @since 6.14
	 *
	 * @var string
	 */
	protected $view_name = 'field-shape';

	/**
	 * Construct the FrmFieldShapeStyleComponent.
	 *
	 * @since 6.14
	 */
	public function __construct( $field_name, $field_value, $data ) {
		$this->init( $data, $field_name, $field_value );
	}
}

```
