add_field_label = esc_html__( 'Add new field', 'aromatic' );
if ( ! empty( $args['add_field_label'] ) ) {
$this->add_field_label = $args['add_field_label'];
}
$this->boxtitle = esc_html__( 'Customizer Repeater', 'aromatic' );
if ( ! empty ( $args['item_name'] ) ) {
$this->boxtitle = $args['item_name'];
} elseif ( ! empty( $this->label ) ) {
$this->boxtitle = $this->label;
}
if ( ! empty( $args['customizer_repeater_image_control'] ) ) {
$this->customizer_repeater_image_control = $args['customizer_repeater_image_control'];
}
if ( ! empty( $args['customizer_repeater_image2_control'] ) ) {
$this->customizer_repeater_image2_control = $args['customizer_repeater_image2_control'];
}
if ( ! empty( $args['customizer_repeater_icon_control'] ) ) {
$this->customizer_repeater_icon_control = $args['customizer_repeater_icon_control'];
}
if ( ! empty( $args['customizer_repeater_color_control'] ) ) {
$this->customizer_repeater_color_control = $args['customizer_repeater_color_control'];
}
if ( ! empty( $args['customizer_repeater_title_control'] ) ) {
$this->customizer_repeater_title_control = $args['customizer_repeater_title_control'];
}
if ( ! empty( $args['customizer_repeater_subtitle_control'] ) ) {
$this->customizer_repeater_subtitle_control = $args['customizer_repeater_subtitle_control'];
}
if ( ! empty( $args['customizer_repeater_subtitle2_control'] ) ) {
$this->customizer_repeater_subtitle2_control = $args['customizer_repeater_subtitle2_control'];
}
if ( ! empty( $args['customizer_repeater_subtitle3_control'] ) ) {
$this->customizer_repeater_subtitle3_control = $args['customizer_repeater_subtitle3_control'];
}
if ( ! empty( $args['customizer_repeater_subtitle4_control'] ) ) {
$this->customizer_repeater_subtitle4_control = $args['customizer_repeater_subtitle4_control'];
}
if ( ! empty( $args['customizer_repeater_subtitle5_control'] ) ) {
$this->customizer_repeater_subtitle5_control = $args['customizer_repeater_subtitle5_control'];
}
if ( ! empty( $args['customizer_repeater_text_control'] ) ) {
$this->customizer_repeater_text_control = $args['customizer_repeater_text_control'];
}
if ( ! empty( $args['customizer_repeater_text2_control'] ) ) {
$this->customizer_repeater_text2_control = $args['customizer_repeater_text2_control'];
}
if ( ! empty( $args['customizer_repeater_button2_control'] ) ) {
$this->customizer_repeater_button2_control = $args['customizer_repeater_button2_control'];
}
if ( ! empty( $args['customizer_repeater_link2_control'] ) ) {
$this->customizer_repeater_link2_control = $args['customizer_repeater_link2_control'];
}
if ( ! empty( $args['customizer_repeater_designation_control'] ) ) {
$this->customizer_repeater_designation_control = $args['customizer_repeater_designation_control'];
}
if ( ! empty( $args['customizer_repeater_button_text_control'] ) ) {
$this->customizer_repeater_button_text_control = $args['customizer_repeater_button_text_control'];
}
if ( ! empty( $args['customizer_repeater_link_control'] ) ) {
$this->customizer_repeater_link_control = $args['customizer_repeater_link_control'];
}
if ( ! empty( $args['customizer_repeater_checkbox_control'] ) ) {
$this->customizer_repeater_checkbox_control = $args['customizer_repeater_checkbox_control'];
}
if ( ! empty( $args['customizer_repeater_video_url_control'] ) ) {
$this->customizer_repeater_video_url_control = $args['customizer_repeater_video_url_control'];
}
if ( ! empty( $args['customizer_repeater_slide_align'] ) ) {
$this->customizer_repeater_slide_align = $args['customizer_repeater_slide_align'];
}
if ( ! empty( $args['customizer_repeater_shortcode_control'] ) ) {
$this->customizer_repeater_shortcode_control = $args['customizer_repeater_shortcode_control'];
}
if ( ! empty( $args['customizer_repeater_repeater_control'] ) ) {
$this->customizer_repeater_repeater_control = $args['customizer_repeater_repeater_control'];
}
if ( ! empty( $id ) ) {
$this->id = $id;
}
if ( file_exists( get_template_directory() . '/inc/customizer/customizer-repeater/inc/icons.php' ) ) {
$this->customizer_icon_container = 'inc/customizer/customizer-repeater/inc/icons';
}
$allowed_array1 = wp_kses_allowed_html( 'post' );
$allowed_array2 = array(
'input' => array(
'type' => array(),
'class' => array(),
'placeholder' => array()
)
);
$this->allowed_html = array_merge( $allowed_array1, $allowed_array2 );
}
/*Enqueue resources for the control*/
public function enqueue() {
wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/assets/css/fonts/font-awesome/css/font-awesome.min.css', array(), 999 );
wp_enqueue_style('aromatic-theme-fonts',get_template_directory_uri().'/assets/css/theme-fonts/fonts.css');
wp_enqueue_style( 'aromatic_customizer-repeater-admin-stylesheet', get_template_directory_uri() . '/inc/customizer/customizer-repeater/css/admin-style.css', array(), 999 );
wp_enqueue_style( 'wp-color-picker' );
wp_enqueue_script( 'aromatic_customizer-repeater-script', get_template_directory_uri() . '/inc/customizer/customizer-repeater/js/customizer_repeater.js', array('jquery', 'jquery-ui-draggable', 'wp-color-picker' ), 999, true );
wp_enqueue_script( 'aromatic_customizer-repeater-fontawesome-iconpicker', get_template_directory_uri() . '/inc/customizer/customizer-repeater/js/fontawesome-iconpicker.js', array( 'jquery' ), 999, true );
wp_enqueue_style( 'aromatic_customizer-repeater-fontawesome-iconpicker-script', get_template_directory_uri() . '/inc/customizer/customizer-repeater/css/fontawesome-iconpicker.min.css', array(), 999 );
}
public function render_content() {
/*Get default options*/
$this_default = json_decode( $this->setting->default );
/*Get values (json format)*/
$values = $this->value();
/*Decode values*/
$json = json_decode( $values );
if ( ! is_array( $json ) ) {
$json = array( $values );
} ?>
label ); ?>
iterate_array( $this_default ); ?>
link() ); ?>
class="customizer-repeater-colector"
value=""/>
iterate_array(); ?>
link() ); ?>
class="customizer-repeater-colector"/>
iterate_array( $json ); ?>
link() ); ?>
class="customizer-repeater-colector" value="value() ); ?>"/>
boxtitle;
global $aromatic_limit;
global $aromatic_type_with_id;
echo sprintf("");
foreach($array as $icon){
if($it<4)
{
$aromatic_limit="aromatic_limit";
$aromatic_type_with_id='';
}
else
{
$aromatic_limit="aromatic_overlimit";
$aromatic_type_with_id=$aromatic_del_btn_id."_".$it;
}
?>
boxtitle ) ?>
id)){
$id = $icon->id;
}
if(!empty($icon->choice)){
$choice = $icon->choice;
}
if(!empty($icon->image_url)){
$image_url = $icon->image_url;
}
if(!empty($icon->image_url2)){
$image_url2 = $icon->image_url2;
}
if(!empty($icon->icon_value)){
$icon_value = $icon->icon_value;
}
if(!empty($icon->color)){
$color = $icon->color;
}
if(!empty($icon->title)){
$title = $icon->title;
}
if(!empty($icon->slide_align)){
$slide_align = $icon->slide_align;
}
if(!empty($icon->designation)){
$designation = $icon->designation;
}
if(!empty($icon->subtitle)){
$subtitle = $icon->subtitle;
}
if(!empty($icon->subtitle2)){
$subtitle2 = $icon->subtitle2;
}
if(!empty($icon->subtitle3)){
$subtitle3 = $icon->subtitle3;
}
if(!empty($icon->subtitle4)){
$subtitle4 = $icon->subtitle4;
}
if(!empty($icon->subtitle5)){
$subtitle5 = $icon->subtitle5;
}
if(!empty($icon->text)){
$text = $icon->text;
}
if(!empty($icon->text2)){
$text2 = $icon->text2;
}
if(!empty($icon->button_second)){
$button_second = $icon->button_second;
}
if(!empty($icon->link2)){
$link2 = $icon->link2;
}
if(!empty($icon->video_url)){
$video_url = $icon->video_url;
}
if(!empty($icon->button)){
$button = $icon->button_text;
}
if(!empty($icon->link)){
$link = $icon->link;
}
if(!empty($icon->shortcode)){
$shortcode = $icon->shortcode;
}
if(!empty($icon->social_repeater)){
$repeater = $icon->social_repeater;
}
if(!empty($icon->open_new_tab)){
$open_new_tab = $icon->open_new_tab;
}
if($this->customizer_repeater_title_control==true){
$this->input_control(array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Title','aromatic' ), $this->id, 'customizer_repeater_title_control' ),
'class' => 'customizer-repeater-title-control '."$aromatic_limit".' '."$aromatic_type_with_id".'',
'type' => apply_filters('aromatic_repeater_input_types_filter', '', $this->id, 'customizer_repeater_title_control' ),
), $title);
}
if($this->customizer_repeater_subtitle_control==true){
$this->input_control(array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Subtitle','aromatic' ), $this->id, 'customizer_repeater_subtitle_control' ),
'class' => 'customizer-repeater-subtitle-control '."$aromatic_limit".' '."$aromatic_type_with_id".'',
'type' => apply_filters('aromatic_repeater_input_types_filter', '', $this->id, 'customizer_repeater_subtitle_control' ),
), $subtitle);
}
if($this->customizer_repeater_subtitle2_control==true){
$this->input_control(array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Subtitle 2','aromatic' ), $this->id, 'customizer_repeater_subtitle2_control' ),
'class' => 'customizer-repeater-subtitle2-control '."$aromatic_limit".' '."$aromatic_type_with_id".'',
'type' => apply_filters('aromatic_repeater_input_types_filter', '', $this->id, 'customizer_repeater_subtitle2_control' ),
), $subtitle2);
}
if($this->customizer_repeater_subtitle3_control==true){
$this->input_control(array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Subtitle 3','aromatic' ), $this->id, 'customizer_repeater_subtitle3_control' ),
'class' => 'customizer-repeater-subtitle3-control '."$aromatic_limit".' '."$aromatic_type_with_id".'',
'type' => apply_filters('aromatic_repeater_input_types_filter', '', $this->id, 'customizer_repeater_subtitle3_control' ),
), $subtitle3);
}
if($this->customizer_repeater_subtitle4_control==true){
$this->input_control(array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Subtitle 4','aromatic' ), $this->id, 'customizer_repeater_subtitle4_control' ),
'class' => 'customizer-repeater-subtitle4-control '."$aromatic_limit".' '."$aromatic_type_with_id".'',
'type' => apply_filters('aromatic_repeater_input_types_filter', '', $this->id, 'customizer_repeater_subtitle4_control' ),
), $subtitle4);
}
if($this->customizer_repeater_subtitle5_control==true){
$this->input_control(array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Subtitle 5','aromatic' ), $this->id, 'customizer_repeater_subtitle5_control' ),
'class' => 'customizer-repeater-subtitle5-control '."$aromatic_limit".' '."$aromatic_type_with_id".'',
'type' => apply_filters('aromatic_repeater_input_types_filter', '', $this->id, 'customizer_repeater_subtitle5_control' ),
), $subtitle5);
}
if($this->customizer_repeater_text_control==true){
$this->input_control(array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Description','aromatic' ), $this->id, 'customizer_repeater_text_control' ),
'class' => 'customizer-repeater-text-control '."$aromatic_limit".' '."$aromatic_type_with_id".'',
'type' => apply_filters('aromatic_repeater_input_types_filter', 'textarea', $this->id, 'customizer_repeater_text_control' ),
), $text);
}
if($this->customizer_repeater_text2_control==true){
$this->input_control(array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Button Label','aromatic' ), $this->id, 'customizer_repeater_text2_control' ),
'class' => 'customizer-repeater-text2-control '."$aromatic_limit".'',
'type' => apply_filters('aromatic_repeater_input_types_filter', '', $this->id, 'customizer_repeater_text2_control' ),
), $text2);
}
if($this->customizer_repeater_button2_control==true){
$this->input_control(array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Button Label second','aromatic' ), $this->id, 'customizer_repeater_button2_control' ),
'class' => 'customizer-repeater-button2-control',
'type' => apply_filters('aromatic_repeater_input_types_filter', '', $this->id, 'customizer_repeater_button2_control' ),
), $button_second);
}
if($this->customizer_repeater_link2_control){
$this->input_control(array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'link','aromatic' ), $this->id, 'customizer_repeater_link2_control' ),
'class' => 'customizer-repeater-link2-control '."$aromatic_limit".' '."$aromatic_type_with_id".'',
//'sanitize_callback' => 'esc_url_raw',
'type' => apply_filters('aromatic_repeater_input_types_filter', '', $this->id, 'customizer_repeater_link2_control' ),
), $link2);
}
if($this->customizer_repeater_button_text_control){
$this->input_control(array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__('Button Text',
'aromatic'), $this->id, 'customizer_repeater_button_text_control'),
'class' => 'customizer-repeater-button-text-control '."$aromatic_limit".'',
'type' => apply_filters('aromatic_repeater_input_types_filter', '' , $this->id,
'customizer_repeater_button_text_control'),
), $button);
}
if($this->customizer_repeater_link_control){
$this->input_control(array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Link','aromatic' ), $this->id, 'customizer_repeater_link_control' ),
'class' => 'customizer-repeater-link-control '."$aromatic_limit".' '."$aromatic_type_with_id".'',
'sanitize_callback' => 'esc_url_raw',
'type' => apply_filters('aromatic_repeater_input_types_filter', '', $this->id, 'customizer_repeater_link_control' ),
), $link);
}
if($this->customizer_repeater_checkbox_control == true){
$this->testimonila_check($open_new_tab);
}
if($this->customizer_repeater_video_url_control){
$this->input_control(array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__('Video Url',
'aromatic'), $this->id, 'customizer_repeater_video_url_control'),
'class' => 'customizer-repeater-video-url-control',
'type' => apply_filters('aromatic_customizer_repeater_video_url_control', 'textarea', $this->id, 'customizer_repeater_video_url_control' ),
), $video_url);
}
if($this->customizer_repeater_slide_align == true){
$this->slide_align($slide_align);
}
if($this->customizer_repeater_image_control == true && $this->customizer_repeater_icon_control == true) {
$this->icon_type_choice( $choice,$aromatic_limit );
}
if($this->customizer_repeater_image_control == true){
$this->image_control($image_url, $choice, $aromatic_limit, $it+1, $aromatic_del_btn_id);
}
if($this->customizer_repeater_image2_control == true){
$this->image_control2($image_url2, $choice, $aromatic_limit, $it+1, $aromatic_del_btn_id);
}
if($this->customizer_repeater_icon_control == true){
$this->icon_picker_control($icon_value, $choice);
}
if($this->customizer_repeater_color_control == true){
$this->input_control(array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Color','aromatic' ), $this->id, 'customizer_repeater_color_control' ),
'class' => 'customizer-repeater-color-control',
'type' => apply_filters('aromatic_repeater_input_types_filter', 'color', $this->id, 'customizer_repeater_color_control' ),
'sanitize_callback' => 'sanitize_hex_color'
), $color);
}
if($this->customizer_repeater_shortcode_control==true){
$this->input_control(array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Shortcode','aromatic' ), $this->id, 'customizer_repeater_shortcode_control' ),
'class' => 'customizer-repeater-shortcode-control',
'type' => apply_filters('aromatic_repeater_input_types_filter', '', $this->id, 'customizer_repeater_shortcode_control' ),
), $shortcode);
}
if($this->customizer_repeater_designation_control==true){
$this->input_control(array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Designation','aromatic' ), $this->id, 'customizer_repeater_designation_control' ),
'class' => 'customizer-repeater-designation-control',
'type' => apply_filters('aromatic_repeater_input_types_filter', 'textarea', $this->id, 'customizer_repeater_designation_control' ),
), $designation);
}
if($this->customizer_repeater_repeater_control==true){
$this->repeater_control($repeater, $aromatic_limit, $aromatic_type_with_id);
} ?>
boxtitle ) ?>
customizer_repeater_image_control == true && $this->customizer_repeater_icon_control == true ) {
$this->icon_type_choice();
}
if ( $this->customizer_repeater_image_control == true ) {
$this->image_control();
}
if ( $this->customizer_repeater_image2_control == true ) {
$this->image_control2();
}
if ( $this->customizer_repeater_icon_control == true ) {
$this->icon_picker_control();
}
if($this->customizer_repeater_color_control==true){
$this->input_control(array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Color','aromatic' ), $this->id, 'customizer_repeater_color_control' ),
'class' => 'customizer-repeater-color-control',
'type' => apply_filters('aromatic_repeater_input_types_filter', 'color', $this->id, 'customizer_repeater_color_control' ),
'sanitize_callback' => 'sanitize_hex_color'
) );
}
if ( $this->customizer_repeater_title_control == true ) {
$this->input_control( array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Title','aromatic' ), $this->id, 'customizer_repeater_title_control' ),
'class' => 'customizer-repeater-title-control',
'type' => apply_filters('aromatic_repeater_input_types_filter', '', $this->id, 'customizer_repeater_title_control' ),
) );
}
if ( $this->customizer_repeater_subtitle_control == true ) {
$this->input_control( array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Subtitle','aromatic' ), $this->id, 'customizer_repeater_subtitle_control' ),
'class' => 'customizer-repeater-subtitle-control',
'type' => apply_filters('aromatic_repeater_input_types_filter', '', $this->id, 'customizer_repeater_subtitle_control' ),
) );
}
if ( $this->customizer_repeater_subtitle2_control == true ) {
$this->input_control( array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Subtitle 2','aromatic' ), $this->id, 'customizer_repeater_subtitle2_control' ),
'class' => 'customizer-repeater-subtitle2-control',
'type' => apply_filters('aromatic_repeater_input_types_filter', '', $this->id, 'customizer_repeater_subtitle2_control' ),
) );
}
if ( $this->customizer_repeater_subtitle3_control == true ) {
$this->input_control( array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Subtitle 3','aromatic' ), $this->id, 'customizer_repeater_subtitle3_control' ),
'class' => 'customizer-repeater-subtitle3-control',
'type' => apply_filters('aromatic_repeater_input_types_filter', '', $this->id, 'customizer_repeater_subtitle3_control' ),
) );
}
if ( $this->customizer_repeater_subtitle4_control == true ) {
$this->input_control( array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Subtitle 4','aromatic' ), $this->id, 'customizer_repeater_subtitle4_control' ),
'class' => 'customizer-repeater-subtitle4-control',
'type' => apply_filters('aromatic_repeater_input_types_filter', '', $this->id, 'customizer_repeater_subtitle4_control' ),
) );
}
if ( $this->customizer_repeater_subtitle5_control == true ) {
$this->input_control( array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Subtitle 5','aromatic' ), $this->id, 'customizer_repeater_subtitle5_control' ),
'class' => 'customizer-repeater-subtitle5-control',
'type' => apply_filters('aromatic_repeater_input_types_filter', '', $this->id, 'customizer_repeater_subtitle5_control' ),
) );
}
if ( $this->customizer_repeater_text_control == true ) {
$this->input_control( array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Description','aromatic' ), $this->id, 'customizer_repeater_text_control' ),
'class' => 'customizer-repeater-text-control',
'type' => apply_filters('aromatic_repeater_input_types_filter', 'textarea', $this->id, 'customizer_repeater_text_control' ),
) );
}
if ( $this->customizer_repeater_text2_control == true ) {
$this->input_control( array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Button Label','aromatic' ), $this->id, 'customizer_repeater_text2_control' ),
'class' => 'customizer-repeater-text2-control',
'type' => apply_filters('aromatic_repeater_input_types_filter', '', $this->id, 'customizer_repeater_text2_control' ),
) );
}
if ( $this->customizer_repeater_button2_control == true ) {
$this->input_control( array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Button Label Second','aromatic' ), $this->id, 'customizer_repeater_button2_control' ),
'class' => 'customizer-repeater-button2-control',
'type' => apply_filters('aromatic_repeater_input_types_filter', '', $this->id, 'customizer_repeater_button2_control' ),
) );
}
if ( $this->customizer_repeater_link2_control == true ) {
$this->input_control( array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'link','aromatic' ), $this->id, 'customizer_repeater_link2_control' ),
'class' => 'customizer-repeater-link2-control',
'type' => apply_filters('aromatic_repeater_input_types_filter', '', $this->id, 'customizer_repeater_link2_control' ),
) );
}
if($this->customizer_repeater_button_text_control){
$this->input_control(array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__('Button Text',
'aromatic'), $this->id, 'customizer_repeater_button_text_control'),
'class' => 'customizer-repeater-button-text-control',
'type' => apply_filters('aromatic_repeater_input_types_filter', '' , $this->id,
'customizer_repeater_button_text_control'),
));
}
if ( $this->customizer_repeater_link_control == true ) {
$this->input_control( array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Link','aromatic' ), $this->id, 'customizer_repeater_link_control' ),
'class' => 'customizer-repeater-link-control',
'type' => apply_filters('aromatic_repeater_input_types_filter', '', $this->id, 'customizer_repeater_link_control' ),
) );
}
if($this->customizer_repeater_checkbox_control == true){
$this->testimonila_check();
}
if($this->customizer_repeater_video_url_control){
$this->input_control(array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__('Video Url',
'aromatic'), $this->id, 'customizer_repeater_video_url_control'),
'class' => 'customizer-repeater-video-url-control',
'type' => apply_filters('aromatic_customizer_repeater_video_url_control', 'textarea', $this->id, 'customizer_repeater_video_url_control' ),
));
}
if($this->customizer_repeater_slide_align == true){
$this->slide_align($slide_align);
}
if ( $this->customizer_repeater_shortcode_control == true ) {
$this->input_control( array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Shortcode','aromatic' ), $this->id, 'customizer_repeater_shortcode_control' ),
'class' => 'customizer-repeater-shortcode-control',
'type' => apply_filters('aromatic_repeater_input_types_filter', '', $this->id, 'customizer_repeater_shortcode_control' ),
) );
}
if ( $this->customizer_repeater_designation_control == true ) {
$this->input_control( array(
'label' => apply_filters('aromatic_repeater_input_labels_filter', esc_html__( 'Designation','aromatic' ), $this->id, 'customizer_repeater_designation_control' ),
'class' => 'customizer-repeater-designation-control',
'type' => apply_filters('aromatic_repeater_input_types_filter', 'textarea', $this->id, 'customizer_repeater_designation_control' ),
) );
}
if($this->customizer_repeater_repeater_control==true){
$this->repeater_control();
} ?>
>
class="customizer-repeater-checkbox ">
>
%s', esc_html__( 'http://fontawesome.io/icons/', 'aromatic' ) )
); ?>
customizer_icon_container ); ?>
>
" value="">
" value="" />
" value="">
" value="" />