?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/bricolagevincennes.fr/wp-content/plugins/caldera-forms/fields/section-break/



?? Go up: /home/webdevt/www/bricolagevincennes.fr/wp-content/plugins/caldera-forms/fields

?? Viewing: section-break.php

<?php
if( ! empty( $field['config']['width' ] ) ){
    $width = $field['config']['width' ];
}else{
    $width = 100;
}

$width = absint( $width );
if( 0 <= $width ){
    $width = 100;
}

$width .= '%';

$custom_class = '';
if( ! empty( $field[ 'config'][ 'custom_class'] ) ){
	$custom_class = $field[ 'config'][ 'custom_class'];
}

printf( '<hr id="%s" class="%s" style="width: %s" />',
    esc_attr( $field_id ),
    esc_attr( $custom_class ),
    $width
);


??

??