@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | } |
| 9 | 9 | |
| 10 | 10 | public function widget( $args, $instance ) { |
| 11 | - $title = apply_filters( 'widget_title', empty( $instance['title'] ) ? '' : $instance['title'], $instance, $this->id_base ); |
|
| 11 | + $title = apply_filters( 'widget_title', empty( $instance['title'] ) ? '' : $instance['title'], $instance, $this->id_base ); |
|
| 12 | 12 | |
| 13 | 13 | echo $args['before_widget']; |
| 14 | 14 | |
@@ -34,9 +34,9 @@ discard block |
||
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | public function form( $instance ) { |
| 37 | - //Defaults |
|
| 37 | + //Defaults |
|
| 38 | 38 | $instance = wp_parse_args( (array) $instance, array( |
| 39 | - 'title' => false, 'form' => false, 'description' => false, |
|
| 39 | + 'title' => false, 'form' => false, 'description' => false, |
|
| 40 | 40 | ) ); |
| 41 | 41 | ?> |
| 42 | 42 | <p><label for="<?php echo esc_attr( $this->get_field_id('title') ); ?>"><?php _e( 'Title', 'formidable' ) ?>:</label><br/> |
@@ -44,10 +44,10 @@ discard block |
||
| 44 | 44 | |
| 45 | 45 | <p><label for="<?php echo esc_attr( $this->get_field_id('form') ); ?>"><?php _e( 'Form', 'formidable' ) ?>:</label><br/> |
| 46 | 46 | <?php |
| 47 | - FrmFormsHelper::forms_dropdown( $this->get_field_name('form'), $instance['form'], array( |
|
| 48 | - 'blank' => false, 'field_id' => $this->get_field_id('form'), |
|
| 49 | - 'class' => 'widefat', |
|
| 50 | - ) ); |
|
| 47 | + FrmFormsHelper::forms_dropdown( $this->get_field_name('form'), $instance['form'], array( |
|
| 48 | + 'blank' => false, 'field_id' => $this->get_field_id('form'), |
|
| 49 | + 'class' => 'widefat', |
|
| 50 | + ) ); |
|
| 51 | 51 | ?> |
| 52 | 52 | </p> |
| 53 | 53 | |
@@ -4,7 +4,7 @@ discard block |
||
| 4 | 4 | |
| 5 | 5 | public function __construct() { |
| 6 | 6 | $widget_ops = array( 'description' => __( 'Display a Formidable Form', 'formidable' ) ); |
| 7 | - parent::__construct('frm_show_form', __( 'Formidable Form', 'formidable' ), $widget_ops); |
|
| 7 | + parent::__construct( 'frm_show_form', __( 'Formidable Form', 'formidable' ), $widget_ops ); |
|
| 8 | 8 | } |
| 9 | 9 | |
| 10 | 10 | public function widget( $args, $instance ) { |
@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | |
| 15 | 15 | echo '<div class="frm_form_widget">'; |
| 16 | 16 | if ( $title ) { |
| 17 | - echo $args['before_title'] . stripslashes($title) . $args['after_title']; |
|
| 17 | + echo $args['before_title'] . stripslashes( $title ) . $args['after_title']; |
|
| 18 | 18 | } |
| 19 | 19 | |
| 20 | 20 | $form_atts = array( |
@@ -39,19 +39,19 @@ discard block |
||
| 39 | 39 | 'title' => false, 'form' => false, 'description' => false, |
| 40 | 40 | ) ); |
| 41 | 41 | ?> |
| 42 | - <p><label for="<?php echo esc_attr( $this->get_field_id('title') ); ?>"><?php _e( 'Title', 'formidable' ) ?>:</label><br/> |
|
| 43 | - <input type="text" class="widefat" id="<?php echo esc_attr( $this->get_field_id('title') ); ?>" name="<?php echo esc_attr( $this->get_field_name('title') ); ?>" value="<?php echo esc_attr( stripslashes($instance['title']) ); ?>" /></p> |
|
| 42 | + <p><label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php _e( 'Title', 'formidable' ) ?>:</label><br/> |
|
| 43 | + <input type="text" class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" value="<?php echo esc_attr( stripslashes( $instance['title'] ) ); ?>" /></p> |
|
| 44 | 44 | |
| 45 | - <p><label for="<?php echo esc_attr( $this->get_field_id('form') ); ?>"><?php _e( 'Form', 'formidable' ) ?>:</label><br/> |
|
| 45 | + <p><label for="<?php echo esc_attr( $this->get_field_id( 'form' ) ); ?>"><?php _e( 'Form', 'formidable' ) ?>:</label><br/> |
|
| 46 | 46 | <?php |
| 47 | - FrmFormsHelper::forms_dropdown( $this->get_field_name('form'), $instance['form'], array( |
|
| 48 | - 'blank' => false, 'field_id' => $this->get_field_id('form'), |
|
| 47 | + FrmFormsHelper::forms_dropdown( $this->get_field_name( 'form' ), $instance['form'], array( |
|
| 48 | + 'blank' => false, 'field_id' => $this->get_field_id( 'form' ), |
|
| 49 | 49 | 'class' => 'widefat', |
| 50 | 50 | ) ); |
| 51 | 51 | ?> |
| 52 | 52 | </p> |
| 53 | 53 | |
| 54 | - <p><label for="<?php echo esc_attr( $this->get_field_id('description') ); ?>"><input class="checkbox" type="checkbox" <?php checked($instance['description'], true) ?> id="<?php echo esc_attr( $this->get_field_id('description') ); ?>" name="<?php echo esc_attr( $this->get_field_name('description') ); ?>" value="1" /> |
|
| 54 | + <p><label for="<?php echo esc_attr( $this->get_field_id( 'description' ) ); ?>"><input class="checkbox" type="checkbox" <?php checked( $instance['description'], true ) ?> id="<?php echo esc_attr( $this->get_field_id( 'description' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'description' ) ); ?>" value="1" /> |
|
| 55 | 55 | <?php _e( 'Show Description', 'formidable' ) ?></label></p> |
| 56 | 56 | <?php |
| 57 | 57 | } |