WPForms_Uncanny_Automator::builder_output()
Wrap the builder content with the required markup.
Contents
Description Description
This one is here because we don’t need the "Add New Connection" button for this provider.
Source Source
File: src/core/admin/class-wpforms-provider.php
public function builder_output() { ?> <div class="wpforms-panel-content-section wpforms-panel-content-section-<?php echo esc_attr( $this->slug ); ?>" id="<?php echo esc_attr( $this->slug ); ?>-provider"> <?php $this->builder_output_before(); ?> <div class="wpforms-panel-content-section-title"> <?php echo $this->name; ?> </div> <div class="wpforms-provider-connections-wrap wpforms-clear"> <div class="wpforms-provider-connections"> <?php $this->builder_content(); ?> </div> </div> <?php $this->builder_output_after(); ?> </div> <?php }
Expand full source code Collapse full source code View on Github
Changelog Changelog
Version | Description |
---|---|
1.7.0 | Introduced. |