id = $id; if ( ! empty( $args['button_class'] ) ) { $this->button_class = $args['button_class']; } if ( ! empty( $args['icon_class'] ) ) { $this->icon_class = $args['icon_class']; } if ( ! empty( $args['button_text'] ) ) { $this->button_text = $args['button_text']; } } /** * Render content for the control. * * @since Hestia 1.1.42 */ public function render_content() { if ( ! empty( $this->button_text ) ) { echo ''; } } }