| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { |
| 3 |
die( 'You are not allowed to call this page directly.' ); |
| 4 |
} |
| 5 |
class FrmFieldShapeStyleComponent extends FrmStyleComponent { |
| 6 |
|
| 7 |
/** |
| 8 |
* The view file name. |
| 9 |
* |
| 10 |
* @since 6.14 |
| 11 |
* |
| 12 |
* @var string |
| 13 |
*/ |
| 14 |
protected $view_name = 'field-shape'; |
| 15 |
|
| 16 |
/** |
| 17 |
* Construct the FrmFieldShapeStyleComponent. |
| 18 |
* |
| 19 |
* @since 6.14 |
| 20 |
*/ |
| 21 |
public function __construct( $field_name, $field_value, $data ) { |
| 22 |
$this->init( $data, $field_name, $field_value ); |
| 23 |
} |
| 24 |
} |
| 25 |
|