File "class-evf-field-repeater.php"
Full Path: /home/rattkxnv/byattorney.com/wp-content/plugins/everest-forms/includes/fields/class-evf-field-repeater.php
File size: 717 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Repeater field
*
* @package EverestForms\Fields
* @since 1.0.0
*/
defined( 'ABSPATH' ) || exit;
/**
* EVF_Field_Repeater Class.
*/
class EVF_Field_Repeater extends EVF_Form_Fields {
/**
* Constructor.
*/
public function __construct() {
$this->name = esc_html__( 'Repeater Fields', 'everest-forms' );
$this->type = 'repeater-fields';
$this->icon = 'evf-icon evf-icon-repeater';
$this->order = 190;
$this->group = 'advanced';
$this->is_pro = true;
$this->plan = 'personal agency themegrill-agency';
$this->addon = ' everest-forms-repeater-fields';
$this->links = array(
'image_id' => '',
'vedio_id' => 'IBfI1wBxUVY',
);
parent::__construct();
}
}