PATH:
home
/
letacommog
/
camarsac
/
wp-content
/
plugins
/
jet-engine
/
templates
/
forms
/
fields
<?php /** * Calculated field template */ $calc_data = $this->get_calculated_data( $args ); if ( empty( $calc_data['formula'] ) ){ return; } $name = $this->get_field_name( $args['name'] ); $default_value = ! empty( $args['default'] ) ? $args['default'] : ''; $prefix = ! empty( $args['calc_prefix'] ) ? $args['calc_prefix'] : false; $suffix = ! empty( $args['calc_suffix'] ) ? $args['calc_suffix'] : false; $precision = isset( $args['precision'] ) ? $args['precision'] : 0; $is_hidden = isset( $args['calc_hidden'] ) ? filter_var( $args['calc_hidden'], FILTER_VALIDATE_BOOLEAN ) : false; $this->add_attribute( 'data-formula', $calc_data['formula'] ); $this->add_attribute( 'data-name', $args['name'] ); $this->add_attribute( 'data-listen_to', htmlspecialchars( json_encode( $calc_data['listen_fields'] ) ) ); $this->add_attribute( 'data-precision', $precision ); if ( ! empty( $this->current_repeater ) ) { $class_name = 'jet-form__calculated-field--child'; } else { $class_name = 'jet-form__calculated-field'; } if ( $is_hidden ) { $class_name .= ' jet-form__calculated-field--hidden'; } ?> <div class="<?php echo $class_name; ?>"<?php $this->render_attributes_string(); ?>> <?php if ( false !== $prefix && ! $is_hidden ) { ?> <div class="jet-form__calculated-field-prefix"> <?php echo $prefix; ?> </div> <?php } ?> <input type="hidden" name="<?php echo $name; ?>" value="<?php echo $default_value; ?>" class="jet-form__calculated-field-input jet-form__field" data-field-name="<?php echo $args['name']; ?>"> <?php if ( ! $is_hidden ) { ?> <div class="jet-form__calculated-field-val"></div> <?php } ?> <?php if ( false !== $suffix && ! $is_hidden ) { ?> <div class="jet-form__calculated-field-suffix"> <?php echo $suffix; ?> </div> <?php } ?> </div>
[+]
..
[-] hidden.php
[edit]
[-] submit.php
[edit]
[-] radio.php
[edit]
[-] wysiwyg.php
[edit]
[-] date.php
[edit]
[-] calculated.php
[edit]
[-] page-break.php
[edit]
[-] time.php
[edit]
[-] heading.php
[edit]
[-] text.php
[edit]
[-] select.php
[edit]
[-] group-break.php
[edit]
[-] media.php
[edit]
[-] datetime-local.php
[edit]
[-] checkboxes.php
[edit]
[-] range.php
[edit]
[-] textarea.php
[edit]
[-] number.php
[edit]