Remove all plugins / install base theme

This commit is contained in:
Tony Volpe
2024-06-18 16:14:48 -04:00
parent ecc33d62f0
commit 95cb30b884
7455 changed files with 0 additions and 1722920 deletions

View File

@@ -1,30 +0,0 @@
<?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
}
}