';
echo FrmAppHelper::kses( $args['after_widget'], 'all' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
/**
* @param array $new_instance New settings for this instance as input by the user via
* WP_Widget::form().
* @param array $old_instance Old settings for this instance.
* @return array Settings to save or bool false to cancel saving.
*/
public function update( $new_instance, $old_instance ) {
return $new_instance;
}
/**
* Outputs the settings update form.
*
* @param array $instance Current settings.
* @return string Default return is 'noform'.
*/
public function form( $instance ) {
$defaults = array(
'title' => false,
'form' => false,
'description' => false,
);
$instance = wp_parse_args( (array) $instance, $defaults );
?>