PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.28
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.28
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / classes / views / styles / components / templates / direction.php

direction.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.28, at classes/views/styles/components/templates/direction.php

18 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php if ( ! defined( 'ABSPATH' ) ) {
2 die( 'You are not allowed to call this page directly.' );
3 }
4 ?>
5 <span class="<?php echo esc_attr( $component_class ); ?> frm-direction-component frm-radio-component">
6 <div class="frm-radio-container frm-flex-box frm-flex-justify">
7 <input id="frm-direction-left-<?php echo esc_attr( $field_name ); ?>" <?php checked( $field_value, 'ltr' ); ?> type="radio" <?php echo esc_attr( $field_name ); ?> value="ltr" />
8 <label class="frm-flex-center" for="frm-direction-left-<?php echo esc_attr( $field_name ); ?>" tabindex="0">
9 <?php FrmAppHelper::icon_by_class( 'frmfont frm-direction-right' ); ?>
10 </label>
11
12 <input id="frm-direction-right-<?php echo esc_attr( $field_name ); ?>" <?php checked( $field_value, 'rtl' ); ?> type="radio" <?php echo esc_attr( $field_name ); ?> value="rtl" />
13 <label class="frm-flex-center" for="frm-direction-right-<?php echo esc_attr( $field_name ); ?>" tabindex="0">
14 <?php FrmAppHelper::icon_by_class( 'frmfont frm-direction-left' ); ?>
15 </label>
16 <span class="frm-radio-active-tracker"></span>
17 </div>
18 </span>