plugin install
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
namespace Gravity_Forms\Gravity_Forms\Editor_Button\Dom;
|
||||
|
||||
/**
|
||||
* Handle outputting the Embed Button in the UI.
|
||||
*
|
||||
* @since 2.6
|
||||
*
|
||||
* @package Gravity_Forms\Gravity_Forms\Embed_Form\Dom
|
||||
*/
|
||||
class GF_Editor_Button {
|
||||
|
||||
/**
|
||||
* Output the HTML for the Embed Button.
|
||||
*/
|
||||
public function output_button() {
|
||||
?>
|
||||
<button
|
||||
data-js="editor-flyout-trigger"
|
||||
class="gform-button gform-button--icon-white gform-button--icon-editor"
|
||||
aria-label="<?php esc_attr_e( 'Open editor preferences', 'gravityforms' ); ?>"
|
||||
title="<?php esc_attr_e( 'Open editor preferences', 'gravityforms' ); ?>"
|
||||
>
|
||||
<i class="gform-icon gform-icon--cog gform-button__icon" aria-hidden="true"></i>
|
||||
</button>
|
||||
<?php
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user