plugin install

This commit is contained in:
Tony Volpe
2024-06-18 17:29:05 -04:00
parent e1aaedd1ae
commit 41f50eacc4
5880 changed files with 1057631 additions and 39681 deletions

View File

@@ -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
}
}