File "FrmDirectionStyleComponent.php"

Full Path: /home/adniftyx/public_html/wp-content/plugins/formidable/classes/views/styles/components/FrmDirectionStyleComponent.php
File size: 635 bytes
MIME-type: text/x-php
Charset: utf-8

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

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

	/**
	 * Construct FrmDirectionStyleComponent.
	 *
	 * @since 6.14
	 *
	 * @param string $field_name  Field name attribute.
	 * @param mixed  $field_value Current field value.
	 * @param array  $data        Additional component data.
	 */
	public function __construct( $field_name, $field_value, $data ) {
		$this->init( $data, $field_name, $field_value );
	}
}