HEX
Server: Apache
System: Linux p102.lithium.hosting 4.18.0-553.141.1.el8_10.x86_64 #1 SMP Fri Jul 10 17:48:02 UTC 2026 x86_64
User: bvzmoamr (9955)
PHP: 8.1.34
Disabled: syslog
Upload Files
File: /var/www/html/wp-content/plugins/gravityforms/includes/editor-button/dom/class-gf-editor-button.php
<?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
	}

}